From 83767be80c29e3d3ca99f4a7d2eaab97f8256d1b Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Wed, 11 Jan 2012 15:22:32 +0100 Subject: remove unused stuff --- application/modules/dev/forms/PoolClient.php | 40 ---------------------------- 1 file changed, 40 deletions(-) delete mode 100644 application/modules/dev/forms/PoolClient.php (limited to 'application/modules/dev/forms/PoolClient.php') diff --git a/application/modules/dev/forms/PoolClient.php b/application/modules/dev/forms/PoolClient.php deleted file mode 100644 index 0a87280..0000000 --- a/application/modules/dev/forms/PoolClient.php +++ /dev/null @@ -1,40 +0,0 @@ -setName("addClientToPool"); - $this->setMethod('post'); - - $clientfield = $this->createElement('select', 'clientID'); - $clientfield ->setLabel('Client:'); - print_a($this->clients); - foreach($this->clients as $c) { - $clientfield->addMultiOption($c['clientID'], $c['macadress']." - ".$c['hardwarehash']); - } - $this->addElement($clientfield); - - $this->addElement('submit', 'add', array( - 'required' => false, - 'ignore' => true, - 'label' => 'Save', - )); - } - public function setClients($clients) { - $this->clients = $clients; - return $this; - } - -} - -- cgit v1.2.3-55-g7522