コード例 #1
0
ファイル: Song.php プロジェクト: Oluwafemikorede/gbedu
 public function __construct()
 {
     parent::__construct();
     Auth::block();
     $this->albumModel = new Album();
     $this->status_model = new Status();
     $this->mediaModel = new Media();
     $this->categoryModel = new Category();
 }
コード例 #2
0
ファイル: Category.php プロジェクト: Oluwafemikorede/gbedu
 /**
  * call the parent construct
  */
 public function __construct()
 {
     Auth::block();
     parent::__construct();
 }
コード例 #3
0
ファイル: Post.php プロジェクト: Oluwafemikorede/gbedu
 /**
  * call the parent construct
  */
 public function __construct()
 {
     Auth::block();
     parent::__construct();
     // $this->language->load('welcome');
 }