function olark_context_registry in Olark Chat 7
Same name and namespace in other branches
- 6 olark.module \olark_context_registry()
Implements hook_context_registry().
File
- ./
olark.module, line 130 - 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'),
),
),
);
}