Last change
on this file was 32, checked in by george, 16 years ago |
- Přidáno: Zobrazování ladících informací v patičce dle nastavení v config.php.
|
File size:
298 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | class TypeBase
|
---|
4 | {
|
---|
5 | var $DatabaseCompareOperators = array();
|
---|
6 |
|
---|
7 | function OnView($Item)
|
---|
8 | {
|
---|
9 | return('');
|
---|
10 | }
|
---|
11 |
|
---|
12 | function OnEdit($Item)
|
---|
13 | {
|
---|
14 | return('');
|
---|
15 | }
|
---|
16 |
|
---|
17 | function OnLoad($Item)
|
---|
18 | {
|
---|
19 | return('');
|
---|
20 | }
|
---|
21 |
|
---|
22 | function DatabaseEscape($Value)
|
---|
23 | {
|
---|
24 | return(addslashes($Value));
|
---|
25 | }
|
---|
26 | }
|
---|
27 |
|
---|
28 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.