app=&$app; $id = $this->app->Secure->GetGET("id"); if(is_numeric($id)) $this->app->Tpl->Set('SUBHEADING',": ". $this->app->DB->Select("SELECT nummer FROM artikel WHERE id=$id LIMIT 1")); $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","NetzwerkCreate"); $this->app->ActionHandler("edit","NetzwerkEdit"); $this->app->ActionHandler("list","NetzwerkList"); $this->app->ActionHandlerListen($app); } function NetzwerkCreate() { $this->app->Tpl->Add('TABS', "Zurück zur Übersicht"); } function NetzwerkMenu() { $id = $this->app->Secure->GetGET("id"); $this->app->Tpl->Add('TABS',"
  • Netzwerk

  • "); $this->app->Tpl->Add('TABS',"
  • Station registrieren
  • "); $this->app->Tpl->Add('TABS',"
  • Übersicht
  • "); } function NetzwerkList() { $this->NetzwerkMenu(); $this->app->Tpl->Set('TABTEXT',"Übersicht"); $this->app->Tpl->Parse('TAB1',"netzwerk.tpl"); $this->app->Tpl->Parse('PAGE',"tabview.tpl"); } function NetzwerkEdit() { $this->NetzwerkMenu(); $this->app->Tpl->Set('TABLE_ADRESSE_KONTAKTHISTORIE',"TDB"); $this->app->Tpl->Set('TABLE_ADRESSE_ROLLEN',"TDB"); $this->app->Tpl->Set('TABLE_ADRESSE_USTID',"TDB"); } } ?>