diff options
Diffstat (limited to 'application/modules/user/forms/Client.php')
| -rw-r--r-- | application/modules/user/forms/Client.php | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/application/modules/user/forms/Client.php b/application/modules/user/forms/Client.php index aa8d478..9814583 100644 --- a/application/modules/user/forms/Client.php +++ b/application/modules/user/forms/Client.php @@ -3,6 +3,17 @@ class user_Form_Client extends Zend_Form { + private $buttontext = 'Save'; + private $groups; + private $page; + + public function setButtontext($v){ + $this->buttontext = $v; + } + public function setPage($page){ + $this->page = $page; + } + public function init() { $this->setName("pool"); @@ -48,20 +59,6 @@ class user_Form_Client extends Zend_Form 'onclick' => 'self.location="/user/client/index/page/'.$this->page.'"' )); - $this->addElement('hidden','page', array( - 'value' => $this->page - )); } - private $buttontext = 'Save'; - private $groups; - function setButtontext($v){ - $this->buttontext = $v; - } - private $page; - function setPage($page){ - $this->page = $page; - } - - } |
