diff options
| author | Simon | 2011-04-01 16:34:13 +0200 |
|---|---|---|
| committer | Simon | 2011-04-01 16:34:13 +0200 |
| commit | cd230aefd78797219cb3814cda29fc8178520a22 (patch) | |
| tree | 9e460a6493323e35a98fd9921be680c70a3c541d /application/modules/user/forms/Client.php | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-cd230aefd78797219cb3814cda29fc8178520a22.tar.gz pbs2-cd230aefd78797219cb3814cda29fc8178520a22.tar.xz pbs2-cd230aefd78797219cb3814cda29fc8178520a22.zip | |
Pagination in ettlichen Controllern + aufgeräumt
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; - } - - } |
