You are here

public function UnstickyNode::execute in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/Plugin/Action/UnstickyNode.php \Drupal\node\Plugin\Action\UnstickyNode::execute()

Executes the plugin.

Overrides ExecutableInterface::execute

File

core/modules/node/src/Plugin/Action/UnstickyNode.php, line 27
Contains \Drupal\node\Plugin\Action\UnstickyNode.

Class

UnstickyNode
Makes a node not sticky.

Namespace

Drupal\node\Plugin\Action

Code

public function execute($entity = NULL) {
  $entity->sticky = NODE_NOT_STICKY;
  $entity
    ->save();
}