Changeset 888 for trunk/Packages/Common/Common.php
- Timestamp:
- Dec 27, 2022, 7:50:23 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Common.php
r881 r888 11 11 include_once(dirname(__FILE__).'/Error.php'); 12 12 include_once(dirname(__FILE__).'/Base.php'); 13 include_once(dirname(__FILE__).'/Application.php'); 14 include_once(dirname(__FILE__).'/AppModule.php'); 13 include_once(dirname(__FILE__).'/View.php'); 14 include_once(dirname(__FILE__).'/Model.php'); 15 include_once(dirname(__FILE__).'/ModelDesc.php'); 16 include_once(dirname(__FILE__).'/Controller.php'); 17 include_once(dirname(__FILE__).'/System.php'); 18 include_once(dirname(__FILE__).'/Module.php'); 19 include_once(dirname(__FILE__).'/ModuleManager.php'); 15 20 include_once(dirname(__FILE__).'/Config.php'); 16 21 include_once(dirname(__FILE__).'/Page.php'); 17 22 include_once(dirname(__FILE__).'/Locale.php'); 18 23 include_once(dirname(__FILE__).'/Update.php'); 19 include_once(dirname(__FILE__).'/Setup.php');20 24 include_once(dirname(__FILE__).'/Table.php'); 25 include_once(dirname(__FILE__).'/Process.php'); 26 include_once(dirname(__FILE__).'/Generics.php'); 27 include_once(dirname(__FILE__).'/BigInt.php'); 28 include_once(dirname(__FILE__).'/Int128.php'); 29 include_once(dirname(__FILE__).'/Pdf.php'); 30 include_once(dirname(__FILE__).'/Modules/Setup.php'); 31 include_once(dirname(__FILE__).'/Modules/ModuleManager.php'); 21 32 22 33 class PackageCommon 23 34 { 24 var $Name; 25 var $Version; 26 var $License; 27 var $Creator; 28 var $Homepage; 35 public string $Name; 36 public string $Version; 37 public int $ReleaseDate; 38 public string $License; 39 public string $Creator; 40 public string $Homepage; 29 41 30 42 function __construct() 31 43 { 32 44 $this->Name = 'Common'; 33 $this->Version = '1.1'; 45 $this->Version = '1.2'; 46 $this->ReleaseDate = strtotime('2020-03-29'); 34 47 $this->Creator = 'Chronos'; 35 $this->License = 'GNU/GPL ';48 $this->License = 'GNU/GPLv3'; 36 49 $this->Homepage = 'https://svn.zdechov.net/PHPlib/Common/'; 37 50 } … … 40 53 class Paging 41 54 { 42 var$TotalCount;43 var$ItemPerPage;44 var$Around;45 var$SQLLimit;46 var$Page;55 public int $TotalCount; 56 public int $ItemPerPage; 57 public int $Around; 58 public string $SQLLimit; 59 public int $Page; 47 60 48 61 function __construct() … … 54 67 } 55 68 56 function Show() 69 function Show(): string 57 70 { 58 71 $QueryItems = GetQueryStringArray($_SERVER['QUERY_STRING']);
Note:
See TracChangeset
for help on using the changeset viewer.