class UnstickyNode

Same name and namespace in other branches
  1. 11.x core/modules/node/src/Plugin/Action/UnstickyNode.php \Drupal\node\Plugin\Action\UnstickyNode
  2. 10 core/modules/node/src/Plugin/Action/UnstickyNode.php \Drupal\node\Plugin\Action\UnstickyNode
  3. 8.9.x core/modules/node/src/Plugin/Action/UnstickyNode.php \Drupal\node\Plugin\Action\UnstickyNode

Makes a node not sticky.

Plugin annotation


@Action(
  id = "node_make_unsticky_action",
  label = @Translation("Make selected content not sticky"),
  type = "node"
)

Hierarchy

Expanded class hierarchy of UnstickyNode

File

core/modules/node/src/Plugin/Action/UnstickyNode.php, line 17

Namespace

Drupal\node\Plugin\Action
View source
class UnstickyNode extends FieldUpdateActionBase {
  
  /**
   * {@inheritdoc}
   */
  protected function getFieldsToUpdate() {
    return [
      'sticky' => NodeInterface::NOT_STICKY,
    ];
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.