mirror of https://github.com/BOINC/boinc.git
11 lines
152 B
PHP
11 lines
152 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Implementation of hook_views_default_views().
|
||
|
*/
|
||
|
function boinc_standard_views_default_views() {
|
||
|
$views = array();
|
||
|
|
||
|
return $views;
|
||
|
}
|