forked from ezsystems/ezcomments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ezinfo.php
26 lines (25 loc) · 992 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
25
26
<?php
/**
* File containing ezcomCommentsInfo class
*
* @copyright Copyright (C) 1999-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/gnu_gpl GNU GPLv2
*
*/
class ezcommentsInfo
{
static function info()
{
return array(
'Name' => "<a href='http://projects.ez.no/ezcomments'>eZ Comments</a>",
'Version' => "//autogentag//",
'Copyright' => 'Copyright (C) 1999-2011 eZ Systems AS',
'License' => 'GNU General Public License v2.0',
'Includes the following third-party software' => array( 'Name' => 'reCAPTCHA PHP Library',
'Version' => '1.11',
'Copyright' => 'Copyright (c) 2007 reCAPTCHA -- http://recaptcha.net',
'License' => '',)
);
}
}
?>