Version 1
[yaffs-website] / web / core / modules / node / src / Plugin / Action / PromoteNode.php
diff --git a/web/core/modules/node/src/Plugin/Action/PromoteNode.php b/web/core/modules/node/src/Plugin/Action/PromoteNode.php
new file mode 100644 (file)
index 0000000..097c341
--- /dev/null
@@ -0,0 +1,37 @@
+<?php
+
+namespace Drupal\node\Plugin\Action;
+
+use Drupal\Core\Action\ActionBase;
+use Drupal\Core\Session\AccountInterface;
+
+/**
+ * Promotes a node.
+ *
+ * @Action(
+ *   id = "node_promote_action",
+ *   label = @Translation("Promote selected content to front page"),
+ *   type = "node"
+ * )
+ */
+class PromoteNode extends ActionBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function execute($entity = NULL) {
+    $entity->setPromoted(TRUE);
+    $entity->save();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
+    /** @var \Drupal\node\NodeInterface $object */
+    $access = $object->access('update', $account, TRUE)
+      ->andif($object->promote->access('edit', $account, TRUE));
+    return $return_as_object ? $access : $access->isAllowed();
+  }
+
+}