function vscc_theme in Views Slideshow Configurable Controls 7
Implements hook_theme().
File
- ./
vscc.module, line 11 - Views Slideshow Configurable Controls hook implementations.
Code
function vscc_theme($existing, $type, $theme, $path) {
return array(
'vscc_controls' => array(
'variables' => array(
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'rows' => array(),
),
'template' => 'theme/vscc_controls',
),
'vscc_control' => array(
'variables' => array(
'skin' => NULL,
'element' => NULL,
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'rows' => array(),
),
'file' => 'vscc.theme.inc',
'path' => drupal_get_path('module', 'vscc') . '/theme',
),
'vscc_element_text' => array(
'variables' => array(
'element' => NULL,
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'rows' => array(),
),
'file' => 'vscc.theme.inc',
'path' => drupal_get_path('module', 'vscc') . '/theme',
),
'vscc_element_white_icons' => array(
'variables' => array(
'element' => NULL,
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'rows' => array(),
),
'file' => 'vscc.theme.inc',
'path' => drupal_get_path('module', 'vscc') . '/theme',
),
'vscc_element_black_icons' => array(
'variables' => array(
'element' => NULL,
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'rows' => array(),
),
'file' => 'vscc.theme.inc',
'path' => drupal_get_path('module', 'vscc') . '/theme',
),
);
}