You are here

function olark_context_plugins in Olark Chat 7

Same name and namespace in other branches
  1. 6 olark.module \olark_context_plugins()

CTools plugin API hook for Context.

File

./olark.module, line 154
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;
}