domain_content_admin

Definition

domain_content_admin()
domain_content/domain_content.module, line 174

Description

Content admin page callback.

Return value

A themed HTML batch content editing form.

Code

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;
}