function Node::setSticky

Same name and namespace in other branches
  1. 9 core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::setSticky()
  2. 8.9.x core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::setSticky()
  3. 10 core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::setSticky()

Overrides NodeInterface::setSticky

File

core/modules/node/src/Entity/Node.php, line 255

Class

Node
Defines the node entity class.

Namespace

Drupal\node\Entity

Code

public function setSticky($sticky) {
    $this->set('sticky', $sticky ? NodeInterface::STICKY : NodeInterface::NOT_STICKY);
    return $this;
}

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