class Action in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
- 8 core/modules/system/src/Entity/Action.php \Drupal\system\Entity\Action
- 8 core/modules/action/src/Plugin/migrate/source/Action.php \Drupal\action\Plugin\migrate\source\Action
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
- 10 core/lib/Drupal/Core/Annotation/Action.php \Drupal\Core\Annotation\Action
Defines an Action annotation object.
Plugin Namespace: Plugin\Action
For a working example, see \Drupal\node\Plugin\Action\UnpublishNode
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\Core\Annotation\Action
Expanded class hierarchy of Action
See also
\Drupal\Core\Action\ActionInterface
\Drupal\Core\Action\ActionManager
\Drupal\Core\Action\ActionBase
Related topics
11 string references to 'Action'
- ActionAdminManageForm::buildForm in core/
modules/ action/ src/ Form/ ActionAdminManageForm.php - Form constructor.
- BulkForm::defineOptions in core/
modules/ views/ src/ Plugin/ views/ field/ BulkForm.php - Information about options for all kinds of purposes will be held here.
- BulkFormTest::testBulkForm in core/
modules/ views/ tests/ src/ Functional/ BulkFormTest.php - Tests the bulk form.
- CommentAdminOverview::buildForm in core/
modules/ comment/ src/ Form/ CommentAdminOverview.php - Form constructor for the comment overview administration form.
- MediaOverviewTest::testAdministrationPage in core/
modules/ media_library/ tests/ src/ FunctionalJavascript/ MediaOverviewTest.php - Tests that the Media Library's administration page works as expected.
31 classes are annotated with Action
- ActionAjaxTest in core/
modules/ action/ tests/ action_form_ajax_test/ src/ Plugin/ Action/ ActionAjaxTest.php - Plugin used for testing AJAX in action config entity forms.
- AddRoleUser in core/
modules/ user/ src/ Plugin/ Action/ AddRoleUser.php - Adds a role to a user.
- AssignOwnerNode in core/
modules/ node/ src/ Plugin/ Action/ AssignOwnerNode.php - Assigns ownership of a node to a user.
- BatchUserAction in core/
modules/ views/ tests/ modules/ user_batch_action_test/ src/ Plugin/ Action/ BatchUserAction.php - Provides action that sets batch precessing.
- BlockUser in core/
modules/ user/ src/ Plugin/ Action/ BlockUser.php - Blocks a user.
File
- core/
lib/ Drupal/ Core/ Annotation/ Action.php, line 21
Namespace
Drupal\Core\AnnotationView source
class Action extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the action plugin.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* The route name for a confirmation form for this action.
*
* @todo Provide a more generic way to allow an action to be confirmed first.
*
* @var string (optional)
*/
public $confirm_form_route_name = '';
/**
* The entity type the action can apply to.
*
* @todo Replace with \Drupal\Core\Plugin\Context\Context.
*
* @var string
*/
public $type = '';
/**
* The category under which the action should be listed in the UI.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $category;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Action:: |
public | property | The category under which the action should be listed in the UI. | |
Action:: |
public | property | The route name for a confirmation form for this action. | |
Action:: |
public | property | The plugin ID. | |
Action:: |
public | property | The human-readable name of the action plugin. | |
Action:: |
public | property | The entity type the action can apply to. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |