UnstickyNode.php

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/Action/UnstickyNode.php
  2. 10 core/modules/node/src/Plugin/Action/UnstickyNode.php
  3. 11.x core/modules/node/src/Plugin/Action/UnstickyNode.php

Namespace

Drupal\node\Plugin\Action

File

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

View source
<?php

namespace Drupal\node\Plugin\Action;

use Drupal\Core\Field\FieldUpdateActionBase;
use Drupal\node\NodeInterface;

/**
 * Makes a node not sticky.
 *
 * @Action(
 *   id = "node_make_unsticky_action",
 *   label = @Translation("Make selected content not sticky"),
 *   type = "node"
 * )
 */
class UnstickyNode extends FieldUpdateActionBase {
    
    /**
     * {@inheritdoc}
     */
    protected function getFieldsToUpdate() {
        return [
            'sticky' => NodeInterface::NOT_STICKY,
        ];
    }

}

Classes

Title Deprecated Summary
UnstickyNode Makes a node not sticky.

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