Адвокат Катерина Гальцер
RuntimeException [ 0 ]:
APPPATH/classes/Kohana/Cache/File.php [ 147 ]
142 }
143 else
144 {
145 // Open the file and parse data
146 $created = $file->getMTime();
147 $data = $file->openFile();
148 $lifetime = $data->fgets();
149
150 // If we're at the EOF at this point, corrupted!
151 if ($data->eof())
152 {
-
APPPATH/classes/Kohana/Cache/File.php [ 147 ] » SplFileInfo->openFile()
142 } 143 else 144 { 145 // Open the file and parse data 146 $created = $file->getMTime(); 147 $data = $file->openFile(); 148 $lifetime = $data->fgets(); 149 150 // If we're at the EOF at this point, corrupted! 151 if ($data->eof()) 152 { -
APPPATH/classes/ORM.php [ 18 ] » Kohana_Cache_File->get(arguments)
0string(29) "advokats.org_careersstructure"13 $db_group = isset($this->_db_group) ? $this->_db_group : ''; 14 15 $cache_key = $this->_table_name . $db_group . "structure" . $host; 16 17 $cache = Cache::instance(); 18 $result = $cache->get($cache_key); 19 20 if($result === NULL) 21 { 22 $result = $this->_db->list_columns($this->_table_name); 23 $cache->set($cache_key, $result, $cache_lifetime); -
MODPATH/orm/classes/Kohana/ORM.php [ 444 ] » ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/Kohana/ORM.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
MODPATH/orm/classes/Kohana/ORM.php [ 254 ] » Kohana_ORM->_initialize()
249 * 250 * @param mixed $id Parameter for find or object to load 251 */ 252 public function __construct($id = NULL) 253 { 254 $this->_initialize(); 255 256 if ($id !== NULL) 257 { 258 if (is_array($id)) 259 { -
MODPATH/orm/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM->__construct(arguments)
0NULL
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/orm/classes/Kohana/ORM.php [ 659 ] » Kohana_ORM::factory(arguments)
0string(12) "Model_Career"654 655 return $this->_related[$column] = $model; 656 } 657 elseif (isset($this->_has_many[$column])) 658 { 659 $model = ORM::factory($this->_has_many[$column]['model']); 660 661 if (isset($this->_has_many[$column]['through'])) 662 { 663 // Grab has_many "through" relationship table 664 $through = $this->_has_many[$column]['through']; -
MODPATH/orm/classes/Kohana/ORM.php [ 603 ] » Kohana_ORM->get(arguments)
0string(7) "careers"598 * @param string $column Column name 599 * @return mixed 600 */ 601 public function __get($column) 602 { 603 return $this->get($column); 604 } 605 606 /** 607 * Handles getting of column 608 * Override this method to add custom get behavior -
APPPATH/views/block/v_vk_human.php [ 26 ] » Kohana_ORM->__get(arguments)
0string(7) "careers"21 22 <? if(isset($human->city_id)):?> 23 <b>Город:</b> <?=$human->city->title;?><br> 24 <? endif;?> 25 26 <? foreach($human->careers->find_all() as $career):?> 27 28 <b>Место работы:</b> 29 <? if(isset($career->company)):?> 30 <?=$career->company;?><br> 31 <? endif;?> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(82) "/home/advokats/web/advokats.org/public_html/application/views/block/v_vk_human.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(82) "/home/advokats/web/advokats.org/public_html/application/views/block/v_vk_human.php"1array(2) ( "human" => object Model_Human(34)
{ protected _has_many => array(5) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) "careers" => array(4) ( "model" => string(6) "Career" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(9) "career_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _related => array(4) ( "firstname" => object Model_Firstname(34)"show_h2" => bool FALSE ){ protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) 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(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) 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) "84" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"lastname" => object Model_Lastname(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) 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(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9278" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"city" => object Model_City(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(4) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(7) "city_id" ) "universities" => array(4) ( "model" => string(10) "University" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(13) "university_id" ) "schools" => array(4) ( "model" => string(6) "School" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(9) "school_id" ) "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) 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) "city" protected _object_plural => string(6) "cities" protected _table_name => string(6) "cities" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) "area" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "area" "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(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "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" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(3) "205" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"country" => object Model_Country(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "city" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(1) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(10) "country_id" "through" => NULL "far_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) 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(7) "country" protected _object_plural => string(9) "countries" protected _table_name => string(9) "countries" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "4" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) 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(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(20) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "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" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "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" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "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" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "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" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(5) "12991" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "country" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
APPPATH/views/index/v_vk_user.php [ 10 ] » Kohana_View->__toString()
5 6 <div class="description">Подробная информация об адвокате/юристе <b><?=$human->firstname->title;?> <?=$human->lastname->title;?><?=isset($human->nickname) ? ' ' . $human->nickname : '';?></b> - сфера деятельности, опыт работы, контактные данные, страницы в соцсетях.</div> 7 8 <div id="ads_top" align="center"></div> 9 10 <?=View::factory('block/v_vk_human', ['human' => $human, 'show_h2' => false]);?> 11 12 <div id="ads_bottom" align="center"></div> 13 14 <? /*<div id="ads_bottom" align="center"></div> 15 -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(81) "/home/advokats/web/advokats.org/public_html/application/views/index/v_vk_user.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(81) "/home/advokats/web/advokats.org/public_html/application/views/index/v_vk_user.php"1array(3) ( "human" => object Model_Human(34)
{ protected _has_many => array(5) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) "careers" => array(4) ( "model" => string(6) "Career" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(9) "career_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _related => array(4) ( "firstname" => object Model_Firstname(34)"description" => string(249) "Подробная информация об адвокате/юристе <b>Катерина Гальцер </b> - сфера деятельности, опыт работы, контактные данные, страницы …" "h1" => string(46) "Адвокат Катерина Гальцер" ){ protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) 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(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) 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) "84" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"lastname" => object Model_Lastname(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) 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(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9278" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"city" => object Model_City(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(4) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(7) "city_id" ) "universities" => array(4) ( "model" => string(10) "University" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(13) "university_id" ) "schools" => array(4) ( "model" => string(6) "School" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(9) "school_id" ) "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) 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) "city" protected _object_plural => string(6) "cities" protected _table_name => string(6) "cities" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) "area" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "area" "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(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "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" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(3) "205" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"country" => object Model_Country(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "city" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(1) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(10) "country_id" "through" => NULL "far_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) 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(7) "country" protected _object_plural => string(9) "countries" protected _table_name => string(9) "countries" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "4" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) 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(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(20) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "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" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "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" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "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" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "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" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(5) "12991" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "country" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
APPPATH/views/v_base.php [ 52 ] » Kohana_View->__toString()
47 <div class="content"> 48 <div class="top"> 49 <a href="/"><img src="/img/logo.png" /></a> 50 <?=View::factory('block/v_search');?> 51 </div> 52 <?=$block_center;?> 53 </div> 54 55 <footer> 56 <a href="/delete_page">Удалить страницу</a> 57 <a href="/sitemap_cities">По городам</a> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(72) "/home/advokats/web/advokats.org/public_html/application/views/v_base.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(72) "/home/advokats/web/advokats.org/public_html/application/views/v_base.php"1array(6) ( "title" => string(160) "Адвокат Катерина Гальцер, Усть-Каменогорск, Казахстан, отзывы, контакты: телефон, адрес" "user" => NULL "styles" => array(1) ( 0 => string(34) "media/css/social-likes_classic.css" ) "scripts" => array(4) ( 0 => string(29) "media/js/jquery-1.11.0.min.js" 1 => string(17) "media/js/my.js?10" 2 => string(28) "media/js/social-likes.min.js" 3 => string(26) "media/js/less-1.7.5.min.js" ) "meta_description" => string(242) "Подробная информация об адвокате/юристе Катерина Гальцер - сфера деятельности, опыт работы, контактные данные, страницы в соцсе …" "block_center" => object View(2)
{ protected _file => string(81) "/home/advokats/web/advokats.org/public_html/application/views/index/v_vk_user.php" protected _data => array(3) ( "human" => object Model_Human(34)){ protected _has_many => array(5) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) "careers" => array(4) ( "model" => string(6) "Career" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(9) "career_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _related => array(4) ( "firstname" => object Model_Firstname(34)"description" => string(249) "Подробная информация об адвокате/юристе <b>Катерина Гальцер </b> - сфера деятельности, опыт работы, контактные данные, страницы …" "h1" => string(46) "Адвокат Катерина Гальцер" ) }{ protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) 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(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) 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) "84" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"lastname" => object Model_Lastname(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) 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(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9278" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"city" => object Model_City(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(4) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(7) "city_id" ) "universities" => array(4) ( "model" => string(10) "University" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(13) "university_id" ) "schools" => array(4) ( "model" => string(6) "School" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(9) "school_id" ) "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) 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) "city" protected _object_plural => string(6) "cities" protected _table_name => string(6) "cities" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) "area" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "area" "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(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "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" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(3) "205" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"country" => object Model_Country(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "city" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(1) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(10) "country_id" "through" => NULL "far_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) 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(7) "country" protected _object_plural => string(9) "countries" protected _table_name => string(9) "countries" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "4" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) 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(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(20) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "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" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "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" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "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" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "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" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(5) "12991" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "country" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
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_Index_Vk(7)
{ protected auth => NULL protected user => NULL public template => object View(2){ protected _file => string(72) "/home/advokats/web/advokats.org/public_html/application/views/v_base.php" protected _data => array(6) ( "title" => string(160) "Адвокат Катерина Гальцер, Усть-Каменогорск, Казахстан, отзывы, контакты: телефон, адрес" "user" => NULL "styles" => array(1) ( 0 => string(34) "media/css/social-likes_classic.css" ) "scripts" => array(4) ( 0 => string(29) "media/js/jquery-1.11.0.min.js" 1 => string(17) "media/js/my.js?10" 2 => string(28) "media/js/social-likes.min.js" 3 => string(26) "media/js/less-1.7.5.min.js" ) "meta_description" => string(242) "Подробная информация об адвокате/юристе Катерина Гальцер - сфера деятельности, опыт работы, контактные данные, страницы в соцсе …" "block_center" => object View(2)public auth_required => bool FALSE public auto_render => bool TRUE public request => object Request(19){ protected _file => string(81) "/home/advokats/web/advokats.org/public_html/application/views/index/v_vk_user.php" protected _data => array(3) ( "human" => object Model_Human(34)) }{ protected _has_many => array(5) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) "careers" => array(4) ( "model" => string(6) "Career" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(9) "career_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _changed => array(0) protected _original_values => array(20) ( "id" => string(5) "12991" "lastname_id" => string(4) "9278" "firstname_id" => string(2) "84" "nickname" => string(0) "" "vk_id" => string(9) "316396680" "bdate" => string(10) "1991-12-29" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c830109/v830109323/22216/9J-7LIBcN0I.jpg" "city_id" => string(3) "205" "country_id" => string(1) "4" "home_town" => string(31) "Усть-Каменогорск" "home_phone" => string(6) "******" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(31) "Банк ЦентрКредит" "rate" => string(2) "17" ) protected _related => array(4) ( "firstname" => object Model_Firstname(34)"description" => string(249) "Подробная информация об адвокате/юристе <b>Катерина Гальцер </b> - сфера деятельности, опыт работы, контактные данные, страницы …" "h1" => string(46) "Адвокат Катерина Гальцер" ) }{ protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "84" "title" => string(16) "Катерина" ) 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(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) 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) "84" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"lastname" => object Model_Lastname(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9278" "title" => string(14) "Гальцер" ) 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(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9278" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"city" => object Model_City(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(4) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(7) "city_id" ) "universities" => array(4) ( "model" => string(10) "University" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(13) "university_id" ) "schools" => array(4) ( "model" => string(6) "School" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(9) "school_id" ) "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(7) "city_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(3) "205" "title" => string(31) "Усть-Каменогорск" "area" => NULL "region" => NULL "country_id" => string(1) "4" ) 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) "city" protected _object_plural => string(6) "cities" protected _table_name => string(6) "cities" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) "area" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "area" "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(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "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" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(3) "205" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"country" => object Model_Country(34){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "city" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _has_many => array(1) ( "cities" => array(4) ( "model" => string(4) "City" "foreign_key" => string(10) "country_id" "through" => NULL "far_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "4" "title" => string(18) "Казахстан" ) 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(7) "country" protected _object_plural => string(9) "countries" protected _table_name => string(9) "countries" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "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 FALSE "ordinal_position" => integer 2 "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" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "4" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) 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(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(20) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "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" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "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" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "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" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "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" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "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(5) "12991" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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) "country" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "eab8f9d3b78f28377c924fe63eee1079fc2eb321" protected _identifier => string(1) "`" public last_query => string(62) "SELECT * FROM `geolite2_location` WHERE `geoname_id` = 6252001" 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(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(8) "advokats" "persistent" => bool FALSE ) "table_prefix" => string(9) "advokats_" "charset" => string(4) "utf8" "caching" => bool FALSE ) }{ 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(11) "user/id<id>" protected _regex => array(1) ( "vk_id" => string(3) "\d+" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(2) "Vk" "action" => string(4) "user" ) protected _route_regex => string(33) "#^user/id(?P<id>[^/.,;?\n]++)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(2) "Vk" protected _action => string(4) "user" protected _uri => string(12) "user/id12991" protected _external => bool FALSE protected _params => array(1) ( "id" => string(5) "12991" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(11) "user/id<id>" protected _regex => array(1) ( "vk_id" => string(3) "\d+" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(2) "Vk" "action" => string(4) "user" ) protected _route_regex => string(33) "#^user/id(?P<id>[^/.,;?\n]++)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(2) "Vk" protected _action => string(4) "user" protected _uri => string(12) "user/id12991" protected _external => bool FALSE protected _params => array(1) ( "id" => string(5) "12991" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(11) "user/id<id>" protected _regex => array(1) ( "vk_id" => string(3) "\d+" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(2) "Vk" "action" => string(4) "user" ) protected _route_regex => string(33) "#^user/id(?P<id>[^/.,;?\n]++)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(2) "Vk" protected _action => string(4) "user" protected _uri => string(12) "user/id12991" protected _external => bool FALSE protected _params => array(1) ( "id" => string(5) "12991" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 138 ] » Kohana_Request->execute()
133 /** 134 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 135 * If no source is specified, the URI will be automatically detected. 136 */ 137 echo Request::factory(TRUE, array(), FALSE) 138 ->execute() 139 ->send_headers(TRUE) 140 ->body(); 141 }
Environment
Included files (113)
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 |
APPPATH/classes/Mystring.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.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/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
APPPATH/route.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/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/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/Index/Vk.php |
APPPATH/classes/Controller/Index.php |
APPPATH/classes/Controller/Base.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 |
APPPATH/classes/DMCA.php |
APPPATH/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Banid.php |
SYSPATH/classes/Inflector.php |
SYSPATH/classes/Kohana/Inflector.php |
SYSPATH/config/inflector.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/Database/MySQLi.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/Cache/File.php |
APPPATH/classes/Kohana/Cache/File.php |
MODPATH/cache/classes/Cache/GarbageCollect.php |
MODPATH/cache/classes/Kohana/Cache/GarbageCollect.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/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
APPPATH/classes/Model/Human.php |
APPPATH/classes/Model/Firstname.php |
APPPATH/classes/Model/Lastname.php |
APPPATH/classes/Model/City.php |
APPPATH/classes/Model/Country.php |
APPPATH/views/v_base.php |
APPPATH/classes/Geoip.php |
APPPATH/views/block/v_search.php |
APPPATH/views/index/v_vk_user.php |
APPPATH/views/block/v_vk_human.php |
APPPATH/classes/Model/Career.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Loaded extensions (57)
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
mysqlnd |
PDO |
xml |
bcmath |
bz2 |
calendar |
ctype |
curl |
dom |
mbstring |
fileinfo |
ftp |
gd |
gettext |
iconv |
imagick |
imap |
intl |
json |
ldap |
exif |
mcrypt |
mysqli |
pdo_mysql |
pdo_sqlite |
Phar |
posix |
pspell |
readline |
shmop |
SimpleXML |
soap |
sockets |
sqlite3 |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
wddx |
xmlreader |
xmlwriter |
xsl |
zip |
Zend OPcache |
$_SERVER
TEMP |
string(18) "/home/advokats/tmp" |
TMPDIR |
string(18) "/home/advokats/tmp" |
TMP |
string(18) "/home/advokats/tmp" |
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
USER |
string(8) "advokats" |
HOME |
string(14) "/home/advokats" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_CONNECTION |
string(7) "upgrade" |
HTTP_X_FORWARDED_PROTO |
string(5) "https" |
HTTP_X_FORWARDED_FOR |
string(14) "216.73.217.108" |
HTTP_X_REAL_IP |
string(14) "216.73.217.108" |
HTTP_HOST |
string(12) "advokats.org" |
REDIRECT_STATUS |
string(3) "200" |
SERVER_NAME |
string(12) "advokats.org" |
SERVER_PORT |
string(3) "443" |
SERVER_ADDR |
string(13) "65.108.110.97" |
REMOTE_PORT |
string(0) "" |
REMOTE_ADDR |
string(14) "216.73.217.108" |
SERVER_SOFTWARE |
string(12) "nginx/1.23.1" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
REQUEST_SCHEME |
string(5) "https" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
DOCUMENT_ROOT |
string(43) "/home/advokats/web/advokats.org/public_html" |
DOCUMENT_URI |
string(13) "/user/id12991" |
REQUEST_URI |
string(13) "/user/id12991" |
SCRIPT_NAME |
string(13) "/user/id12991" |
CONTENT_LENGTH |
string(0) "" |
CONTENT_TYPE |
string(0) "" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
SCRIPT_FILENAME |
string(53) "/home/advokats/web/advokats.org/public_html/index.php" |
FCGI_ROLE |
string(9) "RESPONDER" |
PHP_SELF |
string(13) "/user/id12991" |
REQUEST_TIME_FLOAT |
float 1785227420,0187 |
REQUEST_TIME |
integer 1785227420 |
Другие адвокаты города Усть-Каменогорск
Юлия Недбайло
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Юридические консультации
Усть-Каменогорск 2012
Юрист-адвокат
Родом из города: Усть-Каменогорск
Дата рождения: 10 октября 1989
Высшее образование:
Вуз: ВКРУ , 2016 , Заочное отделение , Выпускница (бакалавр)
Факультет: Факультет «Техника, бизнес и право»
Кафедра: Юриспруденция
Среднее образование:
Школа: Школа №16 , 2007 Усть-Каменогорск
2002 - 2007
Школа: Школа №9 , 2007 Усть-Каменогорск
1996 - 1999
Школа: Школа №8 , 2007 Усть-Каменогорск
1999 - 2002
Телефон:
Текущая деятельность: ВКРУ
Галина Гуляева
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: УАК
Усть-Каменогорск
адвокат
Родом из города: Усть- Каменогорск
Дата рождения: 18 апреля 1973
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 1995 , Очное отделение , Выпускница (специалист)
Факультет: Факультет истории, филологии и международных отношений (бывш. Истории, международных отношений и права, Филологический)
Кафедра: Гражданского права и гражданского процесса
Среднее образование:
Школа: им. Горького , 1990 Усть-Каменогорск
1980 - 1990 (а)
Телефон:
Текущая деятельность: УАК
Талгат Сейсекенов
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Усть-Каменогорск 2003
Адвокат
Родом из города: Усть-Каменогорск
Дата рождения: 13 сентября 1971
Высшее образование:
Вуз: ВКГТУ (бывш. СДИ, ВКТУ) им. Д. Серикбаева , 1999 , Очное отделение , Выпускник (специалист)
Факультет: Факультет информационных технологий и бизнеса (бывш. Экономики и менеджмента, Информационных технологий и энергетики)
Кафедра: Экономика
Среднее образование:
Школа: Школа № 4 им. Н. Островского , 1988
1978 - 1998 (а)
Телефон:
Текущая деятельность: ВКГТУ (бывш. СДИ, ВКТУ) им. Д. Серикбаева
Дилара Амренова
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы:
юрист
Родом из города: Семипалатинск
Дата рождения: 6 апреля
Высшее образование:
Вуз: НГУЭУ , 2009 , Очное отделение , Выпускница (специалист)
Факультет: Социально-гуманитарный факультет (бывш. Институт международных отношений и права)
Кафедра: Международных отношений
Вуз: ВКРУ , 2012 , Выпускница (бакалавр)
Факультет: Факультет «Техника, бизнес и право»
Кафедра: Право
Среднее образование:
Школа: Лицей №7 Семей
1993 - 2004 (в)
Skype: adilaraa
Instagram: dilara_amrenova
Текущая деятельность: НГУЭУ
Людмила Утеушова Мубараковна
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: ТОО ПК Машэнерго
Усть-Каменогорск 2017
Юрист
Место работы: Колледж ВКГУ им. С Аманжолова
Усть-Каменогорск 2002 - 2014
Преподаватель правовых дисциплин, председатель ПЦК, председатель СК
Родом из города: Термез
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 1998
Факультет: Факультет истории, филологии и международных отношений (бывш. Истории, международных отношений и права, Филологический)
Среднее образование:
Школа: Школа №64 , 1992 Самарканд
1981 - 1986 (г)
Школа: Киквидзенская школа , 1992 Киквидзе
1986 - 1992 (б)
Телефон:
Skype: lyudmila141975
Текущая деятельность: ТОО ПК Машэнерго
Елена Ларионова
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Адвокат; т. 8 705 521 60 51
Усть-Каменогорск
Родом из города:
Дата рождения: 28 февраля 1981
Высшее образование:
Вуз: KAFU (КАСУ) , 2005 , Заочное отделение
Факультет: Факультет бизнеса, права и педагогики
Вуз: ВКГУ им. Аманжолова , 2002 , Очное отделение
Факультет: Факультет истории, филологии и международных отношений (бывш. Истории, международных отношений и права, Филологический)
Кафедра: Русского языка
Среднее образование:
Школа: Школа №29 , 1998 Усть-Каменогорск - 1998
Телефон:
Текущая деятельность: Адвокат; т. 8 705 521 60 51
Ольга Воронина
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: ВК областная коллегия адвокатов
Усть-Каменогорск 1999
Адвокат
Родом из города:
Дата рождения: 22 апреля
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 1989 , Очное отделение
Среднее образование:
Школа: Школа-гимназия №44 Алматы
1975 - 1977
Школа: Школа №36 Усть-Каменогорск
1977 - 1979
Школа: Гимназия №38 , 1985 Усть-Каменогорск
1979 - 1985
Телефон:
Текущая деятельность: ВК областная коллегия адвокатов
Aigerim Kenzhalova
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Корпорация "Казахмыс"-ПО "ВОСТОКЦВЕТМЕТ"
Усть-Каменогорск
Юрист
Родом из города: Усть-Каменогорск
Дата рождения: 3 апреля 1987
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 2008
Факультет: Факультет истории, филологии и международных отношений (бывш. Истории, международных отношений и права, Филологический)
Среднее образование:
Школа: Школа-лицей №44 им. О. Бокея , 2004 Усть-Каменогорск (ю 2)
Телефон:
Текущая деятельность: Корпорация "Казахмыс"-ПО "ВОСТОКЦВЕТМЕТ"
Александр Гитерман
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Учреждение "Адвокатская контора "Gitter mann"
Усть-Каменогорск 2003
адвокат, руководитель
Родом из города: Актау
Дата рождения: 2 февраля 1978
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 2005 , Очное отделение , Выпускник (магистр)
Факультет: Факультет экономики и права (бывш. Экономики и бизнеса, Истории, международных отношений и права)
Кафедра: Уголовного права и уголовного процесса
Вуз: ЦАУ , 2003 , Очное отделение , Выпускник (бакалавр)
Среднее образование:
Школа: Экономический лицей , 1995 Актау
1993 - 1995
Школа: Школа №16 Актау
1986 - 1992 (и)
Телефон: /
Текущая деятельность: Учреждение "Адвокатская контора "Gitter mann"
Дастан Каиргазин
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы:
Юрист
Родом из города: Усть-Каменогорск
Дата рождения: 9 июля 1989
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 2012 , Заочное отделение , Выпускник (бакалавр)
Факультет: Факультет дистанционного обучения
Среднее образование:
Школа: Школа №26 Усть-Каменогорск
2005 - 2006 (б)
Телефон:
Текущая деятельность: No coment's
Сергей Земляк
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Коллегия адвокатов ВКО
Усть-Каменогорск 2008
адвокат
Родом из города: Усть-Каменогорск
Дата рождения: 13 мая
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 1999 , Заочное отделение , Выпускник (специалист)
Факультет: Факультет экономики и права (бывш. Экономики и бизнеса, Истории, международных отношений и права)
Кафедра: Гражданского права и гражданского процесса
Вуз: ВКГТУ (бывш. СДИ, ВКТУ) им. Д. Серикбаева , 1985 , Очное отделение , Выпускник (специалист)
Факультет: Факультет инженерии (бывш. Архитектурно-строительный, Машиностроения и транспорта)
Кафедра: Транспорт и логистика
Среднее образование:
Школа: Школа №35 , 1980 Усть-Каменогорск
1970 - 1980 (а)
Skype: blackerzss
Текущая деятельность: Коллегия адвокатов ВКО
Антон Первушин
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: сам на себя
Усть-Каменогорск
юрист
Родом из города: усть-каменогорск
Высшее образование:
Вуз: КРУ (КРИ, КРСГУ, СГА) , 2007 , Очное отделение , Студент (бакалавр)
Факультет: Юриспруденция
Среднее образование:
Школа: Школа №9 , 2003 Усть-Каменогорск
1992 - 2003 (в)
юриспруденция
Телефон:
Skype: anton_pervushin
Текущая деятельность: сам на себя
Мария Попова
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Общественная организация
Усть-Каменогорск
юрист
Родом из города: Усть-Каменогорск
Дата рождения: 7 февраля 1979
Высшее образование:
Вуз: ВГИ , 2006
Факультет: Юриспруденция
Среднее образование:
Школа: Школа №8 , 1996 Усть-Каменогорск
1993 - 1996 (а)
Школа: Школа №10 Усть-Каменогорск
1986 - 1993 (в)
Телефон:
Текущая деятельность: Общественная организация
Виктория Беккалиева
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы:
юрист
Родом из города: Усть-Каменогорск
Дата рождения: 14 июля 1980
Высшее образование:
Вуз: ВКГУ им. Аманжолова
Среднее образование:
Школа: Средняя школа , 1997
1987 - 1997 (а)
Телефон:
Текущая деятельность: ВКГУ им. Аманжолова
Виктория Скачко
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: ГКП
Усть-Каменогорск 1999
Юрист
Родом из города: Усть-Каменогорск
Дата рождения: 11 ноября
Высшее образование:
Вуз: ВКГТУ (бывш. СДИ, ВКТУ) им. Д. Серикбаева , 1991 , Очное отделение , Аспирантка
Факультет: Факультет инженерии (бывш. Архитектурно-строительный, Машиностроения и транспорта)
Кафедра: Рациональное использование водовоздушного бассейна и теплогазоснабжение
Среднее образование:
Школа: Школа №3 , 1986 Усть-Каменогорск
1976 - 1986 (б)
Химик-лоборант
Текущая деятельность: ГКП
Илья Смоляков
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: УК УПП КОС
Усть-Каменогорск 2011
Юрист
Родом из города: Усть-Каменогорск
Высшее образование:
Вуз: KAFU (КАСУ) , 2006 , Заочное отделение , Выпускник (магистр)
Факультет: Факультет бизнеса, права и педагогики
Кафедра: Права и истории
Среднее образование:
Школа: Школа №22 Усть-Каменогорск - 2001 (а)
Телефон:
Текущая деятельность: УК УПП КОС
Анастасия Волкова
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Адвокат
Павлодар
Родом из города:
Дата рождения: 11 июня 2000
Среднее образование:
Школа: Физико-математический лицей №1 , 2018 Усть-Каменогорск (а)
Телефон:
Текущая деятельность: Адвокат
Kuba Damik
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: Усть-Каменогорск
Родом из города: усть - каменогорск
Дата рождения: 5 августа
Среднее образование:
Школа: Восточный техническо-гуманитарный колледж (ВТГК) , 2017 Усть-Каменогорск
2015 - 2017
правовед
Телефон: 87777646006
Текущая деятельность: Ты ж Юрист
Куралай Кимадиева
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы:
юрист
Родом из города:
Дата рождения: 11 июня 1984
Высшее образование:
Вуз: ВКГУ им. Аманжолова , 2006 , Очное отделение , Студентка (специалист)
Факультет: Факультет экономики и права (бывш. Экономики и бизнеса, Истории, международных отношений и права)
Кафедра: Уголовного права и уголовного процесса
Среднее образование:
Школа: Школа №45 , 2001 Усть-Каменогорск
Телефон:
Текущая деятельность: ВКГУ им. Аманжолова
Елена Быковская
Страна проживания: КазахстанГород: Усть-Каменогорск
Место работы: частный нотариус
Усть-Каменогорск 2003
юрист
Место работы: СО УВД
Усть-Каменогорск 1998 - 2001
следователь
Родом из города: Усть-Каменогорск
Дата рождения: 28 ноября 1978
Высшее образование:
Вуз: СУ им. Ауэзова (бывш. ЮИ КазГЮУ, Семей) , 1998 , Очное отделение
Факультет: Юридический факультет
Вуз: Академия МВД РК , 2001 , Заочное отделение
Факультет: Юридический факультет
Среднее образование:
Школа: Школа №38 , 1996 Усть-Каменогорск
1986 - 1996
Текущая деятельность: частный нотариус
