MODPATH/cache/classes/Kohana/Cache/File.php [ 151 ]
146 $lifetime = $data->fgets();
147
148 // If we're at the EOF at this point, corrupted!
149 if ($data->eof())
150 {
151 throw new Cache_Exception(__METHOD__.' corrupted cache file!');
152 }
153
154 $cache = '';
155
156 while ($data->eof() === FALSE)
-
APPPATH/classes/Model/User.php [ 8039 ] » Kohana_Cache_File->get(arguments)
0
string(12) "star_rating1"
1
bool FALSE
8034 ]; 8035 } 8036 8037 $memcache = Cache::instance('file'); 8038 8039 if (Cache::instance()->get('star_rating1', FALSE)) { 8040 8041 $rating = Cache::instance()->get('star_rating1'); 8042 } else { 8043 // SELECT r.*, u.*, SUM(r.rate) as tr, COUNT(r.rate) as cr FROM rating r INNER JOIN users u ON (u.id = r.uid) AND (u.user_type = '1') GROUP BY r.uid ORDER BY tr DESC 8044 // $rating = DB::query(Database::SELECT, "SELECT r.uid, ROUND(SUM(r.rate), 2) AS total FROM `rating` r INNER JOIN users u ON u.id = r.uid GROUP BY r.uid ORDER BY total DESC")
-
APPPATH/views/pages/show.php [ 111 ] » Model_User->buildStarsArr(arguments)
0
string(11) "s9171372733"
106 </div> 107 108 109 <div style="clear: both;"></div> 110 111 <?php $stars = Model::factory("User")->buildStarsArr($addr_info["address"]);?> 112 113 <style> 114 .user-num {font-size:18px; font-weight:bold;} 115 .inactive-star {opacity:0.3;} 116 .inactive-star:hover {opacity:0.5;}
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(75) "/var/www/www-root/data/www/uchportfolio.ru/application/views/pages/show.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(76) "/var/www/www-root/data/www/uchportfolio.ru/application/views//pages/show.php"
1
array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 }
-
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message.
-
APPPATH/views/layout.php [ 399 ] » Kohana_View->__toString()
394 <?=$left_column;?> 395 <!-- Enf Of Left column --> 396 397 <!-- Center column --> 398 <div class="<?=$main_center;?> portfolio_s" id="main_center"> 399 <?=$content;?> 400 </div> 401 <!-- End Of Center column --> 402 403 <!-- Right column --> 404 <?php if (isset($its_start)) { ?> <div class="stick-right-column"> <?php } ?>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(71) "/var/www/www-root/data/www/uchportfolio.ru/application/views/layout.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0
string(71) "/var/www/www-root/data/www/uchportfolio.ru/application/views/layout.php"
1
array(8) ( "content" => object View(2)
{ protected _file => string(76) "/var/www/www-root/data/www/uchportfolio.ru/application/views//pages/show.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"styles" => string(0) "" "scripts" => string(0) "" "left_column" => object View(2){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }{ protected _file => string(84) "/var/www/www-root/data/www/uchportfolio.ru/application/views/_left_column_global.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"right_column" => object View(2){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }{ protected _file => string(91) "/var/www/www-root/data/www/uchportfolio.ru/application/views/_right_column_pages_global.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"main_center" => string(18) "main_center_create" "curr_path" => string(10) "Show/index" "title" => string(191) "* Thank you for visit! Cпасибо! - Валентина Федоровна Шайдурова | Педагогическое Интернет-сообщество "УчПортфолио"" ){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 }
-
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Show(5)
{ private _salt => string(3) "Yif" public template => object View(2)
{ protected _file => string(71) "/var/www/www-root/data/www/uchportfolio.ru/application/views/layout.php" protected _data => array(8) ( "content" => object View(2)
public auto_render => bool TRUE public request => object Request(19){ protected _file => string(76) "/var/www/www-root/data/www/uchportfolio.ru/application/views//pages/show.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"styles" => string(0) "" "scripts" => string(0) "" "left_column" => object View(2){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }{ protected _file => string(84) "/var/www/www-root/data/www/uchportfolio.ru/application/views/_left_column_global.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"right_column" => object View(2){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }{ protected _file => string(91) "/var/www/www-root/data/www/uchportfolio.ru/application/views/_right_column_pages_global.php" protected _data => array(11) ( "is_user_online" => bool FALSE "addr_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "addr_uid" => string(4) "4456" "current_page" => string(5) "13359" "page_access_str" => string(0) "" "page_data" => array(6) ( "id" => string(5) "13359" "page_title" => string(38) "* Thank you for visit! Cпасибо!" "page_access" => string(1) "1" "page_uid" => string(4) "4456" "page_pos" => string(2) "26" "page_parent" => string(2) "-1" ) "user_info" => array(31) ( "id" => string(4) "4456" "login" => string(12) "valent.spb23" "password" => string(32) "29d53a5e692ded513e5f369c5ea630f0" "email" => string(18) "valent.spb@mail.ru" "first_name" => string(37) "Валентина Федоровна" "last_name" => string(18) "Шайдурова" "user_type" => string(1) "1" "user_role" => string(1) "1" "address" => string(11) "s9171372733" "photo" => string(16) "te0qGqrcc02r.jpg" "reg_date" => string(19) "2014-06-11 21:11:28" "last_visit" => string(19) "2019-11-01 22:07:58" "password_requested" => string(1) "0" "password_requested_hash" => string(0) "" "country" => string(4) "3159" "region" => string(4) "4925" "city" => string(4) "4962" "other_city" => string(12) "valent.spb23" "school" => string(40) "ГБОУ \"ШКОЛА №106\"" "access_type" => string(1) "1" "access_password" => string(0) "" "views" => string(7) "1579253" "diskspace" => string(8) "97085112" "subscribe" => string(1) "1" "subject_selected" => string(1) "1" "widgets_enabled" => string(1) "0" "stars_enabled" => string(1) "1" "plagiat_moder" => string(1) "0" "gift_sent" => string(1) "0" "rp_banner" => string(1) "0" "telegram_popup_show" => string(1) "0" ) "iam" => string(2) "-1" "blocked" => bool FALSE "moder" => bool FALSE "session" => object Session_Native(5)
"main_center" => string(18) "main_center_create" "curr_path" => string(10) "Show/index" "title" => string(191) "* Thank you for visit! Cпасибо! - Валентина Федоровна Шайдурова | Педагогическое Интернет-сообщество "УчПортфолио"" ) }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(4) "<id>" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "show" "action" => string(5) "index" ) protected _route_regex => string(26) "#^(?P<id>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Show" protected _action => string(5) "index" protected _uri => string(11) "s9171372733" protected _external => bool FALSE protected _params => array(1) ( "id" => string(11) "s9171372733" ) protected _get => array(2) ( "comment_page" => string(3) "426" "page" => string(5) "13359" ) protected _post => array(0) protected _cookies => array(1) ( "language" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(4) "<id>" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "show" "action" => string(5) "index" ) protected _route_regex => string(26) "#^(?P<id>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Show" protected _action => string(5) "index" protected _uri => string(11) "s9171372733" protected _external => bool FALSE protected _params => array(1) ( "id" => string(11) "s9171372733" ) protected _get => array(2) ( "comment_page" => string(3) "426" "page" => string(5) "13359" ) protected _post => array(0) protected _cookies => array(1) ( "language" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(4) "<id>" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "show" "action" => string(5) "index" ) protected _route_regex => string(26) "#^(?P<id>[^/.,;?\n]++)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Show" protected _action => string(5) "index" protected _uri => string(11) "s9171372733" protected _external => bool FALSE protected _params => array(1) ( "id" => string(11) "s9171372733" ) protected _get => array(2) ( "comment_page" => string(3) "426" "page" => string(5) "13359" ) protected _post => array(0) protected _cookies => array(1) ( "language" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 123 ] » Kohana_Request->execute()
118 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 119 * If no source is specified, the URI will be automatically detected. 120 */ 121 122 echo Request::factory(TRUE, array(), FALSE) 123 ->execute() 124 ->send_headers(TRUE) 125 ->body(); 126 }