Sets the promote property of a node to 1.
Drupal\node\Node $node: A node entity.
$context: (optional) Array of additional information about what triggered the action. Not used for this action.
function node_promote_action(Node $node, $context = array()) {
$node->promote = NODE_PROMOTED;
watchdog('action', 'Promoted @type %title to front page.', array(
'@type' => node_get_type_label($node),
'%title' => $node
->label(),
));
}