You are here

SaveComment.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/comment/src/Plugin/Action/SaveComment.php

File

core/modules/comment/src/Plugin/Action/SaveComment.php
View source
<?php

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

use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;

/**
 * Saves a comment.
 *
 * @Action(
 *   id = "comment_save_action",
 *   label = @Translation("Save comment"),
 *   type = "comment"
 * )
 */
class SaveComment extends ActionBase {

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

  /**
   * {@inheritdoc}
   */
  public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {

    /** @var \Drupal\comment\CommentInterface $object */
    return $object
      ->access('update', $account, $return_as_object);
  }

}

Classes

Namesort descending Description
SaveComment Saves a comment.