| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | include_once(dirname(__FILE__).'/Database.php');
|
|---|
| 4 | include_once(dirname(__FILE__).'/Image.php');
|
|---|
| 5 | include_once(dirname(__FILE__).'/Mail.php');
|
|---|
| 6 | include_once(dirname(__FILE__).'/NetworkAddress.php');
|
|---|
| 7 | include_once(dirname(__FILE__).'/PrefixMultiplier.php');
|
|---|
| 8 | include_once(dirname(__FILE__).'/RSS.php');
|
|---|
| 9 | include_once(dirname(__FILE__).'/UTF8.php');
|
|---|
| 10 | include_once(dirname(__FILE__).'/VarDumper.php');
|
|---|
| 11 | include_once(dirname(__FILE__).'/Error.php');
|
|---|
| 12 | include_once(dirname(__FILE__).'/Base.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');
|
|---|
| 20 | include_once(dirname(__FILE__).'/ModelDef.php');
|
|---|
| 21 | include_once(dirname(__FILE__).'/Config.php');
|
|---|
| 22 | include_once(dirname(__FILE__).'/Page.php');
|
|---|
| 23 | include_once(dirname(__FILE__).'/Locale.php');
|
|---|
| 24 | include_once(dirname(__FILE__).'/Update.php');
|
|---|
| 25 | include_once(dirname(__FILE__).'/Table.php');
|
|---|
| 26 | include_once(dirname(__FILE__).'/Process.php');
|
|---|
| 27 | include_once(dirname(__FILE__).'/Generics.php');
|
|---|
| 28 | include_once(dirname(__FILE__).'/BigInt.php');
|
|---|
| 29 | include_once(dirname(__FILE__).'/Int128.php');
|
|---|
| 30 | include_once(dirname(__FILE__).'/Pdf.php');
|
|---|
| 31 | include_once(dirname(__FILE__).'/Paging.php');
|
|---|
| 32 | include_once(dirname(__FILE__).'/Modules/ModuleSetup.php');
|
|---|
| 33 | include_once(dirname(__FILE__).'/Modules/ModuleAdmin.php');
|
|---|
| 34 |
|
|---|
| 35 | class PackageCommon
|
|---|
| 36 | {
|
|---|
| 37 | public string $Name;
|
|---|
| 38 | public string $Version;
|
|---|
| 39 | public int $ReleaseDate;
|
|---|
| 40 | public string $License;
|
|---|
| 41 | public string $Creator;
|
|---|
| 42 | public string $Homepage;
|
|---|
| 43 |
|
|---|
| 44 | function __construct()
|
|---|
| 45 | {
|
|---|
| 46 | $this->Name = 'Common';
|
|---|
| 47 | $this->Version = '1.2';
|
|---|
| 48 | $this->ReleaseDate = strtotime('2023-05-31');
|
|---|
| 49 | $this->Creator = 'Chronos';
|
|---|
| 50 | $this->License = 'GNU/GPLv3';
|
|---|
| 51 | $this->Homepage = 'https://svn.zdechov.net/PHPlib/Common/';
|
|---|
| 52 | }
|
|---|
| 53 | }
|
|---|