| Versions | |
|---|---|
| 4.7 | node_admin_nodes_submit($form_id, |
| 5 | node_admin_nodes_submit( |
| 6 – 7 | node_admin_nodes_submit($form, &$form_state) |
Generate the content administration overview.
modules/
<?php
function node_admin_nodes_submit($form_id, $edit) {
$operations = node_operations();
if ($operations[$edit['operation']][1]) {
// Flag changes
$operation = $operations[$edit['operation']][1];
foreach ($edit['nodes'] as $nid => $value) {
if ($value) {
db_query($operation, $nid);
}
}
cache_clear_all();
drupal_set_message(t('The update has been performed.'));
}
}
?>