source: trunk/www/Base/Types/Base.php

Last change on this file was 93, checked in by chronos, 11 years ago
  • Fixed: System variable as parameter to constructors of descendents of Module class.
  • Removed: End PHP mark "?>" from all files.
File size: 360 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../Module.php');
4
5class TypeBase extends Module
6{
7 var $DatabaseCompareOperators = array();
8
9 function OnView($Item)
10 {
11 return('');
12 }
13
14 function OnEdit($Item)
15 {
16 return('');
17 }
18
19 function OnLoad($Item)
20 {
21 return('');
22 }
23
24 function DatabaseEscape($Value)
25 {
26 return(addslashes($Value));
27 }
28}
Note: See TracBrowser for help on using the repository browser.