function _ds_theme_ui in Display Suite 6.2
Same name and namespace in other branches
- 6.3 includes/ds.registry.inc \_ds_theme_ui()
- 6 includes/ds.registry.inc \_ds_theme_ui()
Return theme functions for ds ui.
1 call to _ds_theme_ui()
- ds_ui_theme in ./
ds_ui.module - Implementation of hook_theme().
File
- includes/
ds.registry.inc, line 478 - Registry functions.
Code
function _ds_theme_ui() {
$path = drupal_get_path('module', 'ds');
$theme_functions = array(
// Display overview form.
'ds_display_overview_form' => array(
'template' => 'ds-display-overview-form',
'file' => 'theme_ui.inc',
'path' => $path . '/theme',
'arguments' => array(
'form' => NULL,
),
),
// Display overview form for views
'ds_display_overview_views_form' => array(
'template' => 'ds-display-overview-views-form',
'file' => 'theme_ui.inc',
'path' => $path . '/theme',
'arguments' => array(
'form' => NULL,
),
),
// Build modes matrix.
'ds_buildmodes_matrix_form' => array(
'file' => 'theme_ui.inc',
'path' => $path . '/theme',
'arguments' => array(
'form' => NULL,
),
),
// Plugins form.
'ds_plugins' => array(
'file' => 'theme_ui.inc',
'path' => $path . '/theme',
'arguments' => array(
'form' => NULL,
),
),
);
return $theme_functions;
}