Changeset 3
- Timestamp:
- Dec 31, 2015, 10:51:31 PM (9 years ago)
- Files:
-
- 1 added
- 1 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Common/Common.php
r2 r3 9 9 include_once(dirname(__FILE__).'/UTF8.php'); 10 10 include_once(dirname(__FILE__).'/VarDumper.php'); 11 include_once(dirname(__FILE__).'/Error.php'); 11 12 13 class PackageCommon 14 { 15 var $Name; 16 var $Version; 17 var $License; 18 var $Creator; 19 var $Homepage; 12 20 13 class PackageCommon extends Package14 {15 21 function __construct() 16 22 { 17 23 $this->Name = 'Common'; 18 $this->Version = '1. 0';24 $this->Version = '1.1'; 19 25 $this->Creator = 'Chronos'; 20 26 $this->License = 'GNU/GPL'; -
PackageTemplate.php
r2 r3 1 1 <?php 2 2 3 class Package { 3 class PackageTemplate 4 { 4 5 var $Name; 5 6 var $Version; … … 7 8 var $Creator; 8 9 var $Homepage; 10 11 function __construct() 12 { 13 $this->Name = 'Template'; 14 $this->Version = '1.0'; 15 $this->Creator = 'Noname'; 16 $this->License = 'GNU/GPL'; 17 $this->Homepage = 'http://svn.zdechov.net/svn/PHPlib/Name/'; 18 } 9 19 }
Note:
See TracChangeset
for help on using the changeset viewer.