Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/Rewards/Model/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/app/code/Amasty/Rewards/Model/TemplateSetup.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Model;

use Amasty\Base\Model\Serializer;
use Magento\Email\Model\ResourceModel\Template;
use Magento\Email\Model\TemplateFactory;

class TemplateSetup
{
    /**
     * @var Template
     */
    private $templateResource;

    /**
     * @var TemplateFactory
     */
    private $templateFactory;

    /**
     * @var Serializer
     */
    private $serializer;

    public function __construct(
        Template $templateResource,
        TemplateFactory $templateFactory,
        Serializer $serializer
    ) {
        $this->templateResource = $templateResource;
        $this->templateFactory = $templateFactory;
        $this->serializer = $serializer;
    }

    /**
     * @param string $templateCode
     * @param string $templateLabel
     *
     * @return \Magento\Email\Model\Template
     */
    public function createTemplate($templateCode, $templateLabel)
    {
        /** @var \Magento\Email\Model\Template $template */
        $template = $this->templateFactory->create();

        $template->setForcedArea($templateCode);
        $template->loadDefault($templateCode);
        $template->setData('orig_template_code', $templateCode);
        $template->setData(
            'template_variables',
            $this->serializer->serialize($template->getVariablesOptionArray(true))
        );
        $template->setData('template_code', $templateLabel);
        $template->setTemplateType(\Magento\Email\Model\Template::TYPE_HTML);
        $template->setId(null);

        if (!$this->templateResource->checkCodeUsage($template)) {
            $this->templateResource->save($template);
        }

        return $template;
    }
}