Same name and namespace in other branches
  1. 4.7.x modules/node.module \theme_node_filter_form()
  2. 5.x modules/node/node.module \theme_node_filter_form()

Theme node administration filter form.

Related topics

File

modules/node/node.admin.inc, line 262
Content administration and module settings UI.

Code

function theme_node_filter_form($form) {
  $output = '';
  $output .= '<div id="node-admin-filter">';
  $output .= drupal_render($form['filters']);
  $output .= '</div>';
  $output .= drupal_render($form);
  return $output;
}