You are here

function vsccnewskin_theme in Views Slideshow Configurable Controls 7

Implements hook_theme().

File

vsccnewskin/vsccnewskin.module, line 32
Example of a module implementing a new skin for VSCC.

Code

function vsccnewskin_theme($existing, $type, $theme, $path) {
  return array(
    'vscc_element_sand_icons' => array(
      'variables' => array(
        'element' => NULL,
        'vss_id' => NULL,
        'view' => NULL,
        'settings' => array(),
        'location' => NULL,
        'rows' => array(),
      ),
    ),
  );
}