You are here

function joyride_context_registry in Joyride JQuery for Drupal Site Tours 7

Implements hook_context_registry(). Registry hook for conditions & reactions.

See also

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

File

./joyride.module, line 93

Code

function joyride_context_registry() {
  return array(
    'reactions' => array(
      'joyride_add' => array(
        'title' => t('Joyride Tour'),
        'description' => t('Add Joyride code to the page.'),
        'plugin' => 'joyride_context_reaction_add',
      ),
    ),
  );
}