You are here

class DemoteNode in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/Action/DemoteNode.php \Drupal\node\Plugin\Action\DemoteNode
  2. 9 core/modules/node/src/Plugin/Action/DemoteNode.php \Drupal\node\Plugin\Action\DemoteNode

Demotes a node.

Plugin annotation


@Action(
  id = "node_unpromote_action",
  label = @Translation("Demote selected content from front page"),
  type = "node"
)

Hierarchy

Expanded class hierarchy of DemoteNode

File

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

Namespace

Drupal\node\Plugin\Action
View source
class DemoteNode extends FieldUpdateActionBase {

  /**
   * {@inheritdoc}
   */
  protected function getFieldsToUpdate() {
    return [
      'promote' => NodeInterface::NOT_PROMOTED,
    ];
  }

}

Members