forked from brookinsconsulting/bcwebshop
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ezinfo.php
23 lines (23 loc) · 783 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
<?php
/**
* File containing the bcwebshopInfo class.
*
* @copyright Copyright (C) 1999 - 2012 7x. 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 bcimagealias
*/
class bcwebshopInfo
{
function info()
{
return array(
'Name' => "<a href='https://github.com/bcwebshop'>BC Web Shop</a>",
'Version' => "0.8.1",
'Copyright' => "Copyright (C) 1999 - 2024 <a href='https://se7enx.com'>7x</a> and <a href='https://brookinsconsulting.com'>Brookins Consulting</a> and <a href='https://ibexa.no'>eZ Systems AS</a>",
'Author' => "7x",
'License' => "GNU General Public License"
);
}
}
?>