1 node.actions.inc node_unpromote_action(Node $node, &$context)

Sets the promote property of a node to 0.

Parameters

Node $node: A node entity.

$context: Contextual information about the triggered action.

Related topics

File

core/modules/node/node.actions.inc, line 92
Action callbacks for Node module.

Code

function node_unpromote_action(Node $node, &$context) {
  $node->promote = NODE_NOT_PROMOTED;
  $node->save();
}