function olark_context_plugins in Olark Chat 6
Same name and namespace in other branches
- 7 olark.module \olark_context_plugins()
CTools plugin API hook for Context.
File
- ./olark.module, line 133 
- Integrates Olark Chat in a Drupal site.
Code
function olark_context_plugins() {
  $plugins = array();
  $plugins['olark_context_reaction_add'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'olark') . '/plugins',
      'file' => 'olark_context_reaction_add.inc',
      'class' => 'olark_context_reaction_add',
      'parent' => 'context_reaction',
    ),
  );
  return $plugins;
}