Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / src / ActionConfigEntityInterface.php
1 <?php
2
3 namespace Drupal\system;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6
7 /**
8  * Provides an interface defining a action entity.
9  */
10 interface ActionConfigEntityInterface extends ConfigEntityInterface {
11
12   /**
13    * Returns whether or not this action is configurable.
14    *
15    * @return bool
16    */
17   public function isConfigurable();
18
19   /**
20    * Returns the operation type.
21    *
22    * @return string
23    */
24   public function getType();
25
26   /**
27    * Returns the operation plugin.
28    *
29    * @return \Drupal\Core\Action\ActionInterface
30    */
31   public function getPlugin();
32
33 }