| Versionen | |
|---|---|
| drupal6 – drupal7 | node_admin_nodes_validate($form, &$form_state) |
Validate node_admin_nodes form submissions.
Check if any nodes have been selected to perform the chosen 'Update option' on.
modules/
<?php
function node_admin_nodes_validate($form, &$form_state) {
$nodes = array_filter($form_state['values']['nodes']);
if (count($nodes) == 0) {
form_set_error('', t('No items selected.'));
}
}
?>
Kommentare
Kommentar hinzufügen