mirror of https://github.com/BOINC/boinc.git
12 lines
253 B
PHP
12 lines
253 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Implementation of hook_ctools_plugin_api().
|
||
|
*/
|
||
|
function private_messages_ctools_plugin_api() {
|
||
|
list($module, $api) = func_get_args();
|
||
|
if ($module == "panels_mini" && $api == "panels_default") {
|
||
|
return array("version" => 1);
|
||
|
}
|
||
|
}
|