function UnpublishByKeywordNode::access

File

core/modules/action/src/Plugin/Action/UnpublishByKeywordNode.php, line 73

Class

UnpublishByKeywordNode
Unpublishes a node containing certain keywords.

Namespace

Drupal\action\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.