-
Notifications
You must be signed in to change notification settings - Fork 1
/
ezinfo.php
executable file
·24 lines (24 loc) · 933 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 bcgooglevideositemapInfo class.
*
* @copyright Copyright (C) 1999 - 2016 Brookins Consulting. All rights reserved.
* @copyright Copyright (C) 2013 - 2016 Think Creative. 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 bcgooglevideositemap
*/
class bcgooglevideositemapInfo
{
function info()
{
return array(
'Name' => "<a href='http://bitbucket.org/brookinsconsulting/bcgooglevideositemap'>BC GoogleVideoSitemap</a>",
'Version' => "0.1.1",
'Copyright' => "Copyright (C) 1999 - 2016 <a href='http://brookinsconsulting.com'>Brookins Consulting</a> and <a href='http://thinkcreative.com'>Think Creative</a>",
'Author' => "Brookins Consulting",
'License' => "GNU General Public License"
);
}
}
?>