You are here

function olark_ctools_plugin_api in Olark Chat 6

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

Notify CTools that we'll be using the plugin API with Context module.

File

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

Code

function olark_ctools_plugin_api($module, $api) {
  if ($module == 'context' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
}