You are here

function olark_context_registry in Olark Chat 6

Same name and namespace in other branches
  1. 7 olark.module \olark_context_registry()

Implements hook_context_registry().

File

./olark.module, line 109
Integrates Olark Chat in a Drupal site.

Code

function olark_context_registry() {
  return array(
    'reactions' => array(
      'olark_add' => array(
        'title' => t('Olark'),
        'plugin' => 'olark_context_reaction_add',
        'description' => t('Add Olark chat code to the page'),
      ),
    ),
  );
}