source:
PackageTemplate.php
Last change on this file was 11, checked in by , 5 years ago | |
---|---|
File size: 398 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | class PackageTemplate |
4 | { |
5 | var $Name; |
6 | var $Version; |
7 | var $ReleaseDate; |
8 | var $License; |
9 | var $Creator; |
10 | var $Homepage; |
11 | |
12 | function __construct() |
13 | { |
14 | $this->Name = 'Template'; |
15 | $this->Version = '1.0'; |
16 | $this->ReleaseDate = strtotime('2016-01-01'); |
17 | $this->Creator = 'Noname'; |
18 | $this->License = 'GNU/GPL'; |
19 | $this->Homepage = 'https://svn.zdechov.net/PHPlib/Name/'; |
20 | } |
21 | } |
Note:
See TracBrowser
for help on using the repository browser.