source: trunk/Packages/FormManager/PackageFormManager.php

Last change on this file was 8, checked in by chronos, 12 months ago
  • Modified: Updated Common package.
  • Modified: Form types made as separate FormManager package.
  • Fixed: PHP 8.1 support.
File size: 1.9 KB
Line 
1<?php
2
3include_once(dirname(__FILE__).'/FormManager.php');
4include_once(dirname(__FILE__).'/Form.php');
5include_once(dirname(__FILE__).'/Types/Base.php');
6include_once(dirname(__FILE__).'/Types/Color.php');
7include_once(dirname(__FILE__).'/Types/DateTime.php');
8include_once(dirname(__FILE__).'/Types/File.php');
9include_once(dirname(__FILE__).'/Types/GPS.php');
10include_once(dirname(__FILE__).'/Types/Integer.php');
11include_once(dirname(__FILE__).'/Types/IPv6Address.php');
12include_once(dirname(__FILE__).'/Types/OneToMany.php');
13include_once(dirname(__FILE__).'/Types/IPv6Address.php');
14include_once(dirname(__FILE__).'/Types/Password.php');
15include_once(dirname(__FILE__).'/Types/String.php');
16include_once(dirname(__FILE__).'/Types/TimeDiff.php');
17include_once(dirname(__FILE__).'/Types/Type.php');
18include_once(dirname(__FILE__).'/Types/Boolean.php');
19include_once(dirname(__FILE__).'/Types/Date.php');
20include_once(dirname(__FILE__).'/Types/Boolean.php');
21include_once(dirname(__FILE__).'/Types/Enumeration.php');
22include_once(dirname(__FILE__).'/Types/Float.php');
23include_once(dirname(__FILE__).'/Types/Hidden.php');
24include_once(dirname(__FILE__).'/Types/Image.php');
25include_once(dirname(__FILE__).'/Types/IPv4Address.php');
26include_once(dirname(__FILE__).'/Types/MacAddress.php');
27include_once(dirname(__FILE__).'/Types/OneToMany2.php');
28include_once(dirname(__FILE__).'/Types/RandomHash.php');
29include_once(dirname(__FILE__).'/Types/Text.php');
30include_once(dirname(__FILE__).'/Types/Time.php');
31
32class PackageFormManager
33{
34 public string $Name;
35 public string $Version;
36 public int $ReleaseDate;
37 public string $License;
38 public string $Creator;
39 public string $Homepage;
40
41 function __construct()
42 {
43 $this->Name = 'FormManager';
44 $this->Version = '1.0';
45 $this->ReleaseDate = strtotime('2023-05-31');
46 $this->Creator = 'Chronos';
47 $this->License = 'GNU/GPLv3';
48 $this->Homepage = 'https://svn.zdechov.net/PHPlib/FormManager/';
49 }
50}
Note: See TracBrowser for help on using the repository browser.