source: trunk/Base/Types/Base.php@ 17

Last change on this file since 17 was 17, checked in by george, 15 years ago
File size: 383 bytes
Line 
1<?php
2
3class TypeBase
4{
5 var $System;
6 var $DatabaseCompareOperators = array();
7
8 function __construct($System)
9 {
10 $this->System = $System;
11 }
12
13 function OnView($Item)
14 {
15 return('');
16 }
17
18 function OnEdit($Item)
19 {
20 return('');
21 }
22
23 function OnLoad($Item)
24 {
25 return('');
26 }
27
28 function DatabaseEscape($Value)
29 {
30 return(addslashes($Value));
31 }
32}
33
34?>
Note: See TracBrowser for help on using the repository browser.