source: trunk/types/include.php

Last change on this file was 38, checked in by george, 15 years ago
  • Přidáno: Typy Color pro výběr barvy a Text pro psaní obsáhlejších textů.
  • Opraveno: Ukládání položek do jiných databází než v které je systém.
File size: 922 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');
20include('types/Color.php');
21include('types/Text.php');
22
23define('TypeIntegerId', 1);
24define('TypeBooleanId', 4);
25define('TypeStringId', 3);
26define('TypeDateId', 2);
27define('TypePointerOneToOneId', 12);
28define('TypePointerOneToManyId', 13);
29define('TypePasswordId', 15);
30define('TypeFloatId', 16);
31define('TypeHiddenId', 20);
32define('TypePointerToUserId', 37);
33define('TypeColorId', 66);
34
35?>
Note: See TracBrowser for help on using the repository browser.