Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

DemoteNode.php

Namespace

Drupal\node\Plugin\Action

File

core/modules/node/src/Plugin/Action/DemoteNode.php

View source
<?php

namespace Drupal\node\Plugin\Action;

use Drupal\Core\Action\Attribute\Action;
use Drupal\Core\Field\FieldUpdateActionBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\node\NodeInterface;

/**
 * Demotes a node.
 */
class DemoteNode extends FieldUpdateActionBase {
    
    /**
     * {@inheritdoc}
     */
    protected function getFieldsToUpdate() {
        return [
            'promote' => NodeInterface::NOT_PROMOTED,
        ];
    }

}

Classes

Title Deprecated Summary
DemoteNode Demotes a node.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal