コード例 #1
0
ファイル: library.php プロジェクト: rrgarcia-tiempodev/lendr
 function __construct()
 {
     parent::__construct();
     $app = JFactory::getApplication();
     $this->_library_id = $app->input->get('library_id', null);
     $this->_user_id = $app->input->get('user_id', JFactory::getUser()->id);
 }
コード例 #2
0
ファイル: profile.php プロジェクト: rrgarcia-tiempodev/lendr
 function __construct()
 {
     $app = JFactory::getApplication();
     //If no User ID is set to current logged in user
     $this->_user_id = $app->input->get('profile_id', JFactory::getUser()->id);
     parent::__construct();
 }
コード例 #3
0
ファイル: book.php プロジェクト: valarmoghulis/php
 function __construct()
 {
     parent::__construct();
 }
コード例 #4
0
ファイル: wishlist.php プロジェクト: rrgarcia-tiempodev/lendr
 function __construct()
 {
     $app = JFactory::getApplication();
     $this->_user_id = isset($this->_user_id) ? $this->_user_id : $app->input->get('profile_id');
     parent::__construct();
 }
コード例 #5
0
ファイル: book.php プロジェクト: rrgarcia-tiempodev/lendr
 function __construct()
 {
     $app = JFactory::getApplication();
     $this->_book_id = $app->input->get('id', null);
     parent::__construct();
 }