forked from brookinsconsulting/bcimagealias
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathezinfo.php
More file actions
executable file
·23 lines (23 loc) · 763 Bytes
/
ezinfo.php
File metadata and controls
executable file
·23 lines (23 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* File containing the bcimagealiasInfo class.
*
* @copyright Copyright (C) 1999-2011 Brookins Consulting. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2 (or later)
* @version //autogentag//
* @package extension/bcimagealias
*/
class bcimagealiasInfo
{
function info()
{
return array(
'Name' => "<a href='http://projects.ez.no/bcimagealias'>BC Image Alias</a>",
'Version' => "0.0.20",
'Copyright' => "Copyright (C) 1999 - 2011 <a href='http://brookinsconsulting.com/'>Brookins Consulting</a>",
'Author' => "Brookins Consulting",
'License' => "GNU General Public License"
);
}
}
?>