You are here

class UnstickyNode in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/Action/UnstickyNode.php \Drupal\node\Plugin\Action\UnstickyNode
  2. 9 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,
    ];
  }

}

Members