source: trunk/Base/Types/Hidden.php@ 40

Last change on this file since 40 was 40, checked in by george, 16 years ago
  • Upraveno: Struktura souborů projektu přepracována na systém MVC.
File size: 347 bytes
Line 
1<?php
2
3class TypeHidden extends TypeBase
4{
5 function OnView($Item)
6 {
7 $Output = $Item['Value'];
8 return($Output);
9 }
10
11 function OnEdit($Item)
12 {
13 $Output = '<input type="hidden" name="'.$Item['Name'].'" value="'.$Item['Value'].'">';
14 return($Output);
15 }
16
17 function OnLoad($Item)
18 {
19 return($_POST[$Item['Name']]);
20 }
21}
22
23?>
Note: See TracBrowser for help on using the repository browser.