source: types/IPv4Address.php@ 19

Last change on this file since 19 was 19, checked in by george, 17 years ago
  • Upraveno: Typy přepsány z procedurálního zápisu na objektový.
  • Přidáno: Zobrazení špičky použité paměti.
  • Opraveno: Needitovat položky s neaktivním příznakem Editovatelné.
File size: 396 bytes
Line 
1<?php
2
3class TypeIPv4Address
4{
5 function OnView($Item)
6 {
7 $Output = $Item['Value'];
8 return($Output);
9 }
10
11 function OnEdit($Item)
12 {
13 $Output = '<input type="text" 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$TypeDefinitionList['TypeIPv4Address'] = new TypeIPv4Address;
24
25?>
Note: See TracBrowser for help on using the repository browser.