UnstickyNode.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\node\Plugin\ActionFile
core/modules/node/src/Plugin/Action/UnstickyNode.phpView 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
Name | Description |
---|---|
UnstickyNode | Makes a node not sticky. |