source: trunk/types/include.php@ 36

Last change on this file since 36 was 36, checked in by george, 16 years ago
  • Opraveno: Různá chybová hlášení.
  • Upraveno: Zobrazení přímo skriptu a čísla řádku, ve kterém nastala chyba. Funkce již není přímo zobrazována.
File size: 840 bytes
Line 
1<?php
2
3// Include type definitions
4include('types/Base.php');
5include('types/Enumeration.php');
6include('types/Boolean.php');
7include('types/Integer.php');
8include('types/String.php');
9include('types/PointerOneToMany.php');
10include('types/PointerOneToOne.php');
11include('types/Date.php');
12include('types/DateTime.php');
13include('types/Password.php');
14include('types/Float.php');
15include('types/Hyperlink.php');
16include('types/Hidden.php');
17include('types/File/File.php');
18include('types/GPS.php');
19include('types/IPv4Address.php');
20
21define('TypeIntegerId', 1);
22define('TypeBooleanId', 4);
23define('TypeStringId', 3);
24define('TypeDateId', 2);
25define('TypePointerOneToOneId', 12);
26define('TypePointerOneToManyId', 13);
27define('TypePasswordId', 15);
28define('TypeFloatId', 16);
29define('TypeHiddenId', 20);
30define('TypePointerToUserId', 37);
31
32?>
Note: See TracBrowser for help on using the repository browser.