public function Action::isConfigurable

Returns whether or not this action is configurable.

Return value

bool

Overrides ActionConfigEntityInterface::isConfigurable

File

drupal/core/modules/system/lib/Drupal/system/Plugin/Core/Entity/Action.php, line 127
Contains \Drupal\system\Plugin\Core\Entity\Action.

Class

Action
Defines the configured action entity.

Namespace

Drupal\system\Plugin\Core\Entity

Code

public function isConfigurable() {
  return $this
    ->getPlugin() instanceof ConfigurableActionInterface;
}