| 5 node.module | node_admin_content() |
| 6 node.admin.inc | node_admin_content($form_state) |
| 7 node.admin.inc | node_admin_content($form, $form_state) |
| 8 node.admin.inc | node_admin_content($form, $form_state) |
Menu callback: content administration.
1 string reference to 'node_admin_content'
File
- modules/
node/ node.module, line 1609 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
function node_admin_content() {
$output = drupal_get_form('node_filter_form');
if ($_POST['operation'] == 'delete' && $_POST['nodes']) {
return drupal_get_form('node_multiple_delete_confirm');
}
// Call the form first, to allow for the form_values array to be populated.
$output .= drupal_get_form('node_admin_nodes');
return $output;
}
Login or register to post comments