UnpublishComment.php

Contains \Drupal\comment\Plugin\Action\UnpublishComment.

Namespace

Drupal\comment\Plugin\Action

File

drupal/core/modules/comment/lib/Drupal/comment/Plugin/Action/UnpublishComment.php
View source
<?php

/**
 * @file
 * Contains \Drupal\comment\Plugin\Action\UnpublishComment.
 */
namespace Drupal\comment\Plugin\Action;

use Drupal\Core\Annotation\Action;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Action\ActionBase;

/**
 * Unpublishes a comment.
 *
 * @Action(
 *   id = "comment_unpublish_action",
 *   label = @Translation("Unpublish comment"),
 *   type = "comment"
 * )
 */
class UnpublishComment extends ActionBase {

  /**
   * {@inheritdoc}
   */
  public function execute($comment = NULL) {
    $comment->status->value = COMMENT_NOT_PUBLISHED;
    $comment
      ->save();
  }

}

Classes

Namesort descending Description
UnpublishComment Unpublishes a comment.