interface LogTemplateInterface in Commerce Core 8.2
Hierarchy
- interface \Drupal\commerce_log\Plugin\LogTemplate\LogTemplateInterface
Expanded class hierarchy of LogTemplateInterface
All classes that implement LogTemplateInterface
File
- modules/
log/ src/ Plugin/ LogTemplate/ LogTemplateInterface.php, line 5
Namespace
Drupal\commerce_log\Plugin\LogTemplateView source
interface LogTemplateInterface {
/**
* Gets the template ID.
*
* @return string
* The template ID.
*/
public function getId();
/**
* Gets the translated label.
*
* @return string
* The translated label.
*/
public function getLabel();
/**
* Gets the template category.
*
* @return string
* The template category.
*/
public function getCategory();
/**
* Gets the template.
*
* @return string
* The template
*/
public function getTemplate();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LogTemplateInterface:: |
public | function | Gets the template category. | 1 |
LogTemplateInterface:: |
public | function | Gets the template ID. | 1 |
LogTemplateInterface:: |
public | function | Gets the translated label. | 1 |
LogTemplateInterface:: |
public | function | Gets the template. | 1 |