Beispiel #1
0
 /**
  * filling a view with data
  * @return void;
  */
 public function renderDefault()
 {
     $this->template->title = $this->title . _("service administration");
     $this->template->pacsName = $this->pacs->getName();
     $this->template->pacsStatus = $this->pacs->check();
     $this->template->dbName = $this->dbadmin->getName();
     $this->template->dbStatus = $this->dbadmin->check();
     $this->template->httpName = $this->httpadmin->getName();
     $this->template->httpStatus = $this->httpadmin->check();
     $this->template->sshName = $this->sshadmin->getName();
     $this->template->sshStatus = $this->sshadmin->check();
     $this->template->monitName = $this->monitadmin->getName();
     $this->template->monitStatus = $this->monitadmin->check();
     return;
 }