domain_content_admin()
domain_content/domain_content.module, line 174
Content admin page callback.
A themed HTML batch content editing form.
function domain_content_admin() {
$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('domain_content_form');
return $output;
}