source: branches/mvc/Base/Types/Text.php

Last change on this file was 47, checked in by chronos, 10 years ago
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
File size: 557 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/Base.php');
4
5class TypeText 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 = '<textarea name="'.$Item['Name'].'">'.$Item['Value'].'</textarea>';
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}
Note: See TracBrowser for help on using the repository browser.