コード例 #1
0
ファイル: Admin.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     if (!$this->auth->logged_in('admin')) {
         $this->redirect(403);
     }
     $this->template->page_title = 'Administration';
     $this->template->content = View::factory('admin/index');
     $this->template->content->view = '<h4>Administration</h4>';
 }
コード例 #2
0
ファイル: Privacy.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = 'Datenschutz';
 }
コード例 #3
0
ファイル: Imprint.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = 'Impressum';
 }
コード例 #4
0
ファイル: Places.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = 'Places';
 }
コード例 #5
0
ファイル: Social.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = '<a href="/social">Sozial</a>';
 }
コード例 #6
0
ファイル: Comment.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
 }
コード例 #7
0
ファイル: User.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     require_once VENPATH . 'phpseclib/Crypt/RSA.php';
 }
コード例 #8
0
ファイル: Contact.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = 'Kontakt';
 }
コード例 #9
0
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = '<a href="/dashboard">Dashboard</a>';
 }
コード例 #10
0
ファイル: Diary.php プロジェクト: Nyaan/meintagebuchonline
 public function before()
 {
     parent::before();
     $this->template->breadcrumbs[] = '<a href="/diary">Tagebuch</a>';
     require_once VENPATH . 'phpseclib/Crypt/RSA.php';
 }