1 node.actions.inc | node_make_sticky_action(Node $node, &$context) |
Sets the sticky-at-top-of-list property of a node to 1.
Parameters
Node $node: A node entity.
$context: Contextual information about the triggered action.
Related topics
File
- core/
modules/ node/ node.actions.inc, line 47 - Action callbacks for Node module.
Code
function node_make_sticky_action(Node $node, &$context) {
$node->sticky = NODE_STICKY;
$node->save();
}