UnstickyNode.php
Same filename in other branches
Namespace
Drupal\node\Plugin\ActionFile
-
core/
modules/ node/ src/ Plugin/ Action/ UnstickyNode.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;
/**
* Makes a node not sticky.
*/
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.