public function getHTML($Action = "") { switch ($Action) { case "showAddNewDevice": /* $device = new device(); $device->setID(0); $device->setName("iFrame"); $device->setTyp("iFrame"); $device->setVersion("V 0.0.1"); $device->setIP(""); $device->setPort(""); $device->setStatus(""); return $device->getHTML("showAddNewDevice"); */ return parent::getHTML("showAddNewDevice"); case "showEditDevice": $device = new device(); $device->setID($this->getID()); $device->setName($this->getName()); $device->setTyp($this->getTyp()); $device->setVersion($this->getVersion()); $device->setIP($this->getIP()); $device->setPort($this->getPort()); $device->setStatus($this->getStatus()); return $device->getHTML("showEditDevice"); default: $device = new device(); $device->setID($this->getID()); $device->setName($this->getName()); $device->setTyp($this->getTyp()); $device->setVersion($this->getVersion()); $device->setIP($this->getIP()); $device->setPort($this->getPort()); $device->setStatus($this->getStatus()); return $device->getHTML(); } }
public function getHTML($Action = "") { switch ($Action) { case "showAddNewDevice": //$device = new device(); /*$this->setID(0); $device->setName("USB4all-SocketServer"); $device->setTyp("USB4all-SocketServer"); $device->setVersion("V 0.0.1"); $device->setIP(""); $device->setPort(3500); $device->setStatus(""); //return $device->getHTML("showAddNewDevice");*/ //$Output=" "; return parent::getHTML("showAddNewDevice"); case "showEditDevice": $device = new device(); $device->setID($this->getID()); $device->setName($this->getName()); $device->setTyp($this->getTyp()); $device->setVersion($this->getVersion()); $device->setIP($this->getIP()); $device->setPort($this->getPort()); $device->setStatus($this->getStatus()); return $device->getHTML("showEditDevice"); default: $device = new device(); $device->setID($this->getID()); $device->setName($this->getName()); $device->setTyp($this->getTyp()); $device->setVersion($this->getVersion()); $device->setIP($this->getIP()); $device->setPort($this->getPort()); $device->setStatus($this->getStatus()); return $device->getHTML(); } }