-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathezinfo.php
33 lines (29 loc) · 973 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
27
28
29
30
31
32
33
<?php
class ownewsletterInfo
{
// set manually - is used in email header, and in file header @version
const SOFTWARE_VERSION = '0.1.0';
static function info()
{
return array( 'Name' => 'OWNewsletter - Multi Channel Marketing',
'Version' => self::SOFTWARE_VERSION,
'eZ version' => '4.x',
'Copyright' => '',
'License' => 'GNU General Public License v2.0',
'More Information' => ''
);
}
/**
* get some additional infos about the newsletter
* for future use
*/
static function packageInfo()
{
$infoArray = array();
$infoArray[ 'release_version' ] = '//release_version//';
// is set when building the package
$infoArray[ 'release_svn_revision' ] = '//release_svn_revision//';
return $infoArray;
}
}
?>