You are here

function joyride_theme in Joyride JQuery for Drupal Site Tours 7

Implements hook_theme(). Register a module (or theme's) theme implementations.

See also

http://api.drupalize.me/api/drupal/function/hook_theme/7

File

./joyride.module, line 140

Code

function joyride_theme($existing, $type, $theme, $path) {
  return array(
    'joyride_tips' => array(
      'variables' => array(
        'tips_content' => NULL,
      ),
      'template' => 'templates/joyride-tips',
    ),
    'joyride_help' => array(
      'variables' => array(),
      'template' => 'templates/joyride-help',
    ),
    'joyride_demo' => array(
      'variables' => array(),
      'template' => 'templates/joyride-demo',
    ),
    'joyride_start_link' => array(
      'variables' => array(
        'link_title' => NULL,
        'options' => array(),
      ),
      'template' => 'templates/joyride-start-link',
      'file' => 'inc/joyride.theme.inc',
    ),
  );
}