class Action
Same name in this branch
- main core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- main core/modules/system/src/Plugin/migrate/source/Action.php \Drupal\system\Plugin\migrate\source\Action
- main core/lib/Drupal/Core/Action/Attribute/Action.php \Drupal\Core\Action\Attribute\Action
Same name and namespace in other branches
- 11.x core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- 11.x core/modules/system/src/Plugin/migrate/source/Action.php \Drupal\system\Plugin\migrate\source\Action
- 11.x core/lib/Drupal/Core/Action/Attribute/Action.php \Drupal\Core\Action\Attribute\Action
- 11.x core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
- 10 core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- 10 core/modules/system/src/Plugin/migrate/source/Action.php \Drupal\system\Plugin\migrate\source\Action
- 10 core/lib/Drupal/Core/Action/Attribute/Action.php \Drupal\Core\Action\Attribute\Action
- 10 core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
- 9 core/modules/action/src/Plugin/migrate/source/Action.php \Drupal\action\Plugin\migrate\source\Action
- 9 core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- 9 core/modules/system/src/Plugin/migrate/source/Action.php \Drupal\system\Plugin\migrate\source\Action
- 9 core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
- 8.9.x core/modules/action/src/Plugin/migrate/source/Action.php \Drupal\action\Plugin\migrate\source\Action
- 8.9.x core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- 8.9.x core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
Defines an Action annotation object.
Plugin Namespace: Plugin\Action
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements \Drupal\Component\Annotation\AnnotationInterface
- class \Drupal\Core\Annotation\Action extends \Drupal\Component\Annotation\Plugin
Expanded class hierarchy of Action
See also
\Drupal\Core\Action\ActionInterface
\Drupal\Core\Action\ActionManager
\Drupal\Core\Action\ActionBase
\Drupal\Core\Action\Plugin\Action\UnpublishAction
Related topics
26 string references to 'Action'
- BulkForm::defineOptions in core/
modules/ views/ src/ Plugin/ views/ field/ BulkForm.php - Information about options for all kinds of purposes will be held here.
- BulkForm::viewsFormValidate in core/
modules/ views/ src/ Plugin/ views/ field/ BulkForm.php - BulkForm::__construct in core/
modules/ views/ src/ Plugin/ views/ field/ BulkForm.php - Constructs a new BulkForm object.
- BulkFormTest::testBulkForm in core/
modules/ views/ tests/ src/ Functional/ BulkFormTest.php - Tests the bulk form.
- BulkFormTest::testConfirmRouteWithParameters in core/
modules/ views/ tests/ src/ Functional/ BulkFormTest.php - Tests that route parameters are passed to the confirmation form route.
File
-
core/
lib/ Drupal/ Core/ Annotation/ Action.php, line 20
Namespace
Drupal\Core\AnnotationView source
class Action extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the action plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The route name for a confirmation form for this action.
*
* This property is optional and it does not need to be declared.
*
* @var string
*
* @todo Provide a more generic way to allow an action to be confirmed first.
*/
public $confirm_form_route_name = '';
/**
* The entity type the action can apply to.
*
* @var string
*
* @todo Replace with \Drupal\Core\Plugin\Context\Context.
*/
public $type = '';
/**
* The category under which the action should be listed in the UI.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $category;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.