forked from brookinsconsulting/bcgooglesitemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathezinfo.php
24 lines (22 loc) · 1.12 KB
/
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 bcgooglesitemaps copyright information file
*
* @copyright Copyright (C) 1999 - 2024 7x, Brookins Consutling, 2008 all2e GmbH and 2008 MEDIATA Communications GmbH. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2 (or Later Version)
* @version //autogentag//
* @package bcgooglesitemaps
*/
class bcGoogleSitemapsInfo
{
public static function info()
{
return array( 'Name' => "<a href='https://github.com/se7enxweb/bcgooglesitemaps'>BC Google Sitemaps</a>",
'Version' => "1.1.6",
'Copyright' => "Copyright (C) 1999 - 2024 <a href='https://se7enx.com' title='7x'>7x</a> and Brookins Consulting, 2008 <a href='http:www.all2e.com' title='all2e GmbH'>all2e GmbH</a> and 2008 <a href='http://www.mediata.net' title='MEDIATA Communications GmbH'>MEDIATA Communications GmbH</a>",
'License' => "GNU General Public License v2.0 (or Later Version)",
'info_url' => "https://packagist.org/packages/se7enxweb/bcgooglesitemaps"
);
}
}
?>