mirror of https://github.com/BOINC/boinc.git
15 lines
336 B
PHP
15 lines
336 B
PHP
<?php
|
|
|
|
/**
|
|
* Implementation of hook_ctools_plugin_api().
|
|
*/
|
|
function spam_controls_ctools_plugin_api() {
|
|
list($module, $api) = func_get_args();
|
|
if ($module == "context" && $api == "context") {
|
|
return array("version" => 3);
|
|
}
|
|
elseif ($module == "strongarm" && $api == "strongarm") {
|
|
return array("version" => 1);
|
|
}
|
|
}
|