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