function UnpublishByKeywordNode::access

Same name in other branches
  1. 8.9.x core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::access()
  2. 11.x core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::access()
  3. 10 core/modules/action/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\action\Plugin\Action\UnpublishByKeywordNode::access()

Overrides ActionInterface::access

File

core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php, line 70

Class

UnpublishByKeywordNode
Unpublishes a node containing certain keywords.

Namespace

Drupal\node\Plugin\Action

Code

public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
    
    /** @var \Drupal\node\NodeInterface $object */
    $access = $object->access('update', $account, TRUE)
        ->andIf($object->status
        ->access('edit', $account, TRUE));
    return $return_as_object ? $access : $access->isAllowed();
}

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