class TestAction

Same name and namespace in other branches
  1. 10 core/modules/views/tests/modules/action_bulk_test/src/Plugin/Action/TestAction.php \Drupal\action_bulk_test\Plugin\Action\TestAction

Test action.

Hierarchy

Expanded class hierarchy of TestAction

File

core/modules/views/tests/modules/action_bulk_test/src/Plugin/Action/TestAction.php, line 15

Namespace

Drupal\action_bulk_test\Plugin\Action
View source
class TestAction extends ActionBase {
    
    /**
     * {@inheritdoc}
     */
    public function access($object, ?AccountInterface $account = NULL, $return_as_object = FALSE) : bool|AccessResultInterface {
        return $return_as_object ? AccessResult::allowed() : TRUE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function execute() : void {
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ActionBase::executeMultiple public function Executes the plugin for an array of objects. Overrides ActionInterface::executeMultiple 3
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 6
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
TestAction::access public function Checks object access. Overrides ActionInterface::access
TestAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.