function olark_ctools_plugin_api in Olark Chat 7
Same name and namespace in other branches
- 6 olark.module \olark_ctools_plugin_api()
Notify CTools that we'll be using the plugin API with Context module.
File
- ./
olark.module, line 145 - Integrates Olark Chat in a Drupal site.
Code
function olark_ctools_plugin_api($module, $api) {
if ($module == 'context' && $api == 'plugins') {
return array(
'version' => 3,
);
}
}