You are here

CourierContextInterface.php in Courier 8

Same filename and directory in other branches
  1. 2.x src/CourierContextInterface.php

Namespace

Drupal\courier

File

src/CourierContextInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\courier\CourierContextInterface.
 */
namespace Drupal\courier;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface defining a courier_context entity.
 */
interface CourierContextInterface extends ConfigEntityInterface {

  /**
   * Get token names.
   *
   * @return array
   *   An array of tokens names.
   */
  public function getTokens();

}

Interfaces

Namesort descending Description
CourierContextInterface Provides an interface defining a courier_context entity.