コード例 #1
0
ファイル: cart.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     // Выводим в шаблон
     $this->template->block_left = null;
     $this->template->block_right = null;
 }
コード例 #2
0
ファイル: order.php プロジェクト: raku/mykohana
 public function before()
 {
     parent::before();
     if (!Auth::instance()->logged_in()) {
         $this->request->redirect('account');
     }
 }
コード例 #3
0
ファイル: View.php プロジェクト: ruslankus/ligneus
 public function before()
 {
     parent::before();
     $this->template->styles[] = 'media/css/lightbox.css';
     $this->template->scripts[] = 'media/js/lightbox.js';
     $this->template->scripts[] = 'media/js/images.js';
 }
コード例 #4
0
ファイル: account.php プロジェクト: raku/mykohana
 public function before()
 {
     parent::before();
     if (!$this->auth->logged_in()) {
         $this->request->redirect('login');
     }
 }
コード例 #5
0
ファイル: Categories.php プロジェクト: ruslankus/ligneus
 public function before()
 {
     parent::before();
     $this->template->styles[] = 'media/css/lightbox.css';
     $this->template->scripts[] = 'media/js/plugin_cat_wondows.js';
     $this->template->scripts[] = 'media/js/lightbox.js';
 }
コード例 #6
0
ファイル: news.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     $menu = Request::factory('widgets/menu')->execute();
     $bay = Request::factory('widgets/mybay')->execute();
     $this->template->block_left = array($menu);
     $this->template->block_headerRight = array($bay);
 }
コード例 #7
0
ファイル: bay.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     //получить виджет
     $menu = Request::factory('widgets/menu')->execute();
     $top = Request::factory('widgets/topproducts')->execute();
     //вывести в шаблон
     $this->template->block_left = array($menu);
     $this->template->block_right = array($top);
 }
コード例 #8
0
ファイル: main.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     //виджеты
     $menu = Request::factory('widgets/menu')->execute();
     $topproducts = Request::factory('widgets/topproducts')->execute();
     $into = Request::factory('widgets/Into')->execute();
     $mybay = Request::factory('widgets/mybay')->execute();
     $news = Request::factory('widgets/news')->execute();
     //вывод в шаблон
     $this->template->block_headerRight = array($mybay);
     $this->template->block_left = array($menu);
     $this->template->block_right = array($into, $topproducts, $news);
 }
コード例 #9
0
ファイル: articles.php プロジェクト: raku/mykohana
 public function before()
 {
     parent::before();
     //Вывод в шаблон
     $this->template->page_title = 'Статии';
 }
コード例 #10
0
ファイル: cart.php プロジェクト: raku/mykohana
 public function before()
 {
     parent::before();
 }
コード例 #11
0
ファイル: user.php プロジェクト: asanoturna/moni
 public function before()
 {
     parent::before();
     Auth::instance()->logout();
 }
コード例 #12
0
ファイル: auto.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     $menu = Request::factory('/widgets/menu')->execute();
     $this->template->block_left = array($menu);
 }
コード例 #13
0
ファイル: manufactures.php プロジェクト: raku/mykohana
 public function before()
 {
     parent::before();
     //Вывод в шаблон
     $this->template->page_title = 'Производительи';
 }
コード例 #14
0
ファイル: payment.php プロジェクト: boltogriz/kohana
 public function before()
 {
     parent::before();
     $config = Kohana::$config->load('payments.robokassa');
     $this->robokassa = Robokassa::factory($config['login'], $config['password1'], $config['password2']);
 }