Changeset 8 for types/String.php
- Timestamp:
- Sep 29, 2008, 2:35:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
types/String.php
r5 r8 1 1 <?php 2 2 3 function TypeStringViewHtml($Type, $ Parameter, $Table, $Id)3 function TypeStringViewHtml($Type, $Item) 4 4 { 5 $Output = '%value%';5 $Output = $Item['Value']; 6 6 return($Output); 7 7 } 8 8 9 function TypeStringEditHtml($Type, $ Parameter, $Table, $Id)9 function TypeStringEditHtml($Type, $Item) 10 10 { 11 $Output = '<input type="text" name=" %name%" value="%value%">';11 $Output = '<input type="text" name="'.$Item['Name'].'" value="'.$Item['Value'].'">'; 12 12 return($Output); 13 13 }
Note:
See TracChangeset
for help on using the changeset viewer.