You are here

public function Action::isConfigurable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action::isConfigurable()
  2. 10 core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action::isConfigurable()

Returns whether or not this action is configurable.

Return value

bool

Overrides ActionConfigEntityInterface::isConfigurable

File

core/modules/system/src/Entity/Action.php, line 135

Class

Action
Defines the configured action entity.

Namespace

Drupal\system\Entity

Code

public function isConfigurable() {
  return PluginHelper::isConfigurable($this
    ->getPlugin());
}