function current_search_theme in Facet API 6.3
Same name and namespace in other branches
- 7.2 contrib/current_search/current_search.module \current_search_theme()
- 7 contrib/current_search/current_search.module \current_search_theme()
Implements hook_theme().
File
- contrib/
current_search/ current_search.module, line 75 - Provides an interface for creating blocks containing information about the current search.
Code
function current_search_theme() {
module_load_include('php', 'ctools', 'plugins/export_ui/ctools_export_ui.class');
return array(
'current_search_group_title' => array(
'arguments' => array(
'title' => NULL,
),
'file' => 'current_search.theme.inc',
),
'current_search_text' => array(
'arguments' => array(
'text' => NULL,
'wrapper' => NULL,
'element' => NULL,
'css' => NULL,
'class' => NULL,
),
'file' => 'current_search.theme.inc',
),
'current_search_link_active' => array(
'arguments' => array(
'text' => NULL,
'path' => NULL,
'options' => array(),
),
'file' => 'current_search.theme.inc',
),
'current_search_keys' => array(
'arguments' => array(
'keys' => NULL,
'adapter' => NULL,
),
'file' => 'current_search.theme.inc',
),
'current_search_deactivate_widget' => array(
'file' => 'current_search.theme.inc',
),
'current_search_item_wrapper' => array(
'render element' => 'element',
'file' => 'current_search.theme.inc',
),
'current_search_group_wrapper' => array(
'render element' => 'element',
'file' => 'current_search.theme.inc',
),
'current_search_sort_settings_table' => array(
'render element' => 'element',
'file' => 'plugins/export_ui/current_search_export_ui.class.php',
),
);
}