source: trunk/Common/Types/Base.php@ 383

Last change on this file since 383 was 383, checked in by chronos, 13 years ago
  • Přidáno: Kostra základního systémového modulu System.
  • Přidáno: Obsluha datových typů pro HTML kód a HTTP protokol.
  • Upraveno: Do ViewList zkopírování generování tabulky se stránkováním a řazením.
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.