-
Notifications
You must be signed in to change notification settings - Fork 2
/
ezinfo.php
78 lines (73 loc) · 3.18 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
//
// Definition of eZNewsletterInfo class
//
// Copyright (C) 1999-2011 eZ systems as. All rights reserved.
//
// This source file is part of the eZ publish (tm) Open Source Content
// Management System.
//
// This file may be distributed and/or modified under the terms of the
// "GNU General Public License" version 2 as published by the Free
// Software Foundation and appearing in the file LICENSE included in
// the packaging of this file.
//
// Licencees holding a valid "eZ publish professional licence" version 2
// may use this file in accordance with the "eZ publish professional licence"
// version 2 Agreement provided with the Software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
// THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE.
//
// The "eZ publish professional licence" version 2 is available at
// http://ez.no/ez_publish/licences/professional/ and in the file
// PROFESSIONAL_LICENCE included in the packaging of this file.
// For pricing of this licence please contact us via e-mail to [email protected].
// Further contact information is available at http://ez.no/company/contact/.
//
// The "GNU General Public License" (GPL) is available at
// http://www.gnu.org/copyleft/gpl.html.
//
// Contact [email protected] if any conditions of this licencing isn't clear to
// you.
//
/*! \file ezinfo.php
*/
/*!
\class eZNewsletterInfo ezinfo.php
\brief The class eZNewsletterInfo does
*/
class eZNewsletterInfo
{
static function info()
{
return array( 'name' => 'eZ Newsletter',
'version' => '1.7.0',
'copyright' => 'Copyright © 2011 eZ systems',
'info_url' => 'http://ez.no/community/contribs/applications/ez_newsletter',
'license' => 'GPL version 2',
'3rdparty_software' =>
array ( 'name' => 'eznewsletter_builder',
'Version' => '1.7-0',
'copyright' => 'Copyright © 2011 eZ systems',
'license' => 'GPL version 2',
'name' => 'eznewsletter_designs',
'Version' => '1.7-0',
'copyright' => 'Copyright © 2011 eZ systems',
'license' => 'GPL version 2',
'name' => 'ezapprove2',
'Version' => '0.9.0',
'copyright' => 'Copyright © 2011 eZ systems',
'license' => 'GPL version 2',
'name' => 'ezlabel',
'Version' => '1.2',
'copyright' => 'Copyright © 2011 eZ systems',
'license' => 'GPL version 2',
'name' => 'ezmailimport',
'Version' => '1.2',
'copyright' => 'Copyright © 2011 eZ systems',
'license' => 'GPL version 2', ) );
}
}
?>