Version 1
[yaffs-website] / web / core / modules / comment / src / Plugin / Action / SaveComment.php
diff --git a/web/core/modules/comment/src/Plugin/Action/SaveComment.php b/web/core/modules/comment/src/Plugin/Action/SaveComment.php
new file mode 100644 (file)
index 0000000..fdab65d
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+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);
+  }
+
+}