You are here

interface LogTemplateInterface in Commerce Core 8.2

Hierarchy

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\LogTemplate
View 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

Namesort descending Modifiers Type Description Overrides
LogTemplateInterface::getCategory public function Gets the template category. 1
LogTemplateInterface::getId public function Gets the template ID. 1
LogTemplateInterface::getLabel public function Gets the translated label. 1
LogTemplateInterface::getTemplate public function Gets the template. 1