MODPATH/database/classes/Database/MySQLi.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysqli_error($this->_connection), ':query' => $sql),
196 mysqli_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Database_MySQLi->query(arguments)
0integer 1
1string(185) "SELECT `execs_industry`.`id` AS `id`, `execs_industry`.`name` AS `name`, `execs_industry`.`codename` AS `codename` FROM `execs_i …"2string(14) "Model_Industry"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_MySQLi(6)
{ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }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/Search.php [ 563 ] » Kohana_ORM->find_all()
558 { 559 if (!empty($beans)) { 560 return ORM::factory($orm) 561 ->where('id', 'IN', DB::expr("({$beans})")) 562 ->limit($limit) 563 ->find_all()->as_array(); 564 } 565 return array(); 566 } 567 } -
APPPATH/classes/Model/Search.php [ 550 ] » Model_Search->multiple_field_beans(arguments)
0string(8) "Industry"1string(2) "31"2integer 1
545 return $this->multiple_field_bean('Industry', $this->industry_ids); 546 } 547 548 public function multiple_field_bean ($orm, $beans){ 549 $result = null; 550 $beans = $this->multiple_field_beans($orm, $beans, 1); 551 if (count($beans) > 0){ 552 $result = $beans[0]; 553 } 554 return $result; 555 } -
APPPATH/classes/Model/Search.php [ 545 ] » Model_Search->multiple_field_bean(arguments)
0string(8) "Industry"1string(2) "31"540 public function position (){ 541 return $this->multiple_field_bean('JobFunction', $this->position_ids); 542 } 543 544 public function industry (){ 545 return $this->multiple_field_bean('Industry', $this->industry_ids); 546 } 547 548 public function multiple_field_bean ($orm, $beans){ 549 $result = null; 550 $beans = $this->multiple_field_beans($orm, $beans, 1); -
APPPATH/views/website/search.php [ 31 ] » Model_Search->industry()
26 27 <aside class="columned_1_3 left search_filters"> 28 <?php 29 $search_mobile = false; 30 $search_position = $search->position(); 31 $search_industry = $search->industry(); 32 ?> 33 <div class="content_desktop"> 34 <div class="columned_content whiteblocked"> 35 <?php include('components/search_filters.php'); ?> 36 </div> -
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0string(53) "/var/app/current/application/views/website/search.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(); -
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0string(53) "/var/app/current/application/views/website/search.php"1array(15) ( "jobs" => array(0) "places" => array(0) "search" => object Model_Search(34)
{ protected _table_name => string(8) "searches" protected _belongs_to => array(5) ( "job_owner" => array(2) ( "foreign_key" => string(12) "job_owner_id" "model" => string(4) "User" ) "geo_country" => array(2) ( "foreign_key" => string(14) "geo_country_id" "model" => string(7) "Country" ) "geo_area_one" => array(2) ( "foreign_key" => string(15) "geo_area_one_id" "model" => string(10) "GeoAreaOne" ) "geo_area_two" => array(2) ( "foreign_key" => string(15) "geo_area_two_id" "model" => string(10) "GeoAreaTwo" ) "geo_locality" => array(2) ( "foreign_key" => string(15) "geo_locality_id" "model" => string(11) "GeoLocality" ) ) protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => NULL "job_owner_id" => NULL "position_ids" => NULL "industry_ids" => string(2) "31" "geo_country_id" => NULL "geo_area_one_id" => NULL "geo_area_two_id" => NULL "geo_locality_id" => NULL "geo_latitude" => NULL "geo_longitude" => NULL "geo_zip_code" => NULL "location_type" => integer 1 "created" => NULL "pattern" => string(11) "fundraising" "starting_result" => integer 0 "order_by_date" => NULL ) protected _changed => array(4) ( "pattern" => string(7) "pattern" "location_type" => string(13) "location_type" "starting_result" => string(15) "starting_result" "industry_ids" => string(12) "industry_ids" ) protected _original_values => array(0) protected _related => array(1) ( "job_owner" => object Model_User(34)"job_ids" => string(1) "," "positions" => array(0) "industries" => array(0) "search_title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "featured_jobs" => array(0) "results_count" => string(1) "0" "results_total" => string(1) "0" "results_start" => integer 0 "results_by_page" => integer 25 "page" => array(4) ( "slug" => string(0) "" "title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "description" => string(131) "Search and post mental health jobs posted on a niche job board by non-profit organizations, recruiters, and executive search fir …" "keywords" => string(140) "mental health, jobs, careers, job board, executive search, job, fundraising, operations, finance, sector, recruiting, resumes, p …" ) "config" => object Config_Group(30){ protected _has_many => array(4) ( "user_tokens" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(13) "user_token_id" "model" => string(10) "User_Token" ) "roles" => array(4) ( "foreign_key" => string(7) "user_id" "through" => string(11) "roles_users" "far_key" => string(7) "role_id" "model" => string(4) "Role" ) "identities" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(11) "identity_id" "model" => string(12) "UserIdentity" ) "job_alerts" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(12) "job_alert_id" "model" => string(8) "JobAlert" ) ) protected _has_one => array(2) ( "profile" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(7) "Profile" ) "options" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(11) "UserOptions" ) ) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "name" => NULL "username" => NULL "temp_username" => NULL "email" => NULL "password" => NULL "logins" => NULL "last_login" => NULL "active" => NULL "email_verified" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 2 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "username" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "temp_username" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "temp_username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "password" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "password" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(2) "64" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "logins" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "last_login" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(113) "Indicates wheter the account is active or has been "deleted" by the user. This flag is therefore set by the user." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email_verified" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(14) "email_verified" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "search" protected _object_plural => string(8) "searches" protected _table_columns => array(16) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "job_owner_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(12) "job_owner_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "position_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "industry_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "industry_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_country_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(14) "geo_country_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_one_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_one_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_two_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_two_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_locality_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_locality_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_latitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "geo_latitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_longitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "geo_longitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_zip_code" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "geo_zip_code" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "location_type" => array(12) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "location_type" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "comment" => string(56) "0: Both remote and local. 1: Only local. 2: Only remote." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(10) ( "type" => string(6) "string" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pattern" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "pattern" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "200" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "starting_result" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "starting_result" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "order_by_date" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "order_by_date" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(4) "user" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(6) "search" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ public address => string(24) "https://execsearches.com" public address_fancy => string(16) "execsearches.com" public server_folder => string(16) "/var/app/current" public name => string(12) "ExecSearches" public title => string(22) "ExecSearches Job Board" public description => string(142) "A niche non-profit job board for executive, fundraising and management jobs in non-profit, healthcare, government and education …" public keywords => string(231) "non-profit jobs, non-profit, nonprofit, nonprofit jobs, executive, jobs, job board, health, government, education, fundraising, …" public google_analytics_id => string(12) "UA-1770850-1" public admin_email => array(2) ( 0 => string(22) "admin@execsearches.com" 1 => string(15) "fjayhall@me.com" ) public log_email => bool FALSE public search_root => string(14) "nonprofit-jobs" public search_default_results_by_page => integer 25 public search_default_order_by => string(9) "relevance" public search_default_radius => integer 100 public search_default_radius_max => integer 150 public rss_address => string(8) "/rss.xml" public social_twitter_user => string(12) "ExecSearches" public contact_email => string(24) "contact@execsearches.com" public contact_main_address_street => string(20) "7855 Meadow Park Dr." public contact_main_address_apartment => string(7) "Suite C" public contact_main_address_area_one => string(16) "Dallas, TX 75230" public contact_main_phone => string(14) "(888) 238-6611" public contact_main_time_frame => string(17) "6:30am-5:30pm PST" public legal_name => string(22) "ExecSearches.com, Inc." public newsletter_subscribe_address => string(19) "http://goo.gl/kg16C" public daily_update_running_on => string(104) "Monday 00:30, Tuesday 00:30, Wednesday 00:30, Thursday 00:30, Friday 00:30, Saturday 00:30, Sunday 00:30" public admin_results_by_page => integer 40 public account_jobs_by_page => integer 20 public account_invoices_by_page => integer 20 public paypal_account_email => string(15) "fjayhall@me.com" }"state" => object stdClass(6){ public is_logged => bool FALSE public user => NULL public profile => NULL public is_admin => bool FALSE public is_recruiter => bool FALSE public return_url => NULL })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. -
SYSPATH/classes/Kohana/Response.php [ 160 ] » Kohana_View->__toString()
155 public function body($content = NULL) 156 { 157 if ($content === NULL) 158 return $this->_body; 159 160 $this->_body = (string) $content; 161 return $this; 162 } 163 164 /** 165 * Gets or sets the HTTP protocol. The standard protocol to use -
APPPATH/classes/Controller/Website.php [ 36 ] » Kohana_Response->body(arguments)
0object View(2)
{ protected _file => string(53) "/var/app/current/application/views/website/search.php" protected _data => array(15) ( "jobs" => array(0) "places" => array(0) "search" => object Model_Search(34){ protected _table_name => string(8) "searches" protected _belongs_to => array(5) ( "job_owner" => array(2) ( "foreign_key" => string(12) "job_owner_id" "model" => string(4) "User" ) "geo_country" => array(2) ( "foreign_key" => string(14) "geo_country_id" "model" => string(7) "Country" ) "geo_area_one" => array(2) ( "foreign_key" => string(15) "geo_area_one_id" "model" => string(10) "GeoAreaOne" ) "geo_area_two" => array(2) ( "foreign_key" => string(15) "geo_area_two_id" "model" => string(10) "GeoAreaTwo" ) "geo_locality" => array(2) ( "foreign_key" => string(15) "geo_locality_id" "model" => string(11) "GeoLocality" ) ) protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => NULL "job_owner_id" => NULL "position_ids" => NULL "industry_ids" => string(2) "31" "geo_country_id" => NULL "geo_area_one_id" => NULL "geo_area_two_id" => NULL "geo_locality_id" => NULL "geo_latitude" => NULL "geo_longitude" => NULL "geo_zip_code" => NULL "location_type" => integer 1 "created" => NULL "pattern" => string(11) "fundraising" "starting_result" => integer 0 "order_by_date" => NULL ) protected _changed => array(4) ( "pattern" => string(7) "pattern" "location_type" => string(13) "location_type" "starting_result" => string(15) "starting_result" "industry_ids" => string(12) "industry_ids" ) protected _original_values => array(0) protected _related => array(1) ( "job_owner" => object Model_User(34)"job_ids" => string(1) "," "positions" => array(0) "industries" => array(0) "search_title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "featured_jobs" => array(0) "results_count" => string(1) "0" "results_total" => string(1) "0" "results_start" => integer 0 "results_by_page" => integer 25 "page" => array(4) ( "slug" => string(0) "" "title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "description" => string(131) "Search and post mental health jobs posted on a niche job board by non-profit organizations, recruiters, and executive search fir …" "keywords" => string(140) "mental health, jobs, careers, job board, executive search, job, fundraising, operations, finance, sector, recruiting, resumes, p …" ) "config" => object Config_Group(30){ protected _has_many => array(4) ( "user_tokens" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(13) "user_token_id" "model" => string(10) "User_Token" ) "roles" => array(4) ( "foreign_key" => string(7) "user_id" "through" => string(11) "roles_users" "far_key" => string(7) "role_id" "model" => string(4) "Role" ) "identities" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(11) "identity_id" "model" => string(12) "UserIdentity" ) "job_alerts" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(12) "job_alert_id" "model" => string(8) "JobAlert" ) ) protected _has_one => array(2) ( "profile" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(7) "Profile" ) "options" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(11) "UserOptions" ) ) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "name" => NULL "username" => NULL "temp_username" => NULL "email" => NULL "password" => NULL "logins" => NULL "last_login" => NULL "active" => NULL "email_verified" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 2 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "username" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "temp_username" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "temp_username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "password" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "password" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(2) "64" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "logins" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "last_login" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(113) "Indicates wheter the account is active or has been "deleted" by the user. This flag is therefore set by the user." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email_verified" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(14) "email_verified" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "search" protected _object_plural => string(8) "searches" protected _table_columns => array(16) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "job_owner_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(12) "job_owner_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "position_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "industry_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "industry_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_country_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(14) "geo_country_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_one_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_one_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_two_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_two_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_locality_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_locality_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_latitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "geo_latitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_longitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "geo_longitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_zip_code" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "geo_zip_code" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "location_type" => array(12) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "location_type" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "comment" => string(56) "0: Both remote and local. 1: Only local. 2: Only remote." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(10) ( "type" => string(6) "string" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pattern" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "pattern" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "200" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "starting_result" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "starting_result" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "order_by_date" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "order_by_date" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(4) "user" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(6) "search" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ public address => string(24) "https://execsearches.com" public address_fancy => string(16) "execsearches.com" public server_folder => string(16) "/var/app/current" public name => string(12) "ExecSearches" public title => string(22) "ExecSearches Job Board" public description => string(142) "A niche non-profit job board for executive, fundraising and management jobs in non-profit, healthcare, government and education …" public keywords => string(231) "non-profit jobs, non-profit, nonprofit, nonprofit jobs, executive, jobs, job board, health, government, education, fundraising, …" public google_analytics_id => string(12) "UA-1770850-1" public admin_email => array(2) ( 0 => string(22) "admin@execsearches.com" 1 => string(15) "fjayhall@me.com" ) public log_email => bool FALSE public search_root => string(14) "nonprofit-jobs" public search_default_results_by_page => integer 25 public search_default_order_by => string(9) "relevance" public search_default_radius => integer 100 public search_default_radius_max => integer 150 public rss_address => string(8) "/rss.xml" public social_twitter_user => string(12) "ExecSearches" public contact_email => string(24) "contact@execsearches.com" public contact_main_address_street => string(20) "7855 Meadow Park Dr." public contact_main_address_apartment => string(7) "Suite C" public contact_main_address_area_one => string(16) "Dallas, TX 75230" public contact_main_phone => string(14) "(888) 238-6611" public contact_main_time_frame => string(17) "6:30am-5:30pm PST" public legal_name => string(22) "ExecSearches.com, Inc." public newsletter_subscribe_address => string(19) "http://goo.gl/kg16C" public daily_update_running_on => string(104) "Monday 00:30, Tuesday 00:30, Wednesday 00:30, Thursday 00:30, Friday 00:30, Saturday 00:30, Sunday 00:30" public admin_results_by_page => integer 40 public account_jobs_by_page => integer 20 public account_invoices_by_page => integer 20 public paypal_account_email => string(15) "fjayhall@me.com" }"state" => object stdClass(6){ public is_logged => bool FALSE public user => NULL public profile => NULL public is_admin => bool FALSE public is_recruiter => bool FALSE public return_url => NULL }) }31 //Session state 32 $state = $this->state(); 33 $this->view->bind('state', $state); 34 35 36 $this->response->body($this->view); 37 } 38 } 39 40 public function page($key = null, $value = null) 41 { -
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)
0object Controller_Website_Search(6)
{ protected view => object View(2){ protected _file => string(53) "/var/app/current/application/views/website/search.php" protected _data => array(15) ( "jobs" => array(0) "places" => array(0) "search" => object Model_Search(34)protected page => array(4) ( "slug" => string(0) "" "title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "description" => string(131) "Search and post mental health jobs posted on a niche job board by non-profit organizations, recruiters, and executive search fir …" "keywords" => string(140) "mental health, jobs, careers, job board, executive search, job, fundraising, operations, finance, sector, recruiting, resumes, p …" ) protected config => object Config_Group(30){ protected _table_name => string(8) "searches" protected _belongs_to => array(5) ( "job_owner" => array(2) ( "foreign_key" => string(12) "job_owner_id" "model" => string(4) "User" ) "geo_country" => array(2) ( "foreign_key" => string(14) "geo_country_id" "model" => string(7) "Country" ) "geo_area_one" => array(2) ( "foreign_key" => string(15) "geo_area_one_id" "model" => string(10) "GeoAreaOne" ) "geo_area_two" => array(2) ( "foreign_key" => string(15) "geo_area_two_id" "model" => string(10) "GeoAreaTwo" ) "geo_locality" => array(2) ( "foreign_key" => string(15) "geo_locality_id" "model" => string(11) "GeoLocality" ) ) protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => NULL "job_owner_id" => NULL "position_ids" => NULL "industry_ids" => string(2) "31" "geo_country_id" => NULL "geo_area_one_id" => NULL "geo_area_two_id" => NULL "geo_locality_id" => NULL "geo_latitude" => NULL "geo_longitude" => NULL "geo_zip_code" => NULL "location_type" => integer 1 "created" => NULL "pattern" => string(11) "fundraising" "starting_result" => integer 0 "order_by_date" => NULL ) protected _changed => array(4) ( "pattern" => string(7) "pattern" "location_type" => string(13) "location_type" "starting_result" => string(15) "starting_result" "industry_ids" => string(12) "industry_ids" ) protected _original_values => array(0) protected _related => array(1) ( "job_owner" => object Model_User(34)"job_ids" => string(1) "," "positions" => array(0) "industries" => array(0) "search_title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "featured_jobs" => array(0) "results_count" => string(1) "0" "results_total" => string(1) "0" "results_start" => integer 0 "results_by_page" => integer 25 "page" => array(4) ( "slug" => string(0) "" "title" => string(51) ""Fundraising" on-site non-profit mental health jobs" "description" => string(131) "Search and post mental health jobs posted on a niche job board by non-profit organizations, recruiters, and executive search fir …" "keywords" => string(140) "mental health, jobs, careers, job board, executive search, job, fundraising, operations, finance, sector, recruiting, resumes, p …" ) "config" => object Config_Group(30){ protected _has_many => array(4) ( "user_tokens" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(13) "user_token_id" "model" => string(10) "User_Token" ) "roles" => array(4) ( "foreign_key" => string(7) "user_id" "through" => string(11) "roles_users" "far_key" => string(7) "role_id" "model" => string(4) "Role" ) "identities" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(11) "identity_id" "model" => string(12) "UserIdentity" ) "job_alerts" => array(4) ( "foreign_key" => string(7) "user_id" "through" => NULL "far_key" => string(12) "job_alert_id" "model" => string(8) "JobAlert" ) ) protected _has_one => array(2) ( "profile" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(7) "Profile" ) "options" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(11) "UserOptions" ) ) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "name" => NULL "username" => NULL "temp_username" => NULL "email" => NULL "password" => NULL "logins" => NULL "last_login" => NULL "active" => NULL "email_verified" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 2 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "username" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "temp_username" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "temp_username" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "254" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "password" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "password" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(2) "64" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "logins" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "last_login" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "active" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(6) "active" "column_default" => string(1) "1" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(113) "Indicates wheter the account is active or has been "deleted" by the user. This flag is therefore set by the user." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email_verified" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(14) "email_verified" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "search" protected _object_plural => string(8) "searches" protected _table_columns => array(16) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "job_owner_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(12) "job_owner_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "position_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "position_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "industry_ids" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "industry_ids" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "275" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_country_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(14) "geo_country_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_one_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_one_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_area_two_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_area_two_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_locality_id" => array(12) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(15) "geo_locality_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_latitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "geo_latitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_longitude" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "geo_longitude" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "numeric_precision" => string(1) "9" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "geo_zip_code" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "geo_zip_code" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(2) "50" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "location_type" => array(12) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "location_type" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "comment" => string(56) "0: Both remote and local. 1: Only local. 2: Only remote." "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(10) ( "type" => string(6) "string" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pattern" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "pattern" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "200" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "starting_result" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "starting_result" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "order_by_date" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(13) "order_by_date" "column_default" => NULL "data_type" => string(7) "tinyint" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(1) "1" "comment" => string(0) "" "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 => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(4) "user" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "ba3deb3ec1ac15dff18ac94377575440cc399352" protected _identifier => string(1) "`" public last_query => string(122) "CALL `search`('fundraising', 'fundraising', NULL, '31', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'search', 0, 25, '0')" 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(6) "search" }{ 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(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(52) "execsmaindb.cz8qu08ibotn.us-east-1.rds.amazonaws.com" "database" => string(4) "ebdb" "persistent" => bool FALSE ) "table_prefix" => string(6) "execs_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }{ public address => string(24) "https://execsearches.com" public address_fancy => string(16) "execsearches.com" public server_folder => string(16) "/var/app/current" public name => string(12) "ExecSearches" public title => string(22) "ExecSearches Job Board" public description => string(142) "A niche non-profit job board for executive, fundraising and management jobs in non-profit, healthcare, government and education …" public keywords => string(231) "non-profit jobs, non-profit, nonprofit, nonprofit jobs, executive, jobs, job board, health, government, education, fundraising, …" public google_analytics_id => string(12) "UA-1770850-1" public admin_email => array(2) ( 0 => string(22) "admin@execsearches.com" 1 => string(15) "fjayhall@me.com" ) public log_email => bool FALSE public search_root => string(14) "nonprofit-jobs" public search_default_results_by_page => integer 25 public search_default_order_by => string(9) "relevance" public search_default_radius => integer 100 public search_default_radius_max => integer 150 public rss_address => string(8) "/rss.xml" public social_twitter_user => string(12) "ExecSearches" public contact_email => string(24) "contact@execsearches.com" public contact_main_address_street => string(20) "7855 Meadow Park Dr." public contact_main_address_apartment => string(7) "Suite C" public contact_main_address_area_one => string(16) "Dallas, TX 75230" public contact_main_phone => string(14) "(888) 238-6611" public contact_main_time_frame => string(17) "6:30am-5:30pm PST" public legal_name => string(22) "ExecSearches.com, Inc." public newsletter_subscribe_address => string(19) "http://goo.gl/kg16C" public daily_update_running_on => string(104) "Monday 00:30, Tuesday 00:30, Wednesday 00:30, Thursday 00:30, Friday 00:30, Saturday 00:30, Sunday 00:30" public admin_results_by_page => integer 40 public account_jobs_by_page => integer 20 public account_invoices_by_page => integer 20 public paypal_account_email => string(15) "fjayhall@me.com" }"state" => object stdClass(6){ public is_logged => bool FALSE public user => NULL public profile => NULL public is_admin => bool FALSE public is_recruiter => bool FALSE public return_url => NULL }) }{ public address => string(24) "https://execsearches.com" public address_fancy => string(16) "execsearches.com" public server_folder => string(16) "/var/app/current" public name => string(12) "ExecSearches" public title => string(22) "ExecSearches Job Board" public description => string(142) "A niche non-profit job board for executive, fundraising and management jobs in non-profit, healthcare, government and education …" public keywords => string(231) "non-profit jobs, non-profit, nonprofit, nonprofit jobs, executive, jobs, job board, health, government, education, fundraising, …" public google_analytics_id => string(12) "UA-1770850-1" public admin_email => array(2) ( 0 => string(22) "admin@execsearches.com" 1 => string(15) "fjayhall@me.com" ) public log_email => bool FALSE public search_root => string(14) "nonprofit-jobs" public search_default_results_by_page => integer 25 public search_default_order_by => string(9) "relevance" public search_default_radius => integer 100 public search_default_radius_max => integer 150 public rss_address => string(8) "/rss.xml" public social_twitter_user => string(12) "ExecSearches" public contact_email => string(24) "contact@execsearches.com" public contact_main_address_street => string(20) "7855 Meadow Park Dr." public contact_main_address_apartment => string(7) "Suite C" public contact_main_address_area_one => string(16) "Dallas, TX 75230" public contact_main_phone => string(14) "(888) 238-6611" public contact_main_time_frame => string(17) "6:30am-5:30pm PST" public legal_name => string(22) "ExecSearches.com, Inc." public newsletter_subscribe_address => string(19) "http://goo.gl/kg16C" public daily_update_running_on => string(104) "Monday 00:30, Tuesday 00:30, Wednesday 00:30, Thursday 00:30, Friday 00:30, Saturday 00:30, Sunday 00:30" public admin_results_by_page => integer 40 public account_jobs_by_page => integer 20 public account_invoices_by_page => integer 20 public paypal_account_email => string(15) "fjayhall@me.com" }protected state => array(6) ( "is_logged" => bool FALSE "user" => NULL "profile" => NULL "is_admin" => bool FALSE "is_recruiter" => bool FALSE "return_url" => NULL ) public request => 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)public response => object Response(5){ protected _filters => array(0) protected _uri => string(67) "nonprofit-jobs(-in-<place>)(/area-<industry>)(/function-<position>)" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "Website" "controller" => string(6) "Search" "action" => string(5) "index" ) protected _route_regex => string(130) "#^nonprofit-jobs(?:-in-(?P<place>[^/.,;?\n]++))?(?:/area-(?P<industry>[^/.,;?\n]++))?(?:/function-(?P<position>[^/.,;?\n]++))?$# …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(7) "Website" protected _controller => string(6) "Search" protected _action => string(5) "index" protected _uri => string(33) "nonprofit-jobs/area-mental-health" protected _external => bool FALSE protected _params => array(2) ( "place" => string(0) "" "industry" => string(13) "mental-health" ) protected _get => array(2) ( "location-type" => string(7) "on-site" "what" => string(11) "fundraising" ) 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.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 FALSE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(67) "nonprofit-jobs(-in-<place>)(/area-<industry>)(/function-<position>)" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "Website" "controller" => string(6) "Search" "action" => string(5) "index" ) protected _route_regex => string(130) "#^nonprofit-jobs(?:-in-(?P<place>[^/.,;?\n]++))?(?:/area-(?P<industry>[^/.,;?\n]++))?(?:/function-(?P<position>[^/.,;?\n]++))?$# …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(7) "Website" protected _controller => string(6) "Search" protected _action => string(5) "index" protected _uri => string(33) "nonprofit-jobs/area-mental-health" protected _external => bool FALSE protected _params => array(2) ( "place" => string(0) "" "industry" => string(13) "mental-health" ) protected _get => array(2) ( "location-type" => string(7) "on-site" "what" => string(11) "fundraising" ) 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.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 [ 993 ] » 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 FALSE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(67) "nonprofit-jobs(-in-<place>)(/area-<industry>)(/function-<position>)" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "Website" "controller" => string(6) "Search" "action" => string(5) "index" ) protected _route_regex => string(130) "#^nonprofit-jobs(?:-in-(?P<place>[^/.,;?\n]++))?(?:/area-(?P<industry>[^/.,;?\n]++))?(?:/function-(?P<position>[^/.,;?\n]++))?$# …" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(7) "Website" protected _controller => string(6) "Search" protected _action => string(5) "index" protected _uri => string(33) "nonprofit-jobs/area-mental-health" protected _external => bool FALSE protected _params => array(2) ( "place" => string(0) "" "industry" => string(13) "mental-health" ) protected _get => array(2) ( "location-type" => string(7) "on-site" "what" => string(11) "fundraising" ) 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) }}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }