|
Last change
on this file was 47, checked in by chronos, 11 years ago |
- Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
|
|
File size:
379 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | class 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 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.