-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathezinfo.php
More file actions
20 lines (20 loc) · 732 Bytes
/
Copy pathezinfo.php
File metadata and controls
20 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
* ezinfo
* @copyright Copyright (C) 2010 - Philippe Vincent-Royol. All rights reserved
* @licence http://www.gnu.org/licenses/gpl-2.0.txt GNU GPLv2
* @author Philippe Vincent-Royol
* @version @@@VERSION@@@
* @package pvrupdatesocial
*/
class pvrupdatesocialInfo
{
static function info()
{
return array( 'Name' => '<a href="http://projects.ez.no/pvrupdatesocial" target="_blank"> pvrUpdateSocial </a>',
'Version' => '@@@VERSION@@@',
'Copyright' => 'Copyright 2010 - '.date('Y').' Philippe Vincent-Royol',
'Author' => '<a href="http://www.pheelit.fr" target="_blank">Philippe Vincent-Royol</a>'
);
}
}