app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("list","PinwandList"); $this->app->ActionHandler("edit","PinwandEdit"); $this->app->ActionHandler("create","PinwandCreate"); $this->app->ActionHandler("delete","PinwandDelete"); $this->app->DefaultActionHandler("list"); $this->app->ActionHandlerListen($app); } function PinwandList() { $this->app->erp->MenuEintrag("index.php?module=pinwand&action=list","Übersicht"); $this->app->erp->MenuEintrag("index.php?module=pinwand&action=create","Neue Pinnwand"); $this->app->YUI->TableSearch('PAGE',"pinwand_list"); $this->app->BuildNavigation=false; } function PinwandDelete() { $id = $this->app->Secure->GetGET("id"); $check_user = $this->app->DB->Select("SELECT user FROM pinwand WHERE id='$id' LIMIT 1"); if($check_user==$this->app->User->GetID() || $this->app->User->GetType()=="admin") { $this->app->DB->Delete("DELETE FROM pinwand_user WHERE pinwand='$id'"); $this->app->DB->Delete("DELETE FROM aufgabe WHERE pinwand_id='$id'"); $this->app->DB->Delete("DELETE FROM pinwand WHERE id='$id'"); $msg = $this->app->erp->base64_url_encode("
Die Pinnwand inkl. der Aufgaben wurde entfernt!
"); header("Location: index.php?module=pinwand&action=list&msg=$msg"); exit; } } function PinwandEdit() { $id = $this->app->Secure->GetGET("id"); $speichern = $this->app->Secure->GetPOST("speichern"); $name = $this->app->Secure->GetPOST("name"); $personen = $this->app->Secure->GetPOST("personen"); $this->app->BuildNavigation=false; $this->app->erp->MenuEintrag("index.php?module=pinwand&action=list","Zurück zur Übersicht"); $this->app->erp->MenuEintrag("index.php?module=pinwand&action=edit","Details"); if($id > 0 && $speichern!="" && $name !="") { $this->app->DB->Delete("DELETE FROM pinwand_user WHERE pinwand='$id'"); for($i=0;$i<(!empty($personen)?count($personen):0);$i++) { $this->app->DB->Insert("INSERT INTO pinwand_user (id,pinwand,user) VALUES ('','$id','".$personen[$i]."')"); } $this->app->DB->Update("UPDATE pinwand SET name='$name' WHERE id='$id' LIMIT 1"); } $user = $this->app->User->GetID(); $users = $this->app->DB->SelectArr("SELECT u.id, a.name as description FROM user u LEFT JOIN adresse a ON a.id=u.adresse WHERE u.activ='1' AND a.geloescht=0 ORDER BY a.name"); $permissions = $this->app->DB->SelectArr("SELECT DISTINCT pu.user FROM pinwand_user pu WHERE pu.pinwand='$id'"); for($i=0;$i<(!empty($permissions)?count($permissions):0);$i++) { $check_permissions[] = $permissions[$i]['user']; } for($i=0; $i<(!empty($users)?count($users):0);$i++){ $select = (($user==$users[$i]['id']) || in_array($users[$i]['id'],$check_permissions) ? "checked" : ""); $user_out .= "{$users[$i]['description']}
"; } $this->app->Tpl->Set('PERSONEN', $user_out); $name = $this->app->DB->Select("SELECT name FROM pinwand WHERE id='$id' LIMIT 1"); $this->app->Tpl->Set('NAME', $name); $this->app->Tpl->Parse('PAGE',"pinwand_edit.tpl"); } } ?>