-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathezinfo.php
More file actions
55 lines (47 loc) · 1.76 KB
/
Copy pathezinfo.php
File metadata and controls
55 lines (47 loc) · 1.76 KB
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
<?php
//
// ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
// SOFTWARE NAME: enhancedezbinaryfile
// SOFTWARE RELEASE: 4.0.0
// COPYRIGHT NOTICE: Copyright (C) 2008 Contactivity B.V.
// SOFTWARE LICENSE: GNU General Public License v2.0
// NOTICE: >
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2.0 of the GNU General
// Public License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of version 2.0 of the GNU General
// Public License along with this program; if not, write to the Free
// Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
// MA 02110-1301, USA.
//
//
// ## END COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
//
/*! \file ezinfo.php
\class enhancedezbinaryfile ezinfo.php
\brief The class EnhancedeZBinaryFileType allows files to used as a
collected information datatype. These files will be temporary, will
be written to var/storage but will not be written to the database.
Used in conjuction with a kernel hack it can be used to easily send
the information collector the file as an e-mail attachment.
*/
class enhancedezbinaryfileInfo
{
static function info()
{
return array(
'Name' => "enhancedezbinaryfile",
'Version' => "4.4.0",
'Copyright' => "Copyright (c) 2010 Contactivity B.V.",
'Info_url' => "http://www.contactivity.com",
'License' => "GNU General Public License v2.0"
);
}
}
?>