Guest User

Untitled

a guest
May 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. function settings ()
  2. {
  3. if (!$this->ctb->checkRights(2)) {
  4. $this->ctb->showRightsInfo();
  5. }
  6. if ($this->ctb->checkRights(4)) {
  7. $this->ctb->tpl->assign("STAMMDATENSTYLE", "");
  8. $this->ctb->tpl->assign("ADMINSTYLE", "");
  9. }
  10. if ($this->ctb->checkRights(3)) {
  11. $this->ctb->tpl->assign("STAMMDATENSTYLE", "");
  12. $this->ctb->tpl->assign("ADMINSTYLE", "display: none;");
  13. } else {
  14. $this->ctb->tpl->assign("STAMMDATENSTYLE", "display: none;");
  15. $this->ctb->tpl->assign("ADMINSTYLE", "display: none;");
  16. }
  17. $this->ctb->tpl->assign("PAGETITLE", "Einstellungen");
  18. $this->ctb->tpl->parse("AUSSCHUSSMAINPAGE", "ausschuss_settings");
  19. $this->buildPage("settings");
  20.  
  21. <div class="panel panel-default" style="{STAMMDATENSTYLE}">
  22. (....)
  23.  
  24.  
  25. <div class="panel panel-default" style="{ADMINSTYLE}">
  26. (....)
Add Comment
Please, Sign In to add comment