APPPATH/classes/Database/PDO.php [ 37 ]
32 // Create a new PDO connection
33 $this->_connection = new PDO($dsn, $username, $password, $options);
34 }
35 catch (PDOException $e)
36 {
37 throw new Database_Exception(':error',
38 array(':error' => $e->getMessage()),
39 $e->getCode());
40 }
41
42 if ( ! empty($this->_config['charset']))
-
MODPATH/database/classes/Kohana/Database/PDO.php [ 130 ] » Database_PDO->connect()
125 } 126 127 public function query($type, $sql, $as_object = FALSE, array $params = NULL) 128 { 129 // Make sure the database is connected 130 $this->_connection or $this->connect(); 131 132 if (Kohana::$profiling) 133 { 134 // Benchmark this query for the current instance 135 $benchmark = Profiler::start("Database ({$this->_instance})", $sql); -
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_PDO->query(arguments)
0integer 1
1string(6521) "SELECT `indirizzo`.`id` AS `indirizzo:id`, `indirizzo`.`property_id` AS `indirizzo:property_id`, `indirizzo`.`vedi` AS `indirizz …"2string(14) "Model_Property"3array(0)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); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime); -
MODPATH/orm/classes/Kohana/ORM.php [ 1063 ] » Kohana_Database_Query->execute(arguments)
0object Database_PDO(5)
{ protected _identifier => string(1) "`" public last_query => NULL protected _instance => string(11) "casain24ore" protected _connection => NULL protected _config => array(5) ( "type" => string(3) "PDO" "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "identifier" => string(1) "`" ) }1058 } 1059 1060 if ($multiple === TRUE) 1061 { 1062 // Return database iterator casting to this object type 1063 $result = $this->_db_builder->as_object(get_class($this))->execute($this->_db); 1064 1065 $this->reset(); 1066 1067 return $result; 1068 } -
MODPATH/orm/classes/Kohana/ORM.php [ 1004 ] » Kohana_ORM->_load_result(arguments)
0bool TRUE
999 } 1000 } 1001 1002 $this->_build(Database::SELECT); 1003 1004 return $this->_load_result(TRUE); 1005 } 1006 1007 /** 1008 * Returns an array of columns to include in the select query. This method 1009 * can be overridden to change the default select behavior. -
APPPATH/classes/Model/Property.php [ 143 ] » Kohana_ORM->find_all()
138 * 139 * @return Database_Result 140 */ 141 public function get_ultime_residenziali($limit = Model_Property::ULTIME_LIMIT) { 142 $query = $this->_get_base_query($limit); 143 return $query->find_all(); 144 } 145 146 /** 147 * Ottiene un tot di annunci random 148 * -
APPPATH/views/residenziali/index.php [ 201 ] » Model_Property->get_ultime_residenziali()
196 </div> 197 </div> 198 <div class="container pm-containerPadding-bottom-80"> 199 <div class="row"> 200 <?php 201 $immobili = ORM::factory('Property')->get_ultime_residenziali(); 202 ?> 203 <?php foreach ($immobili as $immobile): ?> 204 <div class="col-lg-6 col-md-6 col-sm-12 wow flipInY" data-wow-delay="0.3s" data-wow-offset="50" data-wow-duration="1s"> 205 <article> 206 <div class="pm-news-post-img-container"> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(71) "/var/www/casalieville/main_app/application/views/residenziali/index.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)
0string(71) "/var/www/casalieville/main_app/application/views/residenziali/index.php"1array(0)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/template.php [ 65 ] » Kohana_View->__toString()
60 <li><a href="javascript:void(0)" title="Menù" class="pm-mobile-menu-trigger"><span>Menù</span> <i class="fa fa-bars"></i></a></li> 61 </ul> 62 </div> 63 <div id="pm_layout_wrapper" class="pm-full-mode"> 64 <?= View::factory('header') ?> 65 <?= $content ?> 66 <?= View::factory('footer') ?> 67 </div> 68 <!-- Bootstrap core JavaScript --> 69 <script src="/media/js/jquery-2.1.3.min.js"></script> 70 <script src="/media/js/jquery.viewport.mini.js"></script> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(61) "/var/www/casalieville/main_app/application/views/template.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)
0string(61) "/var/www/casalieville/main_app/application/views/template.php"1array(4) ( "title" => string(81) "Casali e Ville | Il portale dedicato agli immobili di prestigio | CasalieVille.it" "description" => string(166) "Casali e Ville è il network immobiliare dedicato agli immobili di prestigio per coloro che amano le Luxury Properties. Ville, ca …" "content" => object View(2)
{ protected _file => string(71) "/var/www/casalieville/main_app/application/views/residenziali/index.php" protected _data => array(0) }"canonical" => string(29) "https://www.casalieville.it//" )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 -
APPPATH/classes/Controller/Site.php [ 119 ] » Kohana_Controller_Template->after()
114 if (is_file($path . "footer_$controller.$action.js")) 115 $this->template->assets_footer 116 ->js("footer_$controller.$action.js"); 117 } 118 119 parent::after(); 120 } 121 122 } -
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Site->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_Residenziali(5)
{ private session => object Session_Native(5){ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(2) ( "lang1" => string(2) "it" "iubenda" => integer 39316552 ) protected _destroyed => bool FALSE }public template => object View(2){ protected _file => string(61) "/var/www/casalieville/main_app/application/views/template.php" protected _data => array(4) ( "title" => string(81) "Casali e Ville | Il portale dedicato agli immobili di prestigio | CasalieVille.it" "description" => string(166) "Casali e Ville è il network immobiliare dedicato agli immobili di prestigio per coloro che amano le Luxury Properties. Ville, ca …" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(71) "/var/www/casalieville/main_app/application/views/residenziali/index.php" protected _data => array(0) }"canonical" => string(29) "https://www.casalieville.it//" ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(47) "(<controller>(/<action>(/<param1>(/<param2>))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(12) "residenziali" "action" => string(5) "index" ) protected _route_regex => string(129) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<param1>[^/.,;?\n]++)(?:/(?P<param2>[^/.,;?\n]++))?)?)?)?$#u …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Residenziali" protected _action => string(5) "index" protected _uri => string(0) "" 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.1" }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.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(47) "(<controller>(/<action>(/<param1>(/<param2>))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(12) "residenziali" "action" => string(5) "index" ) protected _route_regex => string(129) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<param1>[^/.,;?\n]++)(?:/(?P<param2>[^/.,;?\n]++))?)?)?)?$#u …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Residenziali" protected _action => string(5) "index" protected _uri => string(0) "" 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) }}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.1" }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.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(47) "(<controller>(/<action>(/<param1>(/<param2>))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(12) "residenziali" "action" => string(5) "index" ) protected _route_regex => string(129) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<param1>[^/.,;?\n]++)(?:/(?P<param2>[^/.,;?\n]++))?)?)?)?$#u …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(12) "Residenziali" protected _action => string(5) "index" protected _uri => string(0) "" 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) }}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 /** 119 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 120 * If no source is specified, the URI will be automatically detected. 121 */ 122 echo Request::factory(TRUE, array(), FALSE) 123 ->execute() 124 ->send_headers(TRUE) 125 ->body(); 126 }


