function UnpublishByKeywordComment::access

Same name and namespace in other branches
  1. 10 core/modules/action/src/Plugin/Action/UnpublishByKeywordComment.php \Drupal\action\Plugin\Action\UnpublishByKeywordComment::access()
  2. 8.9.x core/modules/comment/src/Plugin/Action/UnpublishByKeywordComment.php \Drupal\comment\Plugin\Action\UnpublishByKeywordComment::access()

File

core/modules/comment/src/Plugin/Action/UnpublishByKeywordComment.php, line 120

Class

UnpublishByKeywordComment
Unpublishes a comment containing certain keywords.

Namespace

Drupal\comment\Plugin\Action

Code

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

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