function views_ui_theme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views_ui/views_ui.module \views_ui_theme()
Implements hook_theme().
File
- core/
modules/ views_ui/ views_ui.module, line 63 - Provide structure for the administrative interface to Views.
Code
function views_ui_theme() {
return array(
// edit a view
'views_ui_display_tab_setting' => array(
'variables' => array(
'description' => '',
'link' => '',
'settings_links' => array(),
'overridden' => FALSE,
'defaulted' => FALSE,
'description_separator' => TRUE,
'class' => array(),
),
'file' => 'views_ui.theme.inc',
),
'views_ui_display_tab_bucket' => array(
'render element' => 'element',
'file' => 'views_ui.theme.inc',
),
'views_ui_rearrange_filter_form' => array(
'render element' => 'form',
'file' => 'views_ui.theme.inc',
),
'views_ui_expose_filter_form' => array(
'render element' => 'form',
'file' => 'views_ui.theme.inc',
),
// list views
'views_ui_view_info' => array(
'variables' => array(
'view' => NULL,
'displays' => NULL,
),
'file' => 'views_ui.theme.inc',
),
// Group of filters.
'views_ui_build_group_filter_form' => array(
'render element' => 'form',
'file' => 'views_ui.theme.inc',
),
// On behalf of a plugin
'views_ui_style_plugin_table' => array(
'render element' => 'form',
'file' => 'views_ui.theme.inc',
),
// When previewing a view.
'views_ui_view_preview_section' => array(
'variables' => array(
'view' => NULL,
'section' => NULL,
'content' => NULL,
'links' => '',
),
'file' => 'views_ui.theme.inc',
),
// Generic container wrapper, to use instead of theme_container when an id
// is not desired.
'views_ui_container' => array(
'variables' => array(
'children' => NULL,
'attributes' => array(),
),
'file' => 'views_ui.theme.inc',
),
);
}