-
Notifications
You must be signed in to change notification settings - Fork 1
/
ezinfo.php
24 lines (22 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
<?php
/**
* File containing the bcwebshop copyright information file
*
* @copyright Copyright (C) 1999 - 2023 Brookins Consutling, 1999 - 2015 eZ Systems AS. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2
* @version //autogentag//
* @package bcwebshop
*/
class bcWebShopInfo
{
public static function info()
{
return array( 'Name' => "<a href='https://github.com/brookinsconsulting/bcwebshop">BC Web Shop</a>",
'Version' => "1.0.1",
'Copyright' => "Copyright (C) 1999 - 2023 <a href='http://brookinsconsulting.com' title='Brookins Consulting'>Brookins Consulting</a>, 1999 - 2015 <a href='http://ez.no' title='eZ Systems AS'>eZ Systems AS</a>",
'License' => "GNU General Public License v2.0",
'info_url' => "https://github.com/brookinsconsulting/bcwebshop"
);
}
}
?>