You are here

function theme_node_filter_form in Drupal 5

Same name and namespace in other branches
  1. 4 modules/node.module \theme_node_filter_form()
  2. 6 modules/node/node.admin.inc \theme_node_filter_form()

Theme node administration filter form.

File

modules/node/node.module, line 1509
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 theme_node_filter_form($form) {
  $output .= '<div id="node-admin-filter">';
  $output .= drupal_render($form['filters']);
  $output .= '</div>';
  $output .= drupal_render($form);
  return $output;
}