Version 1
[yaffs-website] / web / core / modules / node / src / Plugin / Action / StickyNode.php
diff --git a/web/core/modules/node/src/Plugin/Action/StickyNode.php b/web/core/modules/node/src/Plugin/Action/StickyNode.php
new file mode 100644 (file)
index 0000000..7aff92b
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+
+namespace Drupal\node\Plugin\Action;
+
+use Drupal\Core\Action\ActionBase;
+use Drupal\Core\Session\AccountInterface;
+
+/**
+ * Makes a node sticky.
+ *
+ * @Action(
+ *   id = "node_make_sticky_action",
+ *   label = @Translation("Make selected content sticky"),
+ *   type = "node"
+ * )
+ */
+class StickyNode extends ActionBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function execute($entity = NULL) {
+    $entity->setSticky(TRUE)->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->sticky->access('edit', $account, TRUE));
+    return $return_as_object ? $access : $access->isAllowed();
+  }
+
+}