CourierContextInterface.php in Courier 2.x
Same filename and directory in other branches
Namespace
Drupal\courierFile
src/CourierContextInterface.phpView source
<?php
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
Name | Description |
---|---|
CourierContextInterface | Provides an interface defining a courier_context entity. |