source: Base/Types/String.php

Last change on this file was 1, checked in by george, 15 years ago
  • Přidáno: Výchozí verze systému.
File size: 570 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/Base.php');
4
5class TypeString extends TypeBase
6{
7 var $DatabaseCompareOperators = array('Jako' => 'LIKE', 'Rovno' => '=', 'Nerovno' => '!=');
8
9 function OnView($Item)
10 {
11 $Output = $Item['Value'];
12 return($Output);
13 }
14
15 function OnEdit($Item)
16 {
17 $Output = '<input type="text" name="'.$Item['Name'].'" value="'.$Item['Value'].'"/>';
18 return($Output);
19 }
20
21 function OnLoad($Item)
22 {
23 return($_POST[$Item['Name']]);
24 }
25
26 function DatabaseEscape($Value)
27 {
28 return('"'.addslashes($Value).'"');
29 }
30}
31
32?>
Note: See TracBrowser for help on using the repository browser.