protected function build_content(rsContainer $Container) { parent::build_content($Container); if ($this->Benutzer->auth()) { $this->mailsdb = new rsMysql('mails'); $this->list_mymails($Container); } }
protected function build_content(rsContainer $Container) { parent::build_content($Container); if ($this->Benutzer->auth()) { $this->filesdb = new rsMysql('files'); $this->build_uploadform($Container); $this->upload_files($Container); if (substr($_POST['button'], 0, 1) == 'L') { $this->delete_files($Container); } $this->list_myfiles($Container); } }
protected function build_content(rsContainer $Container) { $this->userdb = new rsMysql('user'); parent::build_content($Container); if (!$this->Benutzer->auth()) { if (isset($_GET['c'])) { $this->process_validation($Container); } elseif (isset($_POST['email'])) { $this->process_registration($Container); } else { $this->build_form($Container); } } }
protected function build_content(rsContainer $Container) { if (!$this->Benutzer->auth()) { parent::build_content($Container); } else { $this->groupsdb = new rsMysql('groups'); $this->groupmembersdb = new rsMysql('groupmember'); $this->userdb = new rsMysql('user'); $this->filesdb = new rsMysql('files'); $this->build_groupselect($Container); $this->build_content_header($Container); if (isset($_GET['g'])) { $this->build_groupdetails(intval($_GET['g']), $Container); } } }
protected function build_content(rsContainer $Container) { parent::build_content($Container); $this->build_meinclara($Container); return $Container; }