NoType.php

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php
  2. 10 core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php
  3. 11.x core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php

Namespace

Drupal\action_test\Plugin\Action

File

core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php

View source
<?php

namespace Drupal\action_test\Plugin\Action;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;

/**
 * Provides an operation with no type specified.
 *
 * @Action(
 *   id = "action_test_no_type",
 *   label = @Translation("An operation with no type specified")
 * )
 */
class NoType extends ActionBase {
    
    /**
     * {@inheritdoc}
     */
    public function execute($entity = NULL) {
    }
    
    /**
     * {@inheritdoc}
     */
    public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
        $result = AccessResult::allowed();
        return $return_as_object ? $result : $result->isAllowed();
    }

}

Classes

Title Deprecated Summary
NoType Provides an operation with no type specified.

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