Database_Exception [ 3 ]:
APPPATH/classes/Database/MySQLi.php [ 174 ]
169 {
170 // This benchmark is worthless
171 Profiler::delete($benchmark);
172 }
173
174 throw new Database_Exception(':error [ :query ]',
175 array(':error' => mysqli_error($this->_connection), ':query' => $sql),
176 mysqli_errno($this->_connection));
177 }
178
179 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Database_MySQLi->query(arguments)
0integer 1
1string(239) "SELECT `article_photo`.`id` AS `id`, `article_photo`.`article_id` AS `article_id`, `article_photo`.`name` AS `name` FROM `articl …"2string(19) "Model_Article_Photo"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) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "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/views/public/pages/article.php [ 146 ] » Kohana_ORM->find_all()
141 } 142 </style> 143 <ul id="lightGallery" class="row photo_gallery"> 144 <div class="gallery_more_photos_first"> 145 <?php 146 $photos = $article->photos->order_by(DB::expr('LENGTH(name)'), 'asc')->order_by('name', 'asc')->find_all(); 147 $i = 1; 148 ?> 149 <?php foreach ($photos 150 151 as $photo): ?> -
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0string(64) "/home/arq/public_html/application/views/public/pages/article.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(64) "/home/arq/public_html/application/views/public/pages/article.php"1array(4) ( "article" => object Model_Article(36)
{ protected _has_many => array(6) ( "photos" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(8) "photo_id" "model" => string(13) "Article_Photo" ) "updates" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(9) "update_id" "model" => string(7) "Article" ) "categories" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(18) "article_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "tags" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(12) "article_tags" "far_key" => string(6) "tag_id" "model" => string(3) "Tag" ) "comments" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(15) "Article_Comment" ) "polls" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(13) "article_polls" "far_key" => string(7) "poll_id" "model" => string(4) "Poll" ) ) protected _belongs_to => array(3) ( "photo" => array(2) ( "foreign_key" => string(16) "article_photo_id" "model" => string(13) "Article_Photo" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(7) "Article" ) ) protected _load_with => array(0) protected _rules => array(0) protected _created_column => array(2) ( "column" => string(7) "created" "format" => bool TRUE ) protected _updated_column => array(2) ( "column" => string(7) "updated" "format" => bool TRUE ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _validation => object Validation(6)"recomanded" => object Database_MySQLi_Result(7){ protected _bound => array(3) ( ":model" => object Model_Article(36) { *RECURSION* } ":original_values" => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => string(4) "4025" "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) ":changed" => array(1) ( "visits" => string(6) "visits" ) ) protected _rules => array(0) protected _labels => array(28) ( "id" => string(2) "id" "old_id" => string(6) "old_id" "parent_id" => string(9) "parent_id" "title" => string(5) "title" "subtitle" => string(8) "subtitle" "intro_text" => string(10) "intro_text" "title_update" => string(12) "title_update" "alias" => string(5) "alias" "html" => string(4) "html" "html_intro" => string(10) "html_intro" "intro" => string(5) "intro" "meta_title" => string(10) "meta_title" "meta_description" => string(16) "meta_description" "article_photo_id" => string(16) "article_photo_id" "created" => string(7) "created" "updated" => string(7) "updated" "is_published" => string(12) "is_published" "deleted" => string(7) "deleted" "comments_active" => string(15) "comments_active" "publish_date" => string(12) "publish_date" "user_id" => string(7) "user_id" "show_user" => string(9) "show_user" "author_article_type" => string(19) "author_article_type" "comments_count" => string(14) "comments_count" "has_updates" => string(11) "has_updates" "photo_crop" => string(10) "photo_crop" "visits" => string(6) "visits" "search_cache" => string(12) "search_cache" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) }protected _object => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _changed => array(0) protected _original_values => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _related => array(2) ( "photo" => object Model_Article_Photo(36){ protected _has_many => array(0) protected _rules => array(0) protected _belongs_to => array(1) ( "article" => array(2) ( "foreign_key" => string(10) "article_id" "model" => string(7) "Article" ) ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(13) "article_photo" protected _object_plural => string(14) "article_photos" protected _table_name => string(14) "article_photos" protected _table_columns => array(3) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "article_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "article_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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 TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "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 => string(6) "368827" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"user" => object Model_User(35){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(13) "article_photo" }{ 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _has_many => array(2) ( "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" ) ) protected _belongs_to => array(0) public _admin_user => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _changed => array(0) protected _original_values => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(6) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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 TRUE "ordinal_position" => integer 2 "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" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "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(3) "UNI" "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 TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "100" "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "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 => string(2) "12" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "article" protected _object_plural => string(8) "articles" protected _table_name => string(8) "articles" protected _table_columns => array(28) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "old_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "old_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "subtitle" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "subtitle" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "intro_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_update" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_update" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "alias" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "html" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html_intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "html_intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "meta_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article_photo_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "article_photo_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "updated" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_published" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "is_published" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deleted" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "deleted" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "comments_active" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "comments_active" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "publish_date" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(12) "publish_date" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "user_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "user_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "show_user" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "show_user" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "author_article_type" => array(12) ( "type" => string(6) "string" "column_name" => string(19) "author_article_type" "column_default" => string(5) "write" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(5) "write" 1 => string(4) "edit" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_count" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(14) "comments_count" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "has_updates" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "has_updates" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo_crop" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "photo_crop" "column_default" => string(6) "center" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(3) "top" 1 => string(6) "center" 2 => string(6) "bottom" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "visits" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "visits" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "search_cache" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "search_cache" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "25503" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(7) "article" }{ 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1272) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"dont_miss" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1313) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"latest_news" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1401) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 30 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => 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. -
APPPATH/views/public/index.php [ 176 ] » Kohana_View->__toString()
171 172 <!-- BEGIN .wrapper --> 173 <div class="wrapper"> 174 175 176 <?= $main ?> 177 <div class="bannerWrapper hidden-sm hidden-xs"> 178 <!-- Arq Billboard --> 179 <ins class="adsbygoogle" 180 style="display:inline-block;width:970px;height:250px" 181 data-ad-client="ca-pub-8796794938605220" -
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0string(56) "/home/arq/public_html/application/views/public/index.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(56) "/home/arq/public_html/application/views/public/index.php"1array(5) ( "main" => object View(2)
{ protected _file => string(64) "/home/arq/public_html/application/views/public/pages/article.php" protected _data => array(4) ( "article" => object Model_Article(36)"body_class" => string(7) "article" "meta_title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "meta_description" => string(152) "Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe scena …" "og_image" => string(51) "/html/media/photos/0/25/503/small/DSC_1842_Copy.jpg" ){ protected _has_many => array(6) ( "photos" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(8) "photo_id" "model" => string(13) "Article_Photo" ) "updates" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(9) "update_id" "model" => string(7) "Article" ) "categories" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(18) "article_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "tags" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(12) "article_tags" "far_key" => string(6) "tag_id" "model" => string(3) "Tag" ) "comments" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(15) "Article_Comment" ) "polls" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(13) "article_polls" "far_key" => string(7) "poll_id" "model" => string(4) "Poll" ) ) protected _belongs_to => array(3) ( "photo" => array(2) ( "foreign_key" => string(16) "article_photo_id" "model" => string(13) "Article_Photo" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(7) "Article" ) ) protected _load_with => array(0) protected _rules => array(0) protected _created_column => array(2) ( "column" => string(7) "created" "format" => bool TRUE ) protected _updated_column => array(2) ( "column" => string(7) "updated" "format" => bool TRUE ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _validation => object Validation(6)"recomanded" => object Database_MySQLi_Result(7){ protected _bound => array(3) ( ":model" => object Model_Article(36) { *RECURSION* } ":original_values" => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => string(4) "4025" "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) ":changed" => array(1) ( "visits" => string(6) "visits" ) ) protected _rules => array(0) protected _labels => array(28) ( "id" => string(2) "id" "old_id" => string(6) "old_id" "parent_id" => string(9) "parent_id" "title" => string(5) "title" "subtitle" => string(8) "subtitle" "intro_text" => string(10) "intro_text" "title_update" => string(12) "title_update" "alias" => string(5) "alias" "html" => string(4) "html" "html_intro" => string(10) "html_intro" "intro" => string(5) "intro" "meta_title" => string(10) "meta_title" "meta_description" => string(16) "meta_description" "article_photo_id" => string(16) "article_photo_id" "created" => string(7) "created" "updated" => string(7) "updated" "is_published" => string(12) "is_published" "deleted" => string(7) "deleted" "comments_active" => string(15) "comments_active" "publish_date" => string(12) "publish_date" "user_id" => string(7) "user_id" "show_user" => string(9) "show_user" "author_article_type" => string(19) "author_article_type" "comments_count" => string(14) "comments_count" "has_updates" => string(11) "has_updates" "photo_crop" => string(10) "photo_crop" "visits" => string(6) "visits" "search_cache" => string(12) "search_cache" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) }protected _object => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _changed => array(0) protected _original_values => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _related => array(2) ( "photo" => object Model_Article_Photo(36){ protected _has_many => array(0) protected _rules => array(0) protected _belongs_to => array(1) ( "article" => array(2) ( "foreign_key" => string(10) "article_id" "model" => string(7) "Article" ) ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(13) "article_photo" protected _object_plural => string(14) "article_photos" protected _table_name => string(14) "article_photos" protected _table_columns => array(3) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "article_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "article_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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 TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "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 => string(6) "368827" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"user" => object Model_User(35){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(13) "article_photo" }{ 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _has_many => array(2) ( "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" ) ) protected _belongs_to => array(0) public _admin_user => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _changed => array(0) protected _original_values => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(6) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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 TRUE "ordinal_position" => integer 2 "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" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "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(3) "UNI" "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 TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "100" "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "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 => string(2) "12" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "article" protected _object_plural => string(8) "articles" protected _table_name => string(8) "articles" protected _table_columns => array(28) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "old_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "old_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "subtitle" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "subtitle" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "intro_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_update" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_update" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "alias" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "html" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html_intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "html_intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "meta_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article_photo_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "article_photo_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "updated" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_published" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "is_published" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deleted" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "deleted" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "comments_active" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "comments_active" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "publish_date" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(12) "publish_date" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "user_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "user_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "show_user" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "show_user" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "author_article_type" => array(12) ( "type" => string(6) "string" "column_name" => string(19) "author_article_type" "column_default" => string(5) "write" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(5) "write" 1 => string(4) "edit" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_count" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(14) "comments_count" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "has_updates" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "has_updates" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo_crop" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "photo_crop" "column_default" => string(6) "center" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(3) "top" 1 => string(6) "center" 2 => string(6) "bottom" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "visits" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "visits" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "search_cache" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "search_cache" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "25503" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(7) "article" }{ 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1272) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"dont_miss" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1313) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"latest_news" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1401) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 30 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => 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/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 -
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Kohana_Controller_Template->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_Public_Index(5)
{ public template => object View(2){ protected _file => string(56) "/home/arq/public_html/application/views/public/index.php" protected _data => array(5) ( "main" => object View(2)public cache => NULL public auto_render => bool TRUE public request => object Request(19){ protected _file => string(64) "/home/arq/public_html/application/views/public/pages/article.php" protected _data => array(4) ( "article" => object Model_Article(36)"body_class" => string(7) "article" "meta_title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "meta_description" => string(152) "Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe scena …" "og_image" => string(51) "/html/media/photos/0/25/503/small/DSC_1842_Copy.jpg" ) }{ protected _has_many => array(6) ( "photos" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(8) "photo_id" "model" => string(13) "Article_Photo" ) "updates" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(9) "update_id" "model" => string(7) "Article" ) "categories" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(18) "article_categories" "far_key" => string(11) "category_id" "model" => string(8) "Category" ) "tags" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(12) "article_tags" "far_key" => string(6) "tag_id" "model" => string(3) "Tag" ) "comments" => array(4) ( "foreign_key" => string(10) "article_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(15) "Article_Comment" ) "polls" => array(4) ( "foreign_key" => string(10) "article_id" "through" => string(13) "article_polls" "far_key" => string(7) "poll_id" "model" => string(4) "Poll" ) ) protected _belongs_to => array(3) ( "photo" => array(2) ( "foreign_key" => string(16) "article_photo_id" "model" => string(13) "Article_Photo" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(7) "Article" ) ) protected _load_with => array(0) protected _rules => array(0) protected _created_column => array(2) ( "column" => string(7) "created" "format" => bool TRUE ) protected _updated_column => array(2) ( "column" => string(7) "updated" "format" => bool TRUE ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _validation => object Validation(6)"recomanded" => object Database_MySQLi_Result(7){ protected _bound => array(3) ( ":model" => object Model_Article(36) { *RECURSION* } ":original_values" => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => string(4) "4025" "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) ":changed" => array(1) ( "visits" => string(6) "visits" ) ) protected _rules => array(0) protected _labels => array(28) ( "id" => string(2) "id" "old_id" => string(6) "old_id" "parent_id" => string(9) "parent_id" "title" => string(5) "title" "subtitle" => string(8) "subtitle" "intro_text" => string(10) "intro_text" "title_update" => string(12) "title_update" "alias" => string(5) "alias" "html" => string(4) "html" "html_intro" => string(10) "html_intro" "intro" => string(5) "intro" "meta_title" => string(10) "meta_title" "meta_description" => string(16) "meta_description" "article_photo_id" => string(16) "article_photo_id" "created" => string(7) "created" "updated" => string(7) "updated" "is_published" => string(12) "is_published" "deleted" => string(7) "deleted" "comments_active" => string(15) "comments_active" "publish_date" => string(12) "publish_date" "user_id" => string(7) "user_id" "show_user" => string(9) "show_user" "author_article_type" => string(19) "author_article_type" "comments_count" => string(14) "comments_count" "has_updates" => string(11) "has_updates" "photo_crop" => string(10) "photo_crop" "visits" => string(6) "visits" "search_cache" => string(12) "search_cache" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => string(10) "1787862200" "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) }protected _object => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _changed => array(0) protected _original_values => array(28) ( "id" => string(5) "25503" "old_id" => NULL "parent_id" => string(1) "0" "title" => string(66) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" "subtitle" => string(0) "" "intro_text" => string(0) "" "title_update" => NULL "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "html" => string(400) "<p>Și a fost o seară de neuitat cu bobocii Liceului Naţional de Informatică Arad, debordând de fantezie și tinerețe pe sce …" "html_intro" => string(0) "" "intro" => string(0) "" "meta_title" => NULL "meta_description" => NULL "article_photo_id" => string(6) "368827" "created" => string(10) "1544228912" "updated" => integer 1787937740 "is_published" => string(1) "y" "deleted" => string(1) "n" "comments_active" => string(1) "y" "publish_date" => string(10) "1544228911" "user_id" => string(2) "12" "show_user" => string(1) "y" "author_article_type" => string(5) "write" "comments_count" => string(2) "15" "has_updates" => string(1) "n" "photo_crop" => string(6) "center" "visits" => integer 4026 "search_cache" => string(134) "Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad Și a fost Balul Bobocilor Liceului Naţional de Informatică Arad" ) protected _related => array(2) ( "photo" => object Model_Article_Photo(36){ protected _has_many => array(0) protected _rules => array(0) protected _belongs_to => array(1) ( "article" => array(2) ( "foreign_key" => string(10) "article_id" "model" => string(7) "Article" ) ) protected _filters => array(1) ( 1 => array(1) ( "trim" => array(0) ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(6) "368827" "article_id" => string(5) "25503" "name" => string(17) "DSC_1842_Copy.jpg" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(13) "article_photo" protected _object_plural => string(14) "article_photos" protected _table_name => string(14) "article_photos" protected _table_columns => array(3) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "article_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "article_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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 TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "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 => string(6) "368827" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"user" => object Model_User(35){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(13) "article_photo" }{ 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) ( ... ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _has_many => array(2) ( "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" ) ) protected _belongs_to => array(0) public _admin_user => NULL protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _changed => array(0) protected _original_values => array(6) ( "id" => string(2) "12" "name" => string(17) "Vasile Zărăndan" "email" => string(26) "vasilesarandan@hotmail.com" "password" => string(64) "4d58df8ffb8498005b3404e3cb47edccf6dd9540714bb6467bcba2c2d9bbec6c" "logins" => string(1) "0" "last_login" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(6) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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 TRUE "ordinal_position" => integer 2 "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" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "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(3) "UNI" "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 TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "100" "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "logins" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "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(1) "0" "max" => string(10) "4294967295" "column_name" => string(10) "last_login" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "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 => string(2) "12" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "article" protected _object_plural => string(8) "articles" protected _table_name => string(8) "articles" protected _table_columns => array(28) ( "id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "old_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "old_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => string(1) "0" "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "subtitle" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "subtitle" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "intro_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_update" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_update" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "alias" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "alias" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "html" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "html_intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(10) "html_intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "intro" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "intro" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_title" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "meta_title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "meta_description" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "meta_description" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "article_photo_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(16) "article_photo_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "created" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "updated" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_published" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "is_published" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deleted" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "deleted" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "comments_active" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "comments_active" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "publish_date" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(12) "publish_date" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "user_id" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "user_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "show_user" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "show_user" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "author_article_type" => array(12) ( "type" => string(6) "string" "column_name" => string(19) "author_article_type" "column_default" => string(5) "write" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(5) "write" 1 => string(4) "edit" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "comments_count" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(14) "comments_count" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "has_updates" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "has_updates" "column_default" => string(1) "n" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "y" 1 => string(1) "n" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo_crop" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "photo_crop" "column_default" => string(6) "center" "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(3) "top" 1 => string(6) "center" 2 => string(6) "bottom" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "visits" => array(12) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(6) "visits" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "search_cache" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(12) "search_cache" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "25503" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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) ( ... ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _connection_id => string(40) "d7b501429c0678cc878b8cc5e3e566fb9c433039" protected _identifier => string(1) "`" public last_query => string(160) "SELECT COUNT(`article_photo`.`id`) AS `records_found` FROM `article_photos` AS `article_photo` WHERE `article_photo`.`article_id …" 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(7) "article" }{ 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(9) "localhost" "database" => string(8) "arq_2015" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool TRUE ) }{ protected _internal_row => integer 0 protected _query => string(1272) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"dont_miss" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1313) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)"latest_news" => object Database_MySQLi_Result(7){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 6 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _internal_row => integer 0 protected _query => string(1401) "SELECT `article`.`id` AS `id`, `article`.`old_id` AS `old_id`, `article`.`parent_id` AS `parent_id`, `article`.`title` AS `title …" protected _result => object mysqli_result(5)) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 30 protected _current_row => integer 0 protected _as_object => string(13) "Model_Article" protected _object_params => NULL }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(16) "(<alias>)/(<id>)" protected _regex => array(0) protected _defaults => array(3) ( "controller" => string(5) "index" "action" => string(7) "article" "directory" => string(6) "public" ) protected _route_regex => string(60) "#^(?:(?P<alias>[^/.,;?\n]++))?/(?:(?P<id>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(6) "Public" protected _controller => string(5) "Index" protected _action => string(7) "article" protected _uri => string(69) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "id" => string(5) "25503" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(13) ( "visit_article_10659" => string(2) "da" "visit_article_29084" => string(2) "da" "visit_article_29840" => string(2) "da" "visit_article_34879" => string(2) "da" "visit_article_25504" => string(2) "da" "visit_article_16397" => string(2) "da" "visit_article_18961" => string(2) "da" "visit_article_34846" => string(2) "da" "session_name" => NULL "visit_article_64935" => string(2) "da" "visit_article_29838" => string(2) "da" "visit_article_62441" => string(2) "da" "visit_article_29842" => string(2) "da" ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(16) "(<alias>)/(<id>)" protected _regex => array(0) protected _defaults => array(3) ( "controller" => string(5) "index" "action" => string(7) "article" "directory" => string(6) "public" ) protected _route_regex => string(60) "#^(?:(?P<alias>[^/.,;?\n]++))?/(?:(?P<id>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(6) "Public" protected _controller => string(5) "Index" protected _action => string(7) "article" protected _uri => string(69) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "id" => string(5) "25503" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(13) ( "visit_article_10659" => string(2) "da" "visit_article_29084" => string(2) "da" "visit_article_29840" => string(2) "da" "visit_article_34879" => string(2) "da" "visit_article_25504" => string(2) "da" "visit_article_16397" => string(2) "da" "visit_article_18961" => string(2) "da" "visit_article_34846" => string(2) "da" "session_name" => NULL "visit_article_64935" => string(2) "da" "visit_article_29838" => string(2) "da" "visit_article_62441" => string(2) "da" "visit_article_29842" => string(2) "da" ) 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 [ 997 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(16) "(<alias>)/(<id>)" protected _regex => array(0) protected _defaults => array(3) ( "controller" => string(5) "index" "action" => string(7) "article" "directory" => string(6) "public" ) protected _route_regex => string(60) "#^(?:(?P<alias>[^/.,;?\n]++))?/(?:(?P<id>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(6) "Public" protected _controller => string(5) "Index" protected _action => string(7) "article" protected _uri => string(69) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" protected _external => bool FALSE protected _params => array(2) ( "alias" => string(63) "si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad" "id" => string(5) "25503" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(13) ( "visit_article_10659" => string(2) "da" "visit_article_29084" => string(2) "da" "visit_article_29840" => string(2) "da" "visit_article_34879" => string(2) "da" "visit_article_25504" => string(2) "da" "visit_article_16397" => string(2) "da" "visit_article_18961" => string(2) "da" "visit_article_34846" => string(2) "da" "session_name" => NULL "visit_article_64935" => string(2) "da" "visit_article_29838" => string(2) "da" "visit_article_62441" => string(2) "da" "visit_article_29842" => string(2) "da" ) 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 }
Environment
Included files (127)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
SYSPATH/classes/Config.php |
SYSPATH/classes/Kohana/Config.php |
SYSPATH/classes/Log/File.php |
SYSPATH/classes/Kohana/Log/File.php |
SYSPATH/classes/Log/Writer.php |
SYSPATH/classes/Kohana/Log/Writer.php |
SYSPATH/classes/Config/File.php |
SYSPATH/classes/Kohana/Config/File.php |
SYSPATH/classes/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
APPPATH/config/routes.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
SYSPATH/classes/Request.php |
SYSPATH/classes/Kohana/Request.php |
SYSPATH/classes/HTTP/Request.php |
SYSPATH/classes/Kohana/HTTP/Request.php |
SYSPATH/classes/HTTP/Message.php |
SYSPATH/classes/Kohana/HTTP/Message.php |
SYSPATH/classes/Security.php |
SYSPATH/classes/Kohana/Security.php |
SYSPATH/classes/HTTP/Header.php |
SYSPATH/classes/Kohana/HTTP/Header.php |
SYSPATH/classes/Request/Client/Internal.php |
SYSPATH/classes/Kohana/Request/Client/Internal.php |
SYSPATH/classes/Request/Client.php |
SYSPATH/classes/Kohana/Request/Client.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
SYSPATH/classes/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
SYSPATH/classes/Profiler.php |
SYSPATH/classes/Kohana/Profiler.php |
APPPATH/classes/Controller/Public/Index.php |
APPPATH/classes/Controller/Public/Standard.php |
SYSPATH/classes/Controller/Template.php |
SYSPATH/classes/Kohana/Controller/Template.php |
SYSPATH/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.php |
SYSPATH/classes/View.php |
SYSPATH/classes/Kohana/View.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/cache/classes/Cache/Sqlite.php |
MODPATH/cache/classes/Kohana/Cache/Sqlite.php |
MODPATH/cache/classes/Cache/Tagging.php |
MODPATH/cache/classes/Kohana/Cache/Tagging.php |
MODPATH/cache/classes/Cache/GarbageCollect.php |
MODPATH/cache/classes/Kohana/Cache/GarbageCollect.php |
APPPATH/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Article.php |
SYSPATH/classes/Inflector.php |
SYSPATH/classes/Kohana/Inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
APPPATH/classes/Database/MySQLi.php |
APPPATH/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
MODPATH/database/classes/DB.php |
MODPATH/database/classes/Kohana/DB.php |
MODPATH/database/classes/Database/Query/Builder/Select.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php |
MODPATH/database/classes/Database/Query/Builder/Where.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php |
MODPATH/database/classes/Database/Query/Builder.php |
MODPATH/database/classes/Kohana/Database/Query/Builder.php |
MODPATH/database/classes/Database/Query.php |
MODPATH/database/classes/Kohana/Database/Query.php |
MODPATH/database/classes/Database/Expression.php |
MODPATH/database/classes/Kohana/Database/Expression.php |
APPPATH/classes/Model/Tag.php |
MODPATH/database/classes/Database/Query/Builder/Join.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Join.php |
SYSPATH/classes/Validation.php |
SYSPATH/classes/Kohana/Validation.php |
MODPATH/database/classes/Database/Query/Builder/Update.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Update.php |
APPPATH/classes/Helper/Custom.php |
APPPATH/classes/Model/Article/Photo.php |
APPPATH/classes/Model/Category.php |
APPPATH/views/public/index.php |
APPPATH/config/facebook.php |
APPPATH/classes/Model/Setting.php |
APPPATH/classes/Helper/Banner.php |
SYSPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
APPPATH/views/public/pages/article.php |
APPPATH/classes/Model/User.php |
MODPATH/orm/classes/Model/Auth/User.php |
APPPATH/classes/Model/Poll.php |
MODPATH/database/classes/Database/Exception.php |
MODPATH/database/classes/Kohana/Database/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/views/kohana/error.php |
Loaded extensions (50)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
Reflection |
SPL |
session |
standard |
litespeed |
timezonedb |
bcmath |
calendar |
clos_ssa |
ctype |
curl |
dom |
mbstring |
fileinfo |
ftp |
gd |
iconv |
imap |
json |
exif |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_sqlite |
Phar |
posix |
SimpleXML |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlwriter |
xsl |
zip |
apcu |
mhash |
apc |
$_COOKIE
$_SERVER
PATH |
string(28) "/usr/local/bin:/bin:/usr/bin" |
DOCUMENT_ROOT |
string(21) "/home/arq/public_html" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_COOKIE |
string(843) "visit_article_10659=43fea82b1df1ddb67367f903ab590c2de42172f6%7Eda; visit_article_29084=01134e8800d9ac6ed81e652a3a7269ba8d3a7bf6% …" |
HTTP_HOST |
string(10) "www.arq.ro" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_X_HTTPS |
string(1) "1" |
REMOTE_ADDR |
string(14) "216.73.217.130" |
REMOTE_PORT |
string(5) "49585" |
SERVER_ADDR |
string(14) "162.55.232.232" |
SERVER_NAME |
string(10) "www.arq.ro" |
SERVER_ADMIN |
string(16) "webmaster@arq.ro" |
SERVER_PORT |
string(3) "443" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(70) "/si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" |
REDIRECT_URL |
string(70) "/si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" |
REDIRECT_REQUEST_METHOD |
string(3) "GET" |
HTTPS |
string(2) "on" |
REDIRECT_STATUS |
string(3) "200" |
X_SPDY |
string(5) "HTTP2" |
SSL_PROTOCOL |
string(7) "TLSv1.3" |
SSL_CIPHER |
string(22) "TLS_AES_256_GCM_SHA384" |
SSL_CIPHER_USEKEYSIZE |
string(3) "256" |
SSL_CIPHER_ALGKEYSIZE |
string(3) "256" |
SCRIPT_FILENAME |
string(31) "/home/arq/public_html/index.php" |
QUERY_STRING |
string(0) "" |
SCRIPT_URI |
string(88) "https://www.arq.ro/si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" |
SCRIPT_URL |
string(70) "/si-a-fost-balul-bobocilor-liceului-national-de-informatica-arad/25503" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SOFTWARE |
string(9) "LiteSpeed" |
REQUEST_METHOD |
string(3) "GET" |
X-LSCACHE |
string(2) "on" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1787937740.5163 |
REQUEST_TIME |
integer 1787937740 |
argv |
array(0) |
argc |
integer 0 |

