You are here

function theme_ad_filter_form in Advertisement 5.2

Same name and namespace in other branches
  1. 5 ad.module \theme_ad_filter_form()
  2. 6.3 ad.admin.inc \theme_ad_filter_form()
  3. 6 ad.admin.inc \theme_ad_filter_form()
  4. 6.2 ad.admin.inc \theme_ad_filter_form()
  5. 7 ad.admin.inc \theme_ad_filter_form()

Theme ad administration filter form.

File

./ad.module, line 1755
An advertising system for Drupal powered websites.

Code

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