You are here

UnstickyNode.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/Action/UnstickyNode.php

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

Namesort descending Description
UnstickyNode Makes a node not sticky.