diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-28 20:27:23 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-28 20:27:23 +0000 |
commit | e7b3717614621f14695ab6ca6dda6dd17ba3d65c (patch) | |
tree | c8e6061aef3ff7bad5a17e1aecaf441d35e282cb /h-source/Library/Form/Form.php | |
parent | 0de74c6879d263645770de3d6b3ce7123f5241d6 (diff) |
added new easygiant library
Diffstat (limited to 'h-source/Library/Form/Form.php')
-rwxr-xr-x | h-source/Library/Form/Form.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/h-source/Library/Form/Form.php b/h-source/Library/Form/Form.php index 9aba086..a20327f 100755 --- a/h-source/Library/Form/Form.php +++ b/h-source/Library/Form/Form.php @@ -78,6 +78,7 @@ class Form_Form { $labelClass = array_key_exists('labelClass',$entry) ? $entry['labelClass'] : null; $defaultValue = array_key_exists('defaultValue',$entry) ? $entry['defaultValue'] : null; $wrap = array_key_exists('wrap',$entry) ? $entry['wrap'] : array(); + $deleteButton = array_key_exists('deleteButton',$entry) ? $entry['deleteButton'] : null; $this->entry[$name]->entryClass = $entryClass; $this->entry[$name]->labelString = $labelString; @@ -86,6 +87,7 @@ class Form_Form { $this->entry[$name]->labelClass = $labelClass; $this->entry[$name]->defaultValue = $defaultValue; $this->entry[$name]->wrap = $wrap; + $this->entry[$name]->deleteButton = $deleteButton; } } |