1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
13:
14: class Whups_Form_Admin_AddState extends Horde_Form
15: {
16: public function __construct(&$vars)
17: {
18: parent::__construct($vars, _("Add State"));
19:
20: $this->addHidden('', 'type', 'int', true, true);
21: $this->addVariable(_("State Name"), 'name', 'text', true);
22: $this->addVariable(_("State Description"), 'description', 'text', true);
23: $this->addVariable(_("State Category"), 'category', 'enum', false, false, null, array($GLOBALS['whups_driver']->getCategories()));
24: }
25:
26: }