summaryrefslogtreecommitdiffstats
path: root/application/modules/user/forms/Client.php
diff options
context:
space:
mode:
authormichael pereira2011-04-01 16:51:07 +0200
committermichael pereira2011-04-01 16:51:07 +0200
commit0576a9832661cfbfb29e1d59b72f092740388fa7 (patch)
tree2cbd79177900de8b8ede455156c2e13a20c94697 /application/modules/user/forms/Client.php
parentBootmenu & BootOs Controller (diff)
parentPagination in ettlichen Controllern + aufgeräumt (diff)
downloadpbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.tar.gz
pbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.tar.xz
pbs2-0576a9832661cfbfb29e1d59b72f092740388fa7.zip
merge
Diffstat (limited to 'application/modules/user/forms/Client.php')
-rw-r--r--application/modules/user/forms/Client.php25
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;
- }
-
-
}