/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Mail/Template/ConfigInterface.php
63 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\Mail\Template; /** * High-level interface for mail templates data that hides format from the client code * * @api * @since 100.0.2 */ interface ConfigInterface { /** * Retrieve unique identifiers of all available email templates * * @return string[] */ public function getAvailableTemplates(); /** * Retrieve translated label of an email template * * @param string $templateId * @return string */ public function getTemplateLabel($templateId); /** * Retrieve type of an email template * * @param string $templateId * @return string */ public function getTemplateType($templateId); /** * Retrieve fully-qualified name of a module an email template belongs to * * @param string $templateId * @return string */ public function getTemplateModule($templateId); /** * Retrieve the area an email template belongs to * * @param string $templateId * @return string */ public function getTemplateArea($templateId); /** * Retrieve full path to an email template file * * @param string $templateId * @param array|null $designParams * @return string */ public function getTemplateFilename($templateId, $designParams = []); }