interface ActionConfigEntityInterface
Same name and namespace in other branches
- 11.x core/modules/system/src/ActionConfigEntityInterface.php \Drupal\system\ActionConfigEntityInterface
- 10 core/modules/system/src/ActionConfigEntityInterface.php \Drupal\system\ActionConfigEntityInterface
- 8.9.x core/modules/system/src/ActionConfigEntityInterface.php \Drupal\system\ActionConfigEntityInterface
Provides an interface defining an action entity.
Hierarchy
- interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterface; interface \Drupal\Core\Entity\EntityInterface extends \Drupal\Core\Access\AccessibleInterface, \Drupal\Core\Cache\CacheableDependencyInterface, \Drupal\Core\Cache\RefinableCacheableDependencyInterface; interface \Drupal\Core\Entity\SynchronizableInterface extends \Drupal\Core\Entity\EntityInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityInterface extends \Drupal\Core\Entity\EntityInterface, \Drupal\Core\Config\Entity\ThirdPartySettingsInterface, \Drupal\Core\Entity\SynchronizableInterface
- interface \Drupal\system\ActionConfigEntityInterface extends \Drupal\Core\Config\Entity\ConfigEntityInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityInterface extends \Drupal\Core\Entity\EntityInterface, \Drupal\Core\Config\Entity\ThirdPartySettingsInterface, \Drupal\Core\Entity\SynchronizableInterface
Expanded class hierarchy of ActionConfigEntityInterface
All classes that implement ActionConfigEntityInterface
3 files declare their use of ActionConfigEntityInterface
- Action.php in core/
modules/ system/ src/ Entity/ Action.php - action.post_update.php in core/
modules/ action/ action.post_update.php - Post update functions for Action module.
- views.views.inc in core/
modules/ views/ views.views.inc - Provide views data that isn't tied to any other module.
File
-
core/
modules/ system/ src/ ActionConfigEntityInterface.php, line 10
Namespace
Drupal\systemView source
interface ActionConfigEntityInterface extends ConfigEntityInterface {
/**
* Returns whether or not this action is configurable.
*
* @return bool
*/
public function isConfigurable();
/**
* Returns the operation type.
*
* @return string
*/
public function getType();
/**
* Returns the operation plugin.
*
* @return \Drupal\Core\Action\ActionInterface
*/
public function getPlugin();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.