node_unpublish_by_keyword_action
Definition
node_unpublish_by_keyword_action($node, $context)
modules/node/node.module, line 2738
Description
Implementation of a configurable Drupal action. Unpublish a node if it contains a certain string.
Parameters
$context An array providing more information about the context of the call to this action.
$comment A node object.
Code
<?php
function node_unpublish_by_keyword_action($node, $context) {
foreach ($context['keywords'] as $keyword) {
if (strstr(node_view(drupal_clone($node)), $keyword) || strstr($node->title, $keyword)) {
$node->status = 0;
watchdog('action', 'Set @type %title to unpublished.', array('@type' => node_get_types('name', $node), '%title' => $node->title));
break;
}
}
}
?> 