MODPATH/database/classes/Kohana/Database/Result/Cached.php [ 13 ]
8 * @copyright (c) 2009 Kohana Team
9 * @license http://kohanaphp.com/license
10 */
11 class Kohana_Database_Result_Cached extends Database_Result {
12
13 public function __construct(array $result, $sql, $as_object = NULL)
14 {
15 parent::__construct($result, $sql, $as_object);
16
17 // Find the number of rows in the result
18 $this->_total_rows = count($result);
-
MODPATH/database/classes/Kohana/Database/Result/Cached.php [ 13 ] » Kohana_Core::error_handler(arguments)
0
integer 4096
1
string(237) "Argument 1 passed to Kohana_Database_Result_Cached::__construct() must be of the type array, boolean given, called in /srv/http/ …"
2
string(103) "/srv/http/virtualhosts/kiparis-crimea.ru/www/modules/database/classes/Kohana/Database/Result/Cached.php"
3
integer 13
4
array(0)
8 * @copyright (c) 2009 Kohana Team 9 * @license http://kohanaphp.com/license 10 */ 11 class Kohana_Database_Result_Cached extends Database_Result { 12 13 public function __construct(array $result, $sql, $as_object = NULL) 14 { 15 parent::__construct($result, $sql, $as_object); 16 17 // Find the number of rows in the result 18 $this->_total_rows = count($result);
-
MODPATH/database/classes/Kohana/Database/Query.php [ 246 ] » Kohana_Database_Result_Cached->__construct(arguments)
0
bool FALSE
1
string(516) "SELECT `category`.`id` AS `id`, `category`.`alias` AS `alias`, `category`.`name` AS `name`, `category`.`parent_category` AS `par …"
2
bool FALSE
3
array(0)
241 // Read the cache first to delete a possible hit with lifetime <= 0 242 if (($result = Kohana::cache($cache_key, NULL, $this->_lifetime)) !== NULL 243 AND ! $this->_force_execute) 244 { 245 // Return a cached result 246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params);
-
MODPATH/orm/classes/Kohana/ORM.php [ 1072 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "52dcb747c1956ed56c1c645ddaa57774faac76b1" protected _identifier => string(1) "`" public last_query => string(489) "SELECT `category`.`id` AS `id`, `category`.`alias` AS `alias`, `category`.`name` AS `name`, `category`.`parent_category` AS `par …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(7) "kiparis" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }1067 return $result; 1068 } 1069 else 1070 { 1071 // Load the result as an associative array 1072 $result = $this->_db_builder->as_assoc()->execute($this->_db); 1073 1074 $this->reset(); 1075 1076 if ($result->count() === 1) 1077 {
-
MODPATH/orm/classes/Kohana/ORM.php [ 979 ] » Kohana_ORM->_load_result(arguments)
0
bool FALSE
974 } 975 } 976 977 $this->_build(Database::SELECT); 978 979 return $this->_load_result(FALSE); 980 } 981 982 /** 983 * Finds multiple database rows and returns an iterator of the rows found. 984 *
-
APPPATH/classes/Model/Category.php [ 96 ] » Kohana_ORM->find()
91 * @param type $branch 92 * @return type 93 */ 94 public static function get_branch($category, $branch = array()) { 95 $category_column = is_numeric($category) ? 'id' : 'alias'; 96 $category = ORM::factory('Category')->where($category_column, '=', $category)->order_by('sort_order', 'DESC')->cached()->find(); 97 if ($category->loaded()) { 98 $branch[] = array( 99 'id' => $category->id, 100 'name' => $category->getFullName(), 101 'alias' => $category->alias,
-
APPPATH/classes/Model/Category.php [ 106 ] » Model_Category::get_branch(arguments)
0
string(3) "580"
1
array(1) ( 0 => array(3) ( "id" => string(3) "563" "name" => string(21) "Флеш-память" "alias" => string(23) "aksessuary/flesh-pamyat" ) )
101 'alias' => $category->alias, 102 ); 103 if ($category->parent_category == 0) { 104 return $branch; 105 } else { 106 return static::get_branch($category->parent_category, $branch); 107 } 108 } 109 } 110 111 /**
-
APPPATH/classes/Controller/Parts/Header.php [ 43 ] » Model_Category::get_branch(arguments)
0
string(23) "aksessuary/flesh-pamyat"
38 $this->template->cart_icon_counter = $cart_icon_counter; 39 40 41 if (!is_null($categoty) && $root_category && in_array(Route::name(Request::initial()->route()), ['catalog','compare'])) { 42 $branches = array(); 43 foreach (array_reverse(Model_Category::get_branch($categoty)) as $branch): 44 $branches[] = array('href' => URL::site(Route::get('catalog')->uri(array('category' => $branch['alias']))), 'name' => $branch['name']); 45 endforeach; 46 $this->template->breadcrumbs = Helper_HTML::generate_breadcrumbs($branches); 47 } 48 }
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Parts_Header->action_index()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Parts_Header(4)
{ public template => object View(2)
{ protected _file => string(79) "/srv/http/virtualhosts/kiparis-crimea.ru/www/application/views/parts/header.php" protected _data => array(2) ( "root_category" => object Model_Category(36)
public auto_render => bool TRUE public request => object Request(19){ public ids => array(0) public child_slice => NULL protected _has_many => array(2) ( "products" => array(4) ( "foreign_key" => string(11) "category_id" "through" => string(19) "products_categories" "model" => string(7) "Product" "far_key" => string(10) "product_id" ) "categories" => array(4) ( "foreign_key" => string(15) "parent_category" "through" => NULL "model" => string(8) "Category" "far_key" => string(2) "id" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(11) ( "id" => string(3) "100" "alias" => string(29) "noutbuki-kompyutery-programmy" "name" => string(58) "Ноутбуки, компьютеры, программы" "parent_category" => string(1) "0" "description" => string(2) """" "picture" => string(2) """" "picture_mini" => string(2) """" "is_b" => string(1) "0" "sort_order" => string(1) "0" "enabled" => string(1) "0" "total_products_count" => string(5) "25492" ) protected _changed => array(0) protected _original_values => array(11) ( "id" => string(3) "100" "alias" => string(29) "noutbuki-kompyutery-programmy" "name" => string(58) "Ноутбуки, компьютеры, программы" "parent_category" => string(1) "0" "description" => string(2) """" "picture" => string(2) """" "picture_mini" => string(2) """" "is_b" => string(1) "0" "sort_order" => string(1) "0" "enabled" => string(1) "0" "total_products_count" => string(5) "25492" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(11) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "alias" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(50) "Алиас для данной категории " "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(24) "Наименование" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "parent_category" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "parent_category" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(43) "Родительская категория" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => string(4) "'""'" "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(16) "Описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "picture" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "picture" "column_default" => string(2) """" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(42) "Картинка для категории" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "picture_mini" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "picture_mini" "column_default" => string(2) """" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(48) "Пиктограмма для категории" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_b" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "is_b" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(31) "Является брендом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort_order" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "sort_order" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "enabled" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "enabled" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "total_products_count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "total_products_count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(64) "Число продукции в данной категории" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "100" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"cart_icon_counter" => integer 0 ) }{ protected _connection_id => string(40) "52dcb747c1956ed56c1c645ddaa57774faac76b1" protected _identifier => string(1) "`" public last_query => string(489) "SELECT `category`.`id` AS `id`, `category`.`alias` AS `alias`, `category`.`name` AS `name`, `category`.`parent_category` AS `par …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(7) "kiparis" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(38) "parts(/<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(1) ( "directory" => string(5) "Parts" ) protected _route_regex => string(101) "#^parts(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Parts" protected _controller => string(6) "Header" protected _action => string(5) "index" protected _uri => string(12) "parts/header" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(38) "parts(/<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(1) ( "directory" => string(5) "Parts" ) protected _route_regex => string(101) "#^parts(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Parts" protected _controller => string(6) "Header" protected _action => string(5) "index" protected _uri => string(12) "parts/header" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 [ 997 ] » 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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(38) "parts(/<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(1) ( "directory" => string(5) "Parts" ) protected _route_regex => string(101) "#^parts(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Parts" protected _controller => string(6) "Header" protected _action => string(5) "index" protected _uri => string(12) "parts/header" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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) }
}992 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 993 ':uri' => $this->_uri, 994 )); 995 } 996 997 return $this->_client->execute($this); 998 } 999 1000 /** 1001 * Returns whether this request is the initial request Kohana received. 1002 * Can be used to test for sub requests.
-
APPPATH/classes/Controller/Base.php [ 26 ] » Kohana_Request->execute()
21 $this->template->client_role = Auth::instance()->logged_in('admin') ? 'admin' : 'client'; 22 $this->template->title = Model_Settings::loadSettingsByName('site_title', 'MAIN')->get('value'); 23 $this->template->sub_title = null; 24 $this->template->description = Model_Settings::loadSettingsByName('site_description', 'META')->get('value'); 25 $this->template->keywords = Model_Settings::loadSettingsByName('site_keywords', 'META')->get('value'); 26 $this->template->header = $this->request->factory('parts/header')->execute(); 27 $this->template->rellinks = null; 28 $this->template->content = null; 29 $this->template->footer = $this->request->factory('parts/footer')->execute(); 30 Media::factory()->add('/assets/AdminLTE/plugins/jQuery/jQuery-2.1.4.min.js', Media::CUSTOM, Media::JS); 31 }
-
APPPATH/classes/Controller/Public.php [ 6 ] » Controller_Base->before()
1 <?php defined('SYSPATH') or die('No direct script access.'); 2 3 class Controller_Public extends Controller_Base { 4 5 public function before() { 6 parent::before(); 7 Media::factory()->add('/assets/AdminLTE/plugins/jQuery/jQuery-2.1.4.min.js', Media::CUSTOM, Media::JS); 8 Media::factory()->add('/assets/AdminLTE/bootstrap/js/bootstrap.min.js', Media::CUSTOM, Media::JS); 9 Media::factory()->add('/assets/AdminLTE/plugins/inputmask/inputmask.js', Media::CUSTOM, Media::JS); 10 Media::factory()->add('/assets/AdminLTE/plugins/inputmask/jquery.inputmask.js', Media::CUSTOM, Media::JS); 11 Media::factory()->add('/assets/AdminLTE/plugins/inputmask/inputmask.numeric.extensions.js', Media::CUSTOM, Media::JS);
-
APPPATH/classes/Controller/Catalog.php [ 21 ] » Controller_Public->before()
16 private $ids; 17 public $params; 18 19 public function before() 20 { 21 parent::before(); 22 $this->params = Arr::extract(Request::current()->param(), array('category', 'filter', 'page')); 23 24 $category = ORM::factory('Category')->where('alias', '=', $this->params['category'])->find(); 25 if ($category->loaded()) { 26 $this->category = $category;
-
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Controller_Catalog->before()
64 * @return Response 65 */ 66 public function execute() 67 { 68 // Execute the "before action" method 69 $this->before(); 70 71 // Determine the action to use 72 $action = 'action_'.$this->request->action(); 73 74 // If the action doesn't exist, it's a 404
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Catalog(10)
{ public item_on_page => integer 7 public current_page => integer 0 public total_records => integer 0 private category => NULL private ids => NULL public params => NULL public template => object View(2)
{ protected _file => string(70) "/srv/http/virtualhosts/kiparis-crimea.ru/www/application/views/tpl.php" protected _data => array(6) ( "client_ip" => string(10) "172.18.0.1" "client_role" => string(6) "client" "title" => string(272) "Интернет-магазин Кипарис — цифровая техника и электроника, гаджеты и аксессуары в Крыму. Купить компьютерную технику в Феодосии …" "sub_title" => NULL "description" => string(0) "" "keywords" => string(91) "магазин компьютерной и бытовой техники, Феодосия" ) }
public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(52) "catalog(/<category>(/filter/<filter>)(/page:<page>))" protected _regex => array(3) ( "category" => string(15) "[a-zA-Z0-9\-/]+" "filter" => string(17) "[a-zA-Z0-9\-_=:]+" "page" => string(6) "[0-9]+" ) protected _defaults => array(5) ( "category" => NULL "filter" => string(0) "" "controller" => string(7) "Catalog" "action" => string(5) "Index" "page" => string(1) "1" ) protected _route_regex => string(117) "#^catalog(?:/(?P<category>[a-zA-Z0-9\-/]+)(?:/filter/(?P<filter>[a-zA-Z0-9\-_=:]+))?(?:/page:(?P<page>[0-9]+))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "Index" protected _uri => string(39) "catalog/aksessuary/flesh-pamyat/page:79" protected _external => bool FALSE protected _params => array(3) ( "category" => string(23) "aksessuary/flesh-pamyat" "filter" => string(0) "" "page" => string(2) "79" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(52) "catalog(/<category>(/filter/<filter>)(/page:<page>))" protected _regex => array(3) ( "category" => string(15) "[a-zA-Z0-9\-/]+" "filter" => string(17) "[a-zA-Z0-9\-_=:]+" "page" => string(6) "[0-9]+" ) protected _defaults => array(5) ( "category" => NULL "filter" => string(0) "" "controller" => string(7) "Catalog" "action" => string(5) "Index" "page" => string(1) "1" ) protected _route_regex => string(117) "#^catalog(?:/(?P<category>[a-zA-Z0-9\-/]+)(?:/filter/(?P<filter>[a-zA-Z0-9\-_=:]+))?(?:/page:(?P<page>[0-9]+))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "Index" protected _uri => string(39) "catalog/aksessuary/flesh-pamyat/page:79" protected _external => bool FALSE protected _params => array(3) ( "category" => string(23) "aksessuary/flesh-pamyat" "filter" => string(0) "" "page" => string(2) "79" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 [ 997 ] » 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 FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(52) "catalog(/<category>(/filter/<filter>)(/page:<page>))" protected _regex => array(3) ( "category" => string(15) "[a-zA-Z0-9\-/]+" "filter" => string(17) "[a-zA-Z0-9\-_=:]+" "page" => string(6) "[0-9]+" ) protected _defaults => array(5) ( "category" => NULL "filter" => string(0) "" "controller" => string(7) "Catalog" "action" => string(5) "Index" "page" => string(1) "1" ) protected _route_regex => string(117) "#^catalog(?:/(?P<category>[a-zA-Z0-9\-/]+)(?:/filter/(?P<filter>[a-zA-Z0-9\-_=:]+))?(?:/page:(?P<page>[0-9]+))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "Index" protected _uri => string(39) "catalog/aksessuary/flesh-pamyat/page:79" protected _external => bool FALSE protected _params => array(3) ( "category" => string(23) "aksessuary/flesh-pamyat" "filter" => string(0) "" "page" => string(2) "79" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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) }
}992 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 993 ':uri' => $this->_uri, 994 )); 995 } 996 997 return $this->_client->execute($this); 998 } 999 1000 /** 1001 * Returns whether this request is the initial request Kohana received. 1002 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 118 ] » Kohana_Request->execute()
113 /** 114 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 115 * If no source is specified, the URI will be automatically detected. 116 */ 117 echo Request::factory(TRUE, array(), FALSE) 118 ->execute() 119 ->send_headers(TRUE) 120 ->body(); 121 }