<?php

include_once(dirname(__FILE__).'/Database.php');
include_once(dirname(__FILE__).'/Image.php');
include_once(dirname(__FILE__).'/Mail.php');
include_once(dirname(__FILE__).'/NetworkAddress.php');
include_once(dirname(__FILE__).'/PrefixMultiplier.php');
include_once(dirname(__FILE__).'/RSS.php');
include_once(dirname(__FILE__).'/UTF8.php');
include_once(dirname(__FILE__).'/VarDumper.php');
include_once(dirname(__FILE__).'/Error.php');
include_once(dirname(__FILE__).'/Base.php');
include_once(dirname(__FILE__).'/View.php');
include_once(dirname(__FILE__).'/Model.php');
include_once(dirname(__FILE__).'/ModelDesc.php');
include_once(dirname(__FILE__).'/Controller.php');
include_once(dirname(__FILE__).'/System.php');
include_once(dirname(__FILE__).'/Module.php');
include_once(dirname(__FILE__).'/ModuleManager.php');
include_once(dirname(__FILE__).'/ModelDef.php');
include_once(dirname(__FILE__).'/Config.php');
include_once(dirname(__FILE__).'/Page.php');
include_once(dirname(__FILE__).'/Locale.php');
include_once(dirname(__FILE__).'/Update.php');
include_once(dirname(__FILE__).'/Table.php');
include_once(dirname(__FILE__).'/Process.php');
include_once(dirname(__FILE__).'/Generics.php');
include_once(dirname(__FILE__).'/BigInt.php');
include_once(dirname(__FILE__).'/Int128.php');
include_once(dirname(__FILE__).'/Pdf.php');
include_once(dirname(__FILE__).'/Paging.php');
include_once(dirname(__FILE__).'/Modules/ModuleSetup.php');
include_once(dirname(__FILE__).'/Modules/ModuleAdmin.php');

class PackageCommon
{
  public string $Name;
  public string $Version;
  public int $ReleaseDate;
  public string $License;
  public string $Creator;
  public string $Homepage;

  function __construct()
  {
    $this->Name = 'Common';
    $this->Version = '1.2';
    $this->ReleaseDate = strtotime('2023-05-31');
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPLv3';
    $this->Homepage = 'https://svn.zdechov.net/PHPlib/Common/';
  }
}
