You are here

function comment_user_cancel in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/comment/comment.module \comment_user_cancel()

Implements hook_user_cancel().

File

core/modules/comment/comment.module, line 515
Enables users to comment on published content.

Code

function comment_user_cancel($edit, $account, $method) {
  switch ($method) {
    case 'user_cancel_block_unpublish':
      $comments = entity_load_multiple_by_properties('comment', array(
        'uid' => $account
          ->id(),
      ));
      foreach ($comments as $comment) {
        $comment
          ->setPublished(CommentInterface::NOT_PUBLISHED);
        $comment
          ->save();
      }
      break;
    case 'user_cancel_reassign':

      /** @var \Drupal\comment\CommentInterface[] $comments */
      $comments = entity_load_multiple_by_properties('comment', array(
        'uid' => $account
          ->id(),
      ));
      foreach ($comments as $comment) {
        $comment
          ->setOwnerId(0);
        $comment
          ->setAuthorName(\Drupal::config('user.settings')
          ->get('anonymous'));
        $comment
          ->save();
      }
      break;
  }
}