forked from lolautruche/sqliimport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathezinfo.php
More file actions
26 lines (25 loc) · 779 Bytes
/
ezinfo.php
File metadata and controls
26 lines (25 loc) · 779 Bytes
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
/**
* eZInfo for SQLIImport extension
* @copyright Copyright (C) 2010 - SQLi Agency. All rights reserved
* @licence http://www.gnu.org/licenses/gpl-2.0.txt GNU GPLv2
* @author Jerome Vieilledent
* @version @@@VERSION@@@
* @package sqliimport
*/
class sqliimportInfo
{
/**
* eZInfo method
*/
public static function info()
{
return array(
'Name' => 'SQLI Import',
'Version' => '@@@VERSION@@@',
'Copyright' => 'Copyright © 2010 @@@AUTHORS@@@ - SQLi Agency',
'License' => 'GNU General Public License v2.0',
'Info' => '<a href="http://projects.ez.no/sqliimport" target="_blank">http://projects.ez.no/sqliimport</a>'
);
}
}