MODPATH/database/classes/Kohana/Database/MySQL.php [ 67 ]
62 catch (Exception $e)
63 {
64 // No connection exists
65 $this->_connection = NULL;
66
67 throw new Database_Exception(':error',
68 array(':error' => $e->getMessage()),
69 $e->getCode());
70 }
71
72 // \xFF is a better delimiter, but the PHP driver uses underscore
-
MODPATH/database/classes/Kohana/Database/MySQL.php [ 171 ] » Kohana_Database_MySQL->connect()
166 } 167 168 public function query($type, $sql, $as_object = FALSE, array $params = NULL) 169 { 170 // Make sure the database is connected 171 $this->_connection or $this->connect(); 172 173 if (Kohana::$profiling) 174 { 175 // Benchmark this query for the current instance 176 $benchmark = Profiler::start("Database ({$this->_instance})", $sql); -
MODPATH/database/classes/Kohana/Database/MySQL.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(29) "SHOW FULL COLUMNS FROM `tree`"
2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/Kohana/ORM.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(4) "tree"
1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/Kohana/ORM.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/Kohana/ORM.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
MODPATH/orm/classes/Kohana/ORM.php [ 254 ] » Kohana_ORM->_initialize()
249 * 250 * @param mixed $id Parameter for find or object to load 251 */ 252 public function __construct($id = NULL) 253 { 254 $this->_initialize(); 255 256 if ($id !== NULL) 257 { 258 if (is_array($id)) 259 { -
MODPATH/orm-mptt/classes/Kohana/Orm/Mptt.php [ 61 ] » Kohana_ORM->__construct(arguments)
0NULL
56 if ( ! isset($this->_sorting)) 57 { 58 $this->_sorting = array($this->left_column => 'ASC'); 59 } 60 61 parent::__construct($id); 62 } 63 64 /** 65 * Checks if the current node has any children. 66 * -
MODPATH/orm/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM_MPTT->__construct(arguments)
0NULL
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
APPPATH/classes/Controller/Page/Wmenu.php [ 27 ] » Kohana_ORM::factory(arguments)
0string(4) "tree"
22 ->bind("tree", $categories_menu) 23 ); 24 } 25 26 public function action_get_page_submenu(){ 27 $page = ORM::factory('tree') 28 ->where('link', '=', $this->path[0]) 29 ->find() 30 ->as_array(); 31 $tree = ORM::factory('tree') 32 ->where('parent_id', '=', $page['id_tree']) -
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Page_Wmenu->action_get_page_submenu()
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)
0object Controller_Page_Wmenu(6)
{ public path => array(5) ( 0 => string(5) "sport" 1 => string(13) "dordoi-dinamo" 2 => string(21) "контактная-информация" 3 => string(4) "feed" 4 => string(0) "" ) public user => object Auth_Base(2){ protected _session => object Session_Native(5)public flag => bool FALSE public lang => string(2) "ru" public request => object Request(19){ protected _name => string(7) "session" protected _lifetime => integer 120900 protected _encrypted => bool FALSE protected _data => array(1) ( "last_active" => integer 1699106447 ) protected _destroyed => bool FALSE }protected _config => object Config_Group(7){ public driver => string(4) "Base" public hash_method => string(6) "sha256" public hash_key => string(28) "fghrtbhdnufjm7467fhfnvj47585" public lifetime => integer 1209600 public session_type => string(6) "native" public session_key => string(9) "auth_user" public users => array(0) }}{ 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(56) "c/<directory>/<controller>/<action>(/<p1>(/<p2>(/<p3>)))" protected _regex => array(0) protected _defaults => array(2) ( "action" => string(5) "index" "host" => bool FALSE ) protected _route_regex => string(167) "#^c/(?P<directory>[^/.,;?\n]++)/(?P<controller>[^/.,;?\n]++)/(?P<action>[^/.,;?\n]++)(?:/(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\ …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(5) "Wmenu" protected _action => string(16) "get_page_submenu" protected _uri => string(29) "c/page/wmenu/get_page_submenu" protected _external => bool FALSE protected _params => array(1) ( "host" => bool FALSE ) 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)
0object 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(56) "c/<directory>/<controller>/<action>(/<p1>(/<p2>(/<p3>)))" protected _regex => array(0) protected _defaults => array(2) ( "action" => string(5) "index" "host" => bool FALSE ) protected _route_regex => string(167) "#^c/(?P<directory>[^/.,;?\n]++)/(?P<controller>[^/.,;?\n]++)/(?P<action>[^/.,;?\n]++)(?:/(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\ …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(5) "Wmenu" protected _action => string(16) "get_page_submenu" protected _uri => string(29) "c/page/wmenu/get_page_submenu" protected _external => bool FALSE protected _params => array(1) ( "host" => bool FALSE ) 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) }}1object 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)
0object 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(56) "c/<directory>/<controller>/<action>(/<p1>(/<p2>(/<p3>)))" protected _regex => array(0) protected _defaults => array(2) ( "action" => string(5) "index" "host" => bool FALSE ) protected _route_regex => string(167) "#^c/(?P<directory>[^/.,;?\n]++)/(?P<controller>[^/.,;?\n]++)/(?P<action>[^/.,;?\n]++)(?:/(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\ …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(5) "Wmenu" protected _action => string(16) "get_page_submenu" protected _uri => string(29) "c/page/wmenu/get_page_submenu" protected _external => bool FALSE protected _params => array(1) ( "host" => bool FALSE ) 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) }}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. -
APPPATH/classes/Controller/TBase.php [ 230 ] » Kohana_Request->execute()
225 foreach ($blocks as $block){ 226 if (is_a($block, "View")){ 227 $this->template->{$keyb} .= $block; 228 } 229 else{ 230 $this->template->{$keyb} .= Request::factory($block)->execute(); 231 } 232 } 233 } 234 } 235 parent::after(); -
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_TBase->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)
0object Controller_Page_Page(11)
{ public template => object View(2){ protected _file => string(84) "/var/www/dordoi/data/www/www.dordoi.kg/application/views/v_base_two_l.php" protected _data => array(13) ( "styles" => array(5) ( 0 => string(42) "media/libs/bootstrap_new/css/bootstrap.css" 1 => string(53) "media/libs/bootstrap_new/css/bootstrap-responsive.css" 2 => string(39) "media/libs/bxslider/jquery.bxslider.css" 3 => string(34) "media/libs/highslide/highslide.css" 4 => string(19) "media/css/style.css" ) "title" => string(0) "" "keywords" => string(0) "" "description" => string(0) "" "path" => array(5) ( 0 => string(5) "sport" 1 => string(13) "dordoi-dinamo" 2 => string(21) "контактная-информация" 3 => string(4) "feed" 4 => string(0) "" ) "lang" => string(2) "ru" "header" => object Response(5)public user => object Auth_Base(2){ protected _status => integer 500 protected _header => object HTTP_Header(1)"breadcrumbs" => object Response(5){ public content-type => string(24) "text/html; charset=utf-8" }protected _body => string(102757) "<style type="text/css"> #kohana_error { background: #ddd; font-size: 1em; font-family:sans-serif; text-align: left; color: #111 …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 500 protected _header => object HTTP_Header(1)"left" => NULL "center" => NULL "right" => NULL "slider" => object Response(5){ public content-type => string(24) "text/html; charset=utf-8" }protected _body => string(104039) "<style type="text/css"> #kohana_error { background: #ddd; font-size: 1em; font-family:sans-serif; text-align: left; color: #111 …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 500 protected _header => object HTTP_Header(1)"footer" => object Response(5){ public content-type => string(24) "text/html; charset=utf-8" }protected _body => string(103841) "<style type="text/css"> #kohana_error { background: #ddd; font-size: 1em; font-family:sans-serif; text-align: left; color: #111 …" protected _cookies => array(0) protected _protocol => NULL }{ protected _status => integer 500 protected _header => object HTTP_Header(1)) }{ public content-type => string(24) "text/html; charset=utf-8" }protected _body => string(106585) "<style type="text/css"> #kohana_error { background: #ddd; font-size: 1em; font-family:sans-serif; text-align: left; color: #111 …" protected _cookies => array(0) protected _protocol => NULL }{ protected _session => object Session_Native(5)public flag => bool FALSE protected data => array(0) public path => array(5) ( 0 => string(5) "sport" 1 => string(13) "dordoi-dinamo" 2 => string(21) "контактная-информация" 3 => string(4) "feed" 4 => string(0) "" ) public lang => string(2) "ru" public blocks => array(3) ( "left" => array(1) ( 0 => string(29) "c/page/wmenu/get_page_submenu" ) "center" => array(1) ( 0 => string(18) "c/page/wpage/index" ) "right" => array(0) ) protected isAjax => bool FALSE public auto_render => bool TRUE public request => object Request(19){ protected _name => string(7) "session" protected _lifetime => integer 120900 protected _encrypted => bool FALSE protected _data => array(1) ( "last_active" => integer 1699106447 ) protected _destroyed => bool FALSE }protected _config => object Config_Group(7){ public driver => string(4) "Base" public hash_method => string(6) "sha256" public hash_key => string(28) "fghrtbhdnufjm7467fhfnvj47585" public lifetime => integer 1209600 public session_type => string(6) "native" public session_key => string(9) "auth_user" public users => array(0) }}{ 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(41) "(<p1>(/<p2>(/<p3>(/<p4>(/<p5>(/<p6>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "page" "controller" => string(4) "page" "action" => string(5) "index" ) protected _route_regex => string(161) "#^(?:(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\n]++)(?:/(?P<p3>[^/.,;?\n]++)(?:/(?P<p4>[^/.,;?\n]++)(?:/(?P<p5>[^/.,;?\n]++)(?:/(?P …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(4) "Page" protected _action => string(5) "index" protected _uri => string(46) "sport/dordoi-dinamo/контактная-информация/feed" protected _external => bool FALSE protected _params => array(4) ( "p1" => string(5) "sport" "p2" => string(13) "dordoi-dinamo" "p3" => string(21) "контактная-информация" "p4" => string(4) "feed" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session" => 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)
0object 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(41) "(<p1>(/<p2>(/<p3>(/<p4>(/<p5>(/<p6>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "page" "controller" => string(4) "page" "action" => string(5) "index" ) protected _route_regex => string(161) "#^(?:(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\n]++)(?:/(?P<p3>[^/.,;?\n]++)(?:/(?P<p4>[^/.,;?\n]++)(?:/(?P<p5>[^/.,;?\n]++)(?:/(?P …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(4) "Page" protected _action => string(5) "index" protected _uri => string(46) "sport/dordoi-dinamo/контактная-информация/feed" protected _external => bool FALSE protected _params => array(4) ( "p1" => string(5) "sport" "p2" => string(13) "dordoi-dinamo" "p3" => string(21) "контактная-информация" "p4" => string(4) "feed" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session" => 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) }}1object 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)
0object 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(41) "(<p1>(/<p2>(/<p3>(/<p4>(/<p5>(/<p6>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(4) "page" "controller" => string(4) "page" "action" => string(5) "index" ) protected _route_regex => string(161) "#^(?:(?P<p1>[^/.,;?\n]++)(?:/(?P<p2>[^/.,;?\n]++)(?:/(?P<p3>[^/.,;?\n]++)(?:/(?P<p4>[^/.,;?\n]++)(?:/(?P<p5>[^/.,;?\n]++)(?:/(?P …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(4) "Page" protected _controller => string(4) "Page" protected _action => string(5) "index" protected _uri => string(46) "sport/dordoi-dinamo/контактная-информация/feed" protected _external => bool FALSE protected _params => array(4) ( "p1" => string(5) "sport" "p2" => string(13) "dordoi-dinamo" "p3" => string(21) "контактная-информация" "p4" => string(4) "feed" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session" => 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 [ 124 ] » Kohana_Request->execute()
119 /** 120 * Выполнение основного запроса. Источник URI может быть переданы, например: $ _SERVER ['PATH_INFO']. 121 * Если источник не указан, то URI будут автоматически обнаружены. 122 */ 123 echo Request::factory(TRUE, array(), FALSE) 124 ->execute() 125 ->send_headers(TRUE) 126 ->body(); 127 }
