Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-email/Setup/Patch/Data/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-email/Setup/Patch/Data/FlagLegacyTemplates.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\Email\Setup\Patch\Data;

use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\Patch\DataPatchInterface;

/**
 * Flag all existing email templates overrides as legacy
 */
class FlagLegacyTemplates implements DataPatchInterface
{
    /**
     * @var ModuleDataSetupInterface
     */
    private $moduleDataSetup;

    /**
     * @param ModuleDataSetupInterface $moduleDataSetup
     */
    public function __construct(ModuleDataSetupInterface $moduleDataSetup)
    {
        $this->moduleDataSetup = $moduleDataSetup;
    }

    /**
     * @inheritDoc
     */
    public function apply()
    {
        $this->moduleDataSetup
            ->getConnection()
            ->update($this->moduleDataSetup->getTable('email_template'), ['is_legacy' => '1']);
    }

    /**
     * @inheritDoc
     */
    public static function getDependencies()
    {
        return [];
    }

    /**
     * @inheritDoc
     */
    public function getAliases()
    {
        return [];
    }
}