function node_node_operations
7.x node.admin.inc | node_node_operations() |
6.x node.admin.inc | node_node_operations() |
Implementation of hook_node_operations().
File
- drupal-6.x/
modules/ node/ node.admin.inc, line 86 - Content administration and module settings UI.
Code
function node_node_operations() {
$operations = array(
'publish' => array(
'label' => t('Publish'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => 1)),
),
'unpublish' => array(
'label' => t('Unpublish'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => 0)),
),
'promote' => array(
'label' => t('Promote to front page'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => 1, 'promote' => 1)),
),
'demote' => array(
'label' => t('Demote from front page'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('promote' => 0)),
),
'sticky' => array(
'label' => t('Make sticky'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => 1, 'sticky' => 1)),
),
'unsticky' => array(
'label' => t('Remove stickiness'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('sticky' => 0)),
),
'delete' => array(
'label' => t('Delete'),
'callback' => NULL,
),
);
return $operations;
}