Mercurial > hg > isophonics-drupal-site
comparison core/modules/system/src/ActionConfigEntityInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
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 } |