/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/MailTemplate
NameSizeModeActions
Layout/-0755rm
Transformation/-0755rm
FolderThemeCatalog.php44930644editdlrm
FolderThemeScanner.php64580644editdlrm
MailTemplateGenerator.php54640644editdlrm
MailTemplateInterface.php19120644editdlrm
MailTemplateRendererInterface.php23690644editdlrm
MailThemeConfiguration.php29990644editdlrm
Theme.php21400644editdlrm
ThemeCatalogInterface.php19920644editdlrm
ThemeCollection.php18840644editdlrm
ThemeCollectionInterface.php18600644editdlrm
ThemeInterface.php16000644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/MailTemplate/ThemeInterface.php (1600B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\MailTemplate; use PrestaShop\PrestaShop\Core\MailTemplate\Layout\LayoutCollectionInterface; /** * Interface MailThemeInterface is used to define mail templates * themes. It is very simple for now (only a name) but it could evolve in * the future (include a config, a parent theme, ...) */ interface ThemeInterface { /** * @return string */ public function getName(); /** * @return LayoutCollectionInterface */ public function getLayouts(); }