function views_ui_theme
Same name in other branches
- 7.x-3.x views_ui.module \views_ui_theme()
File
-
./
views_ui.module, line 182
Code
function views_ui_theme() {
$path = drupal_get_path('module', 'views');
require_once "./{$path}/includes/admin.inc";
return array(
// edit a view
'views_ui_edit_view' => array(
'arguments' => array(
'view' => NULL,
),
'template' => 'views-ui-edit-view',
'path' => "{$path}/theme",
),
'views_ui_edit_tab' => array(
'arguments' => array(
'view' => NULL,
'display' => NULL,
),
'template' => 'views-ui-edit-tab',
'path' => "{$path}/theme",
),
'views_ui_edit_item' => array(
'arguments' => array(
'type' => NULL,
'view' => NULL,
'display' => NULL,
'no_fields' => FALSE,
),
'template' => 'views-ui-edit-item',
'path' => "{$path}/theme",
),
'views_ui_rearrange_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/admin.inc',
),
'views_ui_rearrange_filter_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/admin.inc',
),
// list views
'views_ui_list_views' => array(
'template' => 'views-ui-list-views',
'path' => "{$path}/theme",
),
'views_ui_list_views_form' => array(
'file' => 'includes/admin.inc',
'arguments' => array(
'form' => NULL,
),
),
// tab themes
'views_tabset' => array(
'arguments' => array(
'tabs' => NULL,
),
'file' => 'includes/tabs.inc',
),
'views_tab' => array(
'arguments' => array(
'body' => NULL,
),
'file' => 'includes/tabs.inc',
),
'views_ui_reorder_displays_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/admin.inc',
),
// On behalf of a plugin
'views_ui_style_plugin_table' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/admin.inc',
),
);
}