MODPATH/database/classes/Database/MySQLi.php [ 172 ]
167 {
168 // This benchmark is worthless
169 Profiler::delete($benchmark);
170 }
171
172 throw new Database_Exception(':error [ :query ]',
173 array(':error' => mysqli_error($this->_connection), ':query' => $sql),
174 mysqli_errno($this->_connection));
175 }
176
177 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Database_MySQLi->query(arguments)
0
integer 1
1
string(1012) "SELECT `agilityrun`.`id` AS `id`, `agilityrun`.`event_id` AS `event_id`, `agilityrun`.`type` AS `type`, `agilityrun`.`class` AS …"
2
string(16) "Model_AgilityRun"
3
array(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)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "5d78326a12c96b7aac0276e6e64ae8cf772ab8f5" protected _identifier => string(1) "`" public last_query => string(37) "SHOW FULL COLUMNS FROM `agility_runs`" 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(3) ( "hostname" => string(9) "localhost" "database" => string(12) "dogresultcom" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE ) }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)
0
bool 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/AgilityRun.php [ 4253 ] » Kohana_ORM->find_all()
4248 $course_id_list = Model_AgilityRun::getMKCourseIDList($year); 4249 $main_event_id = Model_AgilityRun::getMKMainEventID($year); 4250 }*/ 4251 4252 foreach(ORM::Factory('AgilityRun')->where('class', '=','O' )->where('', '', DB::expr('course_id IN ('.$course_id_list.')')) 4253 ->where('', '', DB::expr("type IN ('A','J')"))->find_all() as $crun){ 4254 switch ($crun->size) { 4255 case 'L': 4256 $rowLargeTmp[$crun->id] = 0; 4257 $rowLargeTmp[$crun->id.'_faults'] = 1000; 4258 break;
-
APPPATH/views/agilityrun/view_resultssumMK_print.php [ 4 ] » Model_AgilityRun::getMKSumResultArray(arguments)
0
string(4) "2024"
1 2 <div><p><font size="6"><?= __("HC summarized points") ?></font><b id="showhidefaults" class="right"><?= __("Show/Hide faults") ?></b></p></div> 3 4 <?php $results = Model_AgilityRun::getMKSumResultArray($year); 5 $cntAll = 0;$flag = 0; 6 ?> 7 8 <?php foreach($results as $k => $v): ?> 9 <?php $cntAll = 0; ?>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
MODPATH/mustache/classes/View.php [ 36 ] » Kohana_View::capture(arguments)
0
string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php"
1
array(1) ( "year" => string(4) "2024" )
31 32 33 protected static function capture($kohana_view_filename, array $kohana_view_data) { 34 $extension = pathinfo($kohana_view_filename, PATHINFO_EXTENSION); 35 // If it's not a mustache file, do the default: 36 if ($extension != 'mustache') return Kohana_View::capture($kohana_view_filename, $kohana_view_data); 37 38 $vars = Arr::merge(self::kohanaVariables(), View::$_global_data); 39 $vars = Arr::merge($vars, $kohana_view_data); 40 41 $m = new Mustache;
-
SYSPATH/classes/Kohana/View.php [ 359 ] » View::capture(arguments)
0
string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php"
1
array(1) ( "year" => string(4) "2024" )
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
APPPATH/views/event/agility/templatePrint.php [ 44 ] » Kohana_View->__toString()
39 </div> 40 </div> 41 </div> 42 <div class="row"> 43 <div class="large-12 columns"> 44 <?= $content ?> 45 </div> 46 </div> 47 48 <script> 49 var dateformat = '<?= __('mm/dd/yyyy') ?>';
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(68) "/var/www/dogresult/application/views/event/agility/templatePrint.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
MODPATH/mustache/classes/View.php [ 36 ] » Kohana_View::capture(arguments)
0
string(68) "/var/www/dogresult/application/views/event/agility/templatePrint.php"
1
array(5) ( "chartContent" => string(0) "" "content" => object View(2)
{ protected _file => string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php" protected _data => array(1) ( "year" => string(4) "2024" ) }
"registerCSS" => array(0) "registerJS" => array(0) "registerJSHead" => array(0) )31 32 33 protected static function capture($kohana_view_filename, array $kohana_view_data) { 34 $extension = pathinfo($kohana_view_filename, PATHINFO_EXTENSION); 35 // If it's not a mustache file, do the default: 36 if ($extension != 'mustache') return Kohana_View::capture($kohana_view_filename, $kohana_view_data); 37 38 $vars = Arr::merge(self::kohanaVariables(), View::$_global_data); 39 $vars = Arr::merge($vars, $kohana_view_data); 40 41 $m = new Mustache;
-
SYSPATH/classes/Kohana/View.php [ 359 ] » View::capture(arguments)
0
string(68) "/var/www/dogresult/application/views/event/agility/templatePrint.php"
1
array(5) ( "chartContent" => string(0) "" "content" => object View(2)
{ protected _file => string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php" protected _data => array(1) ( "year" => string(4) "2024" ) }
"registerCSS" => array(0) "registerJS" => array(0) "registerJSHead" => array(0) )354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
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/Website.php [ 109 ] » Kohana_Controller_Template->after()
104 $this->meta_description = __('Dog result, dog events, dog breeding, dog show results, working results'); 105 } 106 $this->template->set('registerCSS',$this->registerCSS); 107 $this->template->set('registerJS',$this->registerJS); 108 $this->template->set('registerJSHead',$this->registerJSHead); 109 parent::after(); 110 } 111 112 public function replaceLang($url) { 113 $eng = array('/hu/', '/offered/', '/wanted/'); 114 $hun = array('/en/', '/keres/', '/kinal/');
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Website->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_AgilityRun(14)
{ protected user => NULL protected otheruser => NULL protected lang => string(2) "hu" protected lang_url => string(32) "/en/agilityRun/printMKSumResults" protected lang_url_text => NULL protected keyword => string(86) "Kutya, eredmények, események, tenyésztés, eredmények, CAC, CACIB, IPO, munkakutya" protected meta_description => string(86) "Kutyás eredmények, kutyás események, kutya tenyésztés, kiállítási eredmények" protected registerCSS => array(0) protected registerJS => array(0) protected registerJSHead => array(0) public template => object View(2)
{ protected _file => string(68) "/var/www/dogresult/application/views/event/agility/templatePrint.php" protected _data => array(5) ( "chartContent" => string(0) "" "content" => object View(2)
public auto_render => bool TRUE public request => object Request(19){ protected _file => string(75) "/var/www/dogresult/application/views/agilityrun/view_resultssumMK_print.php" protected _data => array(1) ( "year" => string(4) "2024" ) }
"registerCSS" => array(0) "registerJS" => array(0) "registerJSHead" => array(0) ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" 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) "(<lang>/)(<controller>(/<action>(/<id>)))" protected _regex => array(2) ( "lang" => string(10) "(hu|en|xx)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(5) "event" "action" => string(5) "index" ) protected _route_regex => string(111) "#^(?:(?P<lang>(hu|en|xx))/)?(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(10) "AgilityRun" protected _action => string(17) "printMKSumResults" protected _uri => string(31) "hu/agilityRun/printMKSumResults" protected _external => bool FALSE protected _params => array(1) ( "lang" => string(2) "hu" ) 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)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(41) "(<lang>/)(<controller>(/<action>(/<id>)))" protected _regex => array(2) ( "lang" => string(10) "(hu|en|xx)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(5) "event" "action" => string(5) "index" ) protected _route_regex => string(111) "#^(?:(?P<lang>(hu|en|xx))/)?(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(10) "AgilityRun" protected _action => string(17) "printMKSumResults" protected _uri => string(31) "hu/agilityRun/printMKSumResults" protected _external => bool FALSE protected _params => array(1) ( "lang" => string(2) "hu" ) 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.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 [ 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.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(41) "(<lang>/)(<controller>(/<action>(/<id>)))" protected _regex => array(2) ( "lang" => string(10) "(hu|en|xx)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(5) "event" "action" => string(5) "index" ) protected _route_regex => string(111) "#^(?:(?P<lang>(hu|en|xx))/)?(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(10) "AgilityRun" protected _action => string(17) "printMKSumResults" protected _uri => string(31) "hu/agilityRun/printMKSumResults" protected _external => bool FALSE protected _params => array(1) ( "lang" => string(2) "hu" ) 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 [ 125 ] » Kohana_Request->execute()
120 /** 121 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 122 * If no source is specified, the URI will be automatically detected. 123 */ 124 echo Request::factory(TRUE, array(), FALSE) 125 ->execute() 126 ->send_headers(TRUE) 127 ->body(); 128 }