-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathezinfo.php
executable file
·25 lines (25 loc) · 957 Bytes
/
ezinfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* File containing the bccieInfo class.
*
* @copyright Copyright (C) 1999 - 2017 Brookins Consulting. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2 (or any later version)
* @version //autogentag//
* @package bccie
*/
class bccieInfo
{
static function info()
{
return array(
'Name' => "<a href='http://projects.ez.no/cie'>BC CIE</a> - Collected Information Export",
'Version' => "1.1.3",
'Copyright' => array( "Copyright (C) 1999 - 2017 <a href='http://brookinsconsulting.com'>Brookins Consulting</a>",
"Copyright (C) 2006 - 2007 <a href='http://silverhand.fr/'>Vitalis Mathias</a>" ),
'Author' => "Brookins Consulting and Vitalis Mathias",
'License' => "GNU General Public License",
'info_url' => "http://github.com/brookinsconsulting/bccie"
);
}
}
?>