You are here

function theme_event_filter_control in Event 5.2

Same name and namespace in other branches
  1. 5 event.theme \theme_event_filter_control()

Format the event filter control dropdown

Parameters

form: The form containing the taxonomy controls

2 theme calls to theme_event_filter_control()
_event_get_taxonomy_control in ./event.module
Returns a dropdown event taxonomy term input control.
_event_get_type_control in ./event.module
Returns a dropdown event-enabled content type input control.

File

./event.theme, line 410

Code

function theme_event_filter_control($form) {
  return '<div class="event-filter-control">' . $form . '</div>';
}