| Current Path : /home/rtorresani/www/vendor/magento/module-newsletter/Setup/Patch/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-newsletter/Setup/Patch/Data/FlagLegacyTemplates.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Newsletter\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('newsletter_template'), ['is_legacy' => '1']);
}
/**
* @inheritDoc
*/
public static function getDependencies()
{
return [];
}
/**
* @inheritDoc
*/
public function getAliases()
{
return [];
}
}