APPPATH/vendor/koseven/koseven/modules/database/classes/Kohana/Database/MySQLi.php [ 171 ]
166 {
167 // This benchmark is worthless
168 Profiler::delete($benchmark);
169 }
170
171 throw new Database_Exception(':error [ :query ]', [
172 ':error' => $this->_connection->error,
173 ':query' => $sql
174 ], $this->_connection->errno);
175 }
176
-
APPPATH/vendor/koseven/koseven/modules/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQLi->query(arguments)
0
integer 1
1
string(132) "SELECT COUNT(`dels\image`.`id`) AS `records_found` FROM `images` AS `dels\image` WHERE `entity` = 'house' AND `entity_id` = '190 …"
2
bool FALSE
3
array(0)
246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime);
-
APPPATH/vendor/koseven/koseven/modules/orm/classes/Kohana/ORM.php [ 1827 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }1822 1823 $this->_build(Database::SELECT); 1824 1825 $records = $this->_db_builder->from([$this->_table_name, $this->_object_name]) 1826 ->select([DB::expr('COUNT('.$this->_db->quote_column($this->_object_name.'.'.$this->_primary_key).')'), 'records_found']) 1827 ->execute($this->_db) 1828 ->get('records_found'); 1829 1830 // Add back in selected columns 1831 $this->_db_pending += $selects; 1832
-
APPPATH/classes/Model/House.php [ 62 ] » Kohana_ORM->count_all()
57 public function hasImg() 58 { 59 return (new Image()) 60 ->where('entity', '=', 'house') 61 ->where('entity_id', '=', $this->id) 62 ->count_all(); 63 } 64 65 public function thumb() 66 { 67 $image = (new Image())
-
APPPATH/classes/Model/Link.php [ 334 ] » Model_House->hasImg()
329 } 330 331 public function file($param = true) 332 { 333 // Новый метод, если видит картинки в старое не идем 334 if ($this->sub == 11 && $this->house->hasImg()) { 335 return $this->house->thumb(); 336 } elseif ($this->sub == 13 && $this->ground->hasImg()) { 337 return $this->ground->thumb(); 338 } elseif ($this->sub == 15 && $this->gated->hasImg()) { 339 return $this->gated->thumb();
-
APPPATH/views/parts/similar/house.php [ 20 ] » Model_Link->file()
15 <div class="adi-img"> 16 <a href="<?php echo URL::site($link_parent. '/' .$item->slug) ?>" class="non-dec"> 17 <div class="description ho"> 18 <?php echo $item->name; ?> 19 </div> 20 <img src="<?php echo $item->file(); ?>" alt="<?php echo $item->file->alt; ?>" style="width: 170px; height: 104px;" /> 21 </a> 22 </div> 23 <div class="adi-text"> 24 <div class="aii-text-line1"> 25 <span class="bold block"><?php echo Num::_s($item->house->price); ?> <span class="hyphen13"></span><span class="rouble-14bold">Р</span></span>
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(71) "/var/www/terres/data/www/terres.ru/terres/views/parts/similar/house.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(71) "/var/www/terres/data/www/terres.ru/terres/views/parts/similar/house.php"
1
array(1) ( "link" => object Model_Applink(40)
{ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => string(2) "64" "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) ":changed" => array(1) ( "count_view" => string(10) "count_view" ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
APPPATH/views/house/item.php [ 1464 ] » Kohana_View->__toString()
1459 <h2>Поиск по сайту</h2> 1460 <div id="resultsGoogle"></div> 1461 </div> 1462 1463 <?php // Предложения в этом посёлке?> 1464 <?php echo $_similar; ?> 1465 1466 <!--/ОСНОВНОЙ ТЕКСТ --> 1467 1468 1469
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(62) "/var/www/terres/data/www/terres.ru/terres/views/house/item.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(62) "/var/www/terres/data/www/terres.ru/terres/views/house/item.php"
1
array(12) ( "link" => object Model_Applink(40)
{ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"setup" => object Model_Setup(36){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => string(2) "64" "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) ":changed" => array(1) ( "count_view" => string(10) "count_view" ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "setup" 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(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) protected _changed => array(0) protected _original_values => array(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) 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(5) "setup" protected _object_plural => string(6) "setups" protected _table_columns => array(97) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "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(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_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 FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "copyright" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "copyright" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "counter" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "counter" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "like" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "like" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_gated_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_gated_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_house_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_house_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_ground_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "limit_ground_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name_site" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "name_site" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_suffix" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_suffix" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "fileSizeLimit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimitExt" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "fileSizeLimitExt" "column_default" => string(2) "MB" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(2) "KB" 1 => string(2) "MB" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileTypeExts" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "fileTypeExts" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "gated_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "gated_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "gated_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "ground_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(21) "ground_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "ground_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "house_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "house_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "house_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_chars" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "count_chars" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "10" "comment" => string(56) "Кол-во символов в комментариях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "gated_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для КП в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "ground_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗУ в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "house_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗД в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "index_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "index_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 83 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 85 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 87 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_rapid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "show_rapid" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "footer" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(6) "footer" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "usd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "usd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "eur" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "eur" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"houses" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "setup" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(4362) "SELECT `link`.`id` AS `link:id`, `link`.`parent_id` AS `link:parent_id`, `link`.`group_id` AS `link:group_id`, `link`.`use_id` A …" protected _result => object mysqli_result(5)
"count_comments" => integer 0 "_navbar" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3326 protected _current_row => integer 0 protected _as_object => string(11) "Model_House" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/navbar.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_header" => object View(2){ protected _internal_row => integer 3 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 3 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/header.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_comment" => object View(2){ protected _internal_row => integer 0 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(65) "/var/www/terres/data/www/terres.ru/terres/views/parts/comment.php" protected _data => array(3) ( "comments" => array(0) "count_comments" => integer 0 "banner_for_ads_block_1" => object View(2)
"_similar" => object View(2){ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
) }{ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(6) "138945" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(80) "Баннер-скрипт для страниц статей и новостей" "slug" => string(0) "" "date" => string(19) "0000-00-00 00:00:00" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(6) "138945" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(80) "Баннер-скрипт для страниц статей и новостей" "slug" => string(0) "" "date" => string(19) "0000-00-00 00:00:00" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(2) ( "banner" => object Model_Banner(37)
) }{ protected _table_name => string(7) "banners" protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) private _place => array(8) ( 1 => string(44) "Баннерное место №1 (240x400)" 2 => string(44) "Баннерное место №2 (240x400)" 3 => string(44) "Баннерное место №3 (240x400)" 4 => string(111) "На странице новостей и статей, между лайками и комментариями" 5 => string(86) "Баннер в шапке сайта (100%*90) над логотипом террес" 1248 => string(103) "На странице новостей и статей, между названием и текстом" 1249 => string(98) "Вместо блока Бесплатная помощь в поиске недвижимости" 1250 => string(64) "Второй баннер внизу страницы домов" ) protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(7) ( "id" => string(2) "10" "link_id" => string(6) "138945" "url" => string(0) "" "width" => string(1) "0" "height" => string(1) "0" "kind" => string(4) "code" "place" => string(1) "4" ) protected _changed => array(0) protected _original_values => array(7) ( "id" => string(2) "10" "link_id" => string(6) "138945" "url" => string(0) "" "width" => string(1) "0" "height" => string(1) "0" "kind" => string(4) "code" "place" => 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(6) "banner" protected _object_plural => string(7) "banners" protected _table_columns => array(7) ( "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" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "link_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "width" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "width" "column_default" => string(3) "240" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "height" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "height" "column_default" => string(3) "400" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "kind" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "kind" "column_default" => string(5) "flash" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( ... ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "10" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"page" => object Model_Page(37){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "banner" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(4) "5221" "link_id" => string(6) "138945" "anotation" => string(0) "" "text" => string(0) "" "title" => string(0) "" "description" => string(0) "" "keywords" => string(0) "" "h1" => string(0) "" "lat" => string(8) "0.000000" "lon" => string(8) "0.000000" "zoom" => string(1) "0" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(4) "5221" "link_id" => string(6) "138945" "anotation" => string(0) "" "text" => string(0) "" "title" => string(0) "" "description" => string(0) "" "keywords" => string(0) "" "h1" => string(0) "" "lat" => string(8) "0.000000" "lon" => string(8) "0.000000" "zoom" => string(1) "0" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "5221" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "138945" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(71) "/var/www/terres/data/www/terres.ru/terres/views/parts/similar/house.php" protected _data => array(1) ( "link" => object Model_Applink(40)
"_sidebar_seo" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
) }{ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => string(2) "64" "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) ":changed" => array(1) ( "count_view" => string(10) "count_view" ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(69) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/seo.php" protected _data => array(5) ( "link" => object Model_Applink(40)
"_spec_bottom" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"specials" => object Database_MySQLi_Result(7){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => string(2) "64" "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) ":changed" => array(1) ( "count_view" => string(10) "count_view" ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(1524) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
"seo_text" => string(0) "" "_banner" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
"_exp_inter" => object View(2){ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(3) "382" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №1" "slug" => string(0) "" "date" => string(19) "2013-08-06 23:18:02" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(3) "382" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №1" "slug" => string(0) "" "date" => string(19) "2013-08-06 23:18:02" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "382" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(75) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/exp_inter.php" protected _data => array(1) ( "vote" => object Model_Vote(36)
) }{ protected _has_many => array(1) ( "voteitems" => array(4) ( "foreign_key" => string(7) "vote_id" "through" => NULL "far_key" => string(11) "voteitem_id" "model" => string(8) "Voteitem" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(1) "1" "name" => string(77) "Где кончается город и начинается природа? " "count" => string(3) "851" "hash" => string(32) "FvmNh80ZnTdPcS8HbGmi8vuVDjUbgyjN" "hide" => string(1) "1" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(1) "1" "name" => string(77) "Где кончается город и начинается природа? " "count" => string(3) "851" "hash" => string(32) "FvmNh80ZnTdPcS8HbGmi8vuVDjUbgyjN" "hide" => string(1) "1" ) 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) "vote" protected _object_plural => string(5) "votes" protected _table_name => string(5) "votes" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "vote" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(79) "/var/www/terres/data/www/terres.ru/terres/views/parts/spec/bottom_no_slider.php" protected _data => array(1) ( "specials" => object Database_MySQLi_Result(7)
"_news_other" => object View(2){ protected _internal_row => integer 0 protected _query => string(1523) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(68) "/var/www/terres/data/www/terres.ru/terres/views/parts/news/other.php" protected _data => array(1) ( "news" => object Database_MySQLi_Result(7)
"_banner" => object View(2){ protected _internal_row => integer 0 protected _query => string(581) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
){ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "497" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
APPPATH/views/layout.php [ 42 ] » Kohana_View->__toString()
37 <!-- Yandex.RTB --> 38 <script>window.yaContextCb=window.yaContextCb||[]</script> 39 <script src="https://yandex.ru/ads/system/context.js" async></script> 40 </head> 41 <body> 42 <?php echo $content; ?> 43 44 <div class="uk-container uk-padding"> 45 <?php echo $setup->footer; // Выводит меню footer из админки //?> 46 <div class="uk-flex uk-flex-center" style="margin: 30px 0 0 0;"> 47 <div class="uk-card"><?php echo $setup->like; ?></div>
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(58) "/var/www/terres/data/www/terres.ru/terres/views/layout.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(58) "/var/www/terres/data/www/terres.ru/terres/views/layout.php"
1
array(5) ( "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "author" => string(45) "Загородная недвижимость" "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "content" => object View(2)
{ protected _file => string(62) "/var/www/terres/data/www/terres.ru/terres/views/house/item.php" protected _data => array(12) ( "link" => object Model_Applink(40)
){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"setup" => object Model_Setup(36){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => string(2) "64" "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) ":changed" => array(1) ( "count_view" => string(10) "count_view" ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "setup" 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(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) protected _changed => array(0) protected _original_values => array(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) 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(5) "setup" protected _object_plural => string(6) "setups" protected _table_columns => array(97) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "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(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_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 FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "copyright" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "copyright" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "counter" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "counter" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "like" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "like" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_gated_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_gated_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_house_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_house_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_ground_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "limit_ground_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name_site" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "name_site" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_suffix" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_suffix" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "fileSizeLimit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimitExt" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "fileSizeLimitExt" "column_default" => string(2) "MB" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(2) "KB" 1 => string(2) "MB" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileTypeExts" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "fileTypeExts" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "gated_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "gated_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "gated_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "ground_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(21) "ground_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "ground_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "house_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "house_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "house_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_chars" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "count_chars" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "10" "comment" => string(56) "Кол-во символов в комментариях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "gated_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для КП в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "ground_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗУ в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "house_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗД в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "index_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "index_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 83 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 85 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 87 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_rapid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "show_rapid" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "footer" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(6) "footer" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "usd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "usd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "eur" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "eur" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"houses" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "setup" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(4362) "SELECT `link`.`id` AS `link:id`, `link`.`parent_id` AS `link:parent_id`, `link`.`group_id` AS `link:group_id`, `link`.`use_id` A …" protected _result => object mysqli_result(5)
"count_comments" => integer 0 "_navbar" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3326 protected _current_row => integer 0 protected _as_object => string(11) "Model_House" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/navbar.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_header" => object View(2){ protected _internal_row => integer 3 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 3 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/header.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_comment" => object View(2){ protected _internal_row => integer 0 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(65) "/var/www/terres/data/www/terres.ru/terres/views/parts/comment.php" protected _data => array(3) ( "comments" => array(0) "count_comments" => integer 0 "banner_for_ads_block_1" => object View(2)
"_similar" => object View(2){ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
) }{ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(6) "138945" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(80) "Баннер-скрипт для страниц статей и новостей" "slug" => string(0) "" "date" => string(19) "0000-00-00 00:00:00" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(6) "138945" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(80) "Баннер-скрипт для страниц статей и новостей" "slug" => string(0) "" "date" => string(19) "0000-00-00 00:00:00" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(2) ( "banner" => object Model_Banner(37)
) }{ protected _table_name => string(7) "banners" protected _belongs_to => array(1) ( ... ) private _place => array(8) ( ... ) protected _has_one => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(7) ( ... ) protected _changed => array(0) protected _original_values => array(7) ( ... ) 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(6) "banner" protected _object_plural => string(7) "banners" protected _table_columns => array(7) ( ... ) 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) "10" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "banner" protected _behaviors => array(0) protected _private_columns => bool FALSE }
"page" => object Model_Page(37){ protected _has_many => array(1) ( ... ) protected _belongs_to => array(1) ( ... ) public directions => array(9) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( ... ) protected _changed => array(0) protected _original_values => array(15) ( ... ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( ... ) 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) "5221" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( ... ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( ... ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "138945" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(71) "/var/www/terres/data/www/terres.ru/terres/views/parts/similar/house.php" protected _data => array(1) ( "link" => object Model_Applink(40)
"_sidebar_seo" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
) }{ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( ... ) ":changed" => array(1) ( ... ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(69) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/seo.php" protected _data => array(5) ( "link" => object Model_Applink(40)
"_spec_bottom" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"specials" => object Database_MySQLi_Result(7){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( ... ) ":changed" => array(1) ( ... ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(1524) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
"seo_text" => string(0) "" "_banner" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
"_exp_inter" => object View(2){ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(3) "382" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №1" "slug" => string(0) "" "date" => string(19) "2013-08-06 23:18:02" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(3) "382" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №1" "slug" => string(0) "" "date" => string(19) "2013-08-06 23:18:02" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( ... ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( ... ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "382" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(75) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/exp_inter.php" protected _data => array(1) ( "vote" => object Model_Vote(36)
) }{ protected _has_many => array(1) ( "voteitems" => array(4) ( "foreign_key" => string(7) "vote_id" "through" => NULL "far_key" => string(11) "voteitem_id" "model" => string(8) "Voteitem" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( "id" => string(1) "1" "name" => string(77) "Где кончается город и начинается природа? " "count" => string(3) "851" "hash" => string(32) "FvmNh80ZnTdPcS8HbGmi8vuVDjUbgyjN" "hide" => string(1) "1" ) protected _changed => array(0) protected _original_values => array(5) ( "id" => string(1) "1" "name" => string(77) "Где кончается город и начинается природа? " "count" => string(3) "851" "hash" => string(32) "FvmNh80ZnTdPcS8HbGmi8vuVDjUbgyjN" "hide" => string(1) "1" ) 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) "vote" protected _object_plural => string(5) "votes" protected _table_name => string(5) "votes" protected _table_columns => array(5) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(2) "32" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( ... ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "vote" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(79) "/var/www/terres/data/www/terres.ru/terres/views/parts/spec/bottom_no_slider.php" protected _data => array(1) ( "specials" => object Database_MySQLi_Result(7)
"_news_other" => object View(2){ protected _internal_row => integer 0 protected _query => string(1523) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(68) "/var/www/terres/data/www/terres.ru/terres/views/parts/news/other.php" protected _data => array(1) ( "news" => object Database_MySQLi_Result(7)
"_banner" => object View(2){ protected _internal_row => integer 0 protected _query => string(581) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
) }{ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "497" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49
-
APPPATH/vendor/koseven/koseven/system/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()
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/Request/Client/Internal.php [ 94 ] » ReflectionMethod->invoke(arguments)
0
object Controller_House(12)
{ public template => object View(2)
{ protected _file => string(58) "/var/www/terres/data/www/terres.ru/terres/views/layout.php" protected _data => array(5) ( "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "author" => string(45) "Загородная недвижимость" "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "content" => object View(2)
public model_link => string(7) "applink" private _is_cached => bool TRUE private _cached_lifetime => integer 864000 private _query_cached_lifetime => integer 30 private _objects_global_counts_cached_lifetime => integer 86400 public session => object Session_Native(5){ protected _file => string(62) "/var/www/terres/data/www/terres.ru/terres/views/house/item.php" protected _data => array(12) ( "link" => object Model_Applink(40)
) }{ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"setup" => object Model_Setup(36){ protected _has_many => array(1) ( "blocks" => array(4) ( "foreign_key" => string(7) "page_id" "through" => NULL "far_key" => string(8) "block_id" "model" => string(5) "Block" ) ) protected _belongs_to => array(1) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) ) public directions => array(9) ( 0 => string(19) "Не указано" 8 => string(4) "СЗ" 1 => string(4) "СВ" 2 => string(2) "С" 3 => string(2) "З" 4 => string(2) "В" 5 => string(2) "Ю" 6 => string(4) "ЮЗ" 7 => string(4) "ЮВ" ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(15) ( "id" => string(6) "117508" "link_id" => string(8) "58292843" "anotation" => string(0) "" "text" => string(0) "" "title" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "description" => string(142) "Продажа загородного дома, Григорково, 43 км. от МКАД, площадь 6 coт., цена 4500000 руб." "keywords" => string(43) "продажа, загородный дом" "h1" => string(0) "" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "seo_text_content" => string(0) "" "seo_text_sidebar" => string(0) "" "seo_description" => string(0) "" "direction" => string(1) "0" ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "anotation" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(9) "anotation" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(10) "4294967295" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(8) "longtext" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "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 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "keywords" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "keywords" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "h1" => array(12) ( "type" => string(6) "string" "column_name" => string(2) "h1" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_content" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_content" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_text_sidebar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(16) "seo_text_sidebar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "seo_description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "seo_description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "display" => string(1) "1" "comment" => string(22) "Направление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"house" => object Model_House(36){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(12) ( "materials" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "material_id" "model" => string(5) "Param" ) "walls" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "wall_id" "model" => string(5) "Param" ) "backs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "back_id" "model" => string(5) "Param" ) "finishs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "finish_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "comms" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "comm_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(8) "house_id" "through" => string(13) "houses_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6)
"ground" => object Model_Ground(36){ protected _bound => array(3) ( ":model" => object Model_House(36) { *RECURSION* } ":original_values" => array(102) ( ... ) ":changed" => array(1) ( ... ) ) protected _rules => array(0) protected _labels => array(102) ( "id" => string(2) "id" "link_id" => string(7) "link_id" "user_id" => string(7) "user_id" "region2_id" => string(10) "region2_id" "region3_id" => string(10) "region3_id" "count_view" => string(10) "count_view" "count_phone_view" => string(16) "count_phone_view" "is_spec_lot" => string(11) "is_spec_lot" "is_spec_sidebar" => string(15) "is_spec_sidebar" "is_view" => string(7) "is_view" "is_deadline" => string(11) "is_deadline" "type" => string(4) "type" "other_materials" => string(15) "other_materials" "dist_mkad" => string(9) "dist_mkad" "dist_area" => string(9) "dist_area" "near_town" => string(9) "near_town" "region" => string(6) "region" "roads_village" => string(13) "roads_village" "near_water" => string(10) "near_water" "dist_water" => string(10) "dist_water" "dist_forest" => string(11) "dist_forest" "dist_stgd" => string(9) "dist_stgd" "dist_bus" => string(8) "dist_bus" "work_drive" => string(10) "work_drive" "weekend_drive" => string(13) "weekend_drive" "place" => string(5) "place" "gated_id" => string(8) "gated_id" "place_other" => string(11) "place_other" "price" => string(5) "price" "is_price" => string(8) "is_price" "is_mortgage" => string(11) "is_mortgage" "is_hirepay" => string(10) "is_hirepay" "is_chaffer" => string(10) "is_chaffer" "area_land" => string(9) "area_land" "purpose" => string(7) "purpose" "permit" => string(6) "permit" "is_three" => string(8) "is_three" "shape" => string(5) "shape" "area_house" => string(10) "area_house" "date_end" => string(8) "date_end" "show_only_year_from_date_end" => string(28) "show_only_year_from_date_end" "amt_levels" => string(10) "amt_levels" "amt_floor" => string(9) "amt_floor" "roofs" => string(5) "roofs" "is_attic" => string(8) "is_attic" "layout" => string(6) "layout" "base" => string(4) "base" "socle" => string(5) "socle" "furniture" => string(9) "furniture" "amt_rooms" => string(9) "amt_rooms" "amt_bedrooms" => string(12) "amt_bedrooms" "amt_bathrooms" => string(13) "amt_bathrooms" "is_vault" => string(8) "is_vault" "is_garage" => string(9) "is_garage" "garage" => string(6) "garage" "sauna" => string(5) "sauna" "pool" => string(4) "pool" "is_visa" => string(7) "is_visa" "video" => string(5) "video" "is_elec" => string(7) "is_elec" "elec" => string(4) "elec" "amt_elec" => string(8) "amt_elec" "ex_gas" => string(6) "ex_gas" "is_heat" => string(7) "is_heat" "heat" => string(4) "heat" "ex_ws" => string(5) "ex_ws" "ws" => string(2) "ws" "sr_ws" => string(5) "sr_ws" "is_sewage" => string(9) "is_sewage" "price_comm_land" => string(15) "price_comm_land" "price_comm_house" => string(16) "price_comm_house" "price_comm_month" => string(16) "price_comm_month" "guard" => string(5) "guard" "rgh_land" => string(8) "rgh_land" "rgh_house" => string(9) "rgh_house" "etc_text" => string(8) "etc_text" "lat" => string(3) "lat" "lon" => string(3) "lon" "zoom" => string(4) "zoom" "period_start" => string(12) "period_start" "period" => string(6) "period" "direction" => string(9) "direction" "external_id" => string(11) "external_id" "external_source_site_name" => string(25) "external_source_site_name" "import_date" => string(11) "import_date" "contact_name" => string(12) "contact_name" "hash" => string(4) "hash" "add_date" => string(8) "add_date" "deadline_date" => string(13) "deadline_date" "phone" => string(5) "phone" "address" => string(7) "address" "area_kitchen" => string(12) "area_kitchen" "television" => string(10) "television" "toilet" => string(6) "toilet" "shower" => string(6) "shower" "refrigerator" => string(12) "refrigerator" "washing_machine" => string(15) "washing_machine" "not_for_agents" => string(14) "not_for_agents" "view_index" => string(10) "view_index" "view_page" => string(9) "view_page" "near_stgd" => string(9) "near_stgd" "pmg" => string(3) "pmg" ) protected _empty_rules => array(2) ( 0 => string(9) "not_empty" 1 => string(7) "matches" ) protected _errors => array(0) protected _data => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) }
protected _object => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(102) ( "id" => string(6) "191346" "link_id" => string(8) "58292843" "user_id" => string(4) "1393" "region2_id" => string(4) "1003" "region3_id" => string(5) "10945" "count_view" => integer 65 "count_phone_view" => string(1) "0" "is_spec_lot" => string(1) "0" "is_spec_sidebar" => string(1) "0" "is_view" => string(1) "1" "is_deadline" => string(1) "0" "type" => string(3) "434" "other_materials" => string(0) "" "dist_mkad" => string(5) "43.00" "dist_area" => string(4) "0.00" "near_town" => string(20) "Григорково" "region" => string(35) "Московская область" "roads_village" => string(0) "" "near_water" => string(0) "" "dist_water" => string(4) "0.00" "dist_forest" => string(4) "0.00" "dist_stgd" => string(4) "0.00" "dist_bus" => string(4) "0.00" "work_drive" => string(4) "0.00" "weekend_drive" => string(4) "0.00" "place" => string(1) "0" "gated_id" => string(1) "0" "place_other" => string(0) "" "price" => string(10) "4500000.00" "is_price" => string(1) "0" "is_mortgage" => string(1) "0" "is_hirepay" => string(1) "0" "is_chaffer" => string(1) "0" "area_land" => string(4) "6.00" "purpose" => string(1) "0" "permit" => string(2) "23" "is_three" => string(1) "0" "shape" => string(1) "0" "area_house" => string(5) "76.20" "date_end" => string(19) "0000-00-00 00:00:00" "show_only_year_from_date_end" => string(1) "0" "amt_levels" => string(1) "0" "amt_floor" => string(1) "1" "roofs" => string(0) "" "is_attic" => string(1) "0" "layout" => string(1) "0" "base" => string(1) "0" "socle" => string(1) "0" "furniture" => string(1) "0" "amt_rooms" => string(1) "0" "amt_bedrooms" => string(1) "0" "amt_bathrooms" => string(0) "" "is_vault" => string(1) "0" "is_garage" => string(1) "0" "garage" => string(1) "0" "sauna" => string(1) "0" "pool" => string(2) "82" "is_visa" => string(1) "0" "video" => string(0) "" "is_elec" => string(1) "1" "elec" => string(3) "402" "amt_elec" => string(1) "0" "ex_gas" => string(2) "99" "is_heat" => string(1) "0" "heat" => string(1) "0" "ex_ws" => string(1) "0" "ws" => string(1) "0" "sr_ws" => string(1) "0" "is_sewage" => string(1) "1" "price_comm_land" => string(4) "0.00" "price_comm_house" => string(4) "0.00" "price_comm_month" => string(4) "0.00" "guard" => string(1) "0" "rgh_land" => string(1) "0" "rgh_house" => string(1) "0" "etc_text" => string(3391) "Дмитровское шоссе 43 км от МКАД, деревня Григорково. Дом 76.2 кв. м, участок 6 соток, готовый жилой дом в cтиле БAРHХАУС с пaнop …" "lat" => string(9) "56.215993" "lon" => string(9) "37.435571" "zoom" => string(2) "13" "period_start" => string(19) "0000-00-00 00:00:00" "period" => string(1) "0" "direction" => string(1) "0" "external_id" => string(10) "2147483647" "external_source_site_name" => string(10) "zagdom.net" "import_date" => string(19) "2025-03-04 04:15:09" "contact_name" => string(39) "Александр Аркадьевич" "hash" => string(40) "495b84af3d855bdcc982c91ee075d9c3ae6df419" "add_date" => string(19) "0000-00-00 00:00:00" "deadline_date" => string(19) "0000-00-00 00:00:00" "phone" => string(15) "8-985-333-09-92" "address" => string(0) "" "area_kitchen" => string(4) "0.00" "television" => string(1) "0" "toilet" => string(0) "" "shower" => string(0) "" "refrigerator" => string(1) "0" "washing_machine" => string(1) "0" "not_for_agents" => string(1) "0" "view_index" => string(1) "0" "view_page" => string(1) "1" "near_stgd" => string(0) "" "pmg" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "other_materials" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "other_materials" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "region" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roads_village" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(13) "roads_village" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "collation_name" => string(15) "utf8_general_ci" "comment" => string(66) "Описание подъездных путей к поселку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_mortgage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_mortgage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "display" => string(1) "1" "comment" => string(37) "Возможность ипотеки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_hirepay" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_hirepay" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(1) "1" "comment" => string(58) "Возможность рассрочки платежей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "area_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(23) "Площадь дома" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date_end" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "date_end" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "comment" => string(54) "Дата окончания строительства" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_only_year_from_date_end" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(3) "255" "column_name" => string(28) "show_only_year_from_date_end" "column_default" => string(1) "0" "data_type" => string(16) "tinyint unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(1) "1" "comment" => string(279) "Флаг того, отображать ли только значение года в дате окончания строительства (при импорте с некоторых сайтов они шлют не дату ок …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_levels" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "amt_levels" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "10" "comment" => string(35) "Количество уровней" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_floor" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_floor" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(2) "10" "comment" => string(33) "Количество этажей" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "roofs" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "roofs" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(29) "Высота потолков" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_attic" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_attic" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "display" => string(1) "1" "comment" => string(16) "Мансарда" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "layout" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "layout" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "display" => string(2) "11" "comment" => string(20) "Планировка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "base" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "base" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "display" => string(2) "11" "comment" => string(18) "Фундамент" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "socle" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "socle" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "11" "comment" => string(12) "Цоколь" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "furniture" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "furniture" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "display" => string(2) "11" "comment" => string(12) "Мебель" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_rooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "amt_rooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(33) "Количество комнат" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bedrooms" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "amt_bedrooms" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(2) "10" "comment" => string(33) "Количество спален" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_bathrooms" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "amt_bathrooms" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(37) "Количество санузлов" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_vault" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_vault" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "display" => string(1) "1" "comment" => string(52) "Подвал/техническое подполье" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "display" => string(1) "1" "comment" => string(27) "Наличие гаража" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "garage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "garage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "display" => string(2) "11" "comment" => string(10) "Гараж" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sauna" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sauna" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "display" => string(2) "11" "comment" => string(26) "Сауна или баня" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pool" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "pool" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "display" => string(2) "11" "comment" => string(14) "Бассейн" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_visa" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_visa" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "display" => string(1) "1" "comment" => string(39) "Возможность прописки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "11" "comment" => string(26) "Электричество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(33) "Наличие отопления" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "heat" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "heat" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "display" => string(2) "11" "comment" => string(18) "Отопление" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "ex_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "11" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_house" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_house" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(97) "Стоимость подключения дома к основным коммуникациям" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_month" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(16) "price_comm_month" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(132) "Средний размер ежемесячной платы за коммунальные услуги и обслуживание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "guard" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "guard" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "11" "comment" => string(20) "Ограждение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_land" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "rgh_land" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "11" "comment" => string(53) "Подтверждение права на землю" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rgh_house" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "rgh_house" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "11" "comment" => string(49) "Подтверждение права на дом" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 83 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 85 "comment" => string(516) "В это поле при импорте с внешнего сайта записывается, в частности, значение поля last-update-date, т.е. дата последнего обновлен …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 87 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(14) "Телефон" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Адрес" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_kitchen" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(12) "area_kitchen" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(25) "Площадь кухни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "television" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "television" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "display" => string(1) "1" "comment" => string(18) "Телевизор" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "toilet" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "toilet" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(19) "Туалет тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shower" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "shower" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "character_maximum_length" => string(3) "100" "collation_name" => string(15) "utf8_general_ci" "comment" => string(13) "Душ тек" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "refrigerator" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "refrigerator" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "display" => string(1) "1" "comment" => string(22) "Холодильник" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "washing_machine" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "washing_machine" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "display" => string(1) "1" "comment" => string(35) "Стиральная машинка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 98 "display" => string(1) "1" "comment" => string(66) "Пометка - Просьба агентам не звонить" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 99 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 100 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 101 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 102 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( "link" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Link" ) "user" => array(2) ( "foreign_key" => string(7) "user_id" "model" => string(4) "User" ) "region2" => array(2) ( "foreign_key" => string(10) "region2_id" "model" => string(6) "Region" ) "region3" => array(2) ( "foreign_key" => string(10) "region3_id" "model" => string(6) "Region" ) "gated" => array(2) ( "foreign_key" => string(8) "gated_id" "model" => string(5) "Gated" ) ) protected _has_many => array(9) ( "elecs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "elec_id" "model" => string(5) "Param" ) "gass" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "gass_id" "model" => string(5) "Param" ) "sewages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "sewage_id" "model" => string(5) "Param" ) "bldgs" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "bldg_id" "model" => string(5) "Param" ) "escorts" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(9) "escort_id" "model" => string(5) "Param" ) "roads_villages" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(16) "roads_village_id" "model" => string(5) "Param" ) "roads" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(7) "road_id" "model" => string(4) "Link" ) "roaddops" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(10) "roaddop_id" "model" => string(4) "Link" ) "locations" => array(4) ( "foreign_key" => string(9) "ground_id" "through" => string(14) "grounds_params" "far_key" => string(11) "location_id" "model" => string(4) "Link" ) ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( "id" => NULL "link_id" => NULL "user_id" => NULL "region2_id" => NULL "region3_id" => NULL "count_view" => NULL "count_phone_view" => NULL "is_spec_lot" => NULL "is_spec_sidebar" => NULL "is_view" => NULL "is_deadline" => NULL "type" => NULL "dist_mkad" => NULL "dist_area" => NULL "near_town" => NULL "region" => NULL "near_water" => NULL "dist_water" => NULL "dist_forest" => NULL "dist_stgd" => NULL "dist_bus" => NULL "work_drive" => NULL "weekend_drive" => NULL "place" => NULL "gated_id" => NULL "place_other" => NULL "price" => NULL "is_price" => NULL "is_weaving" => NULL "is_chaffer" => NULL "area_land" => NULL "purpose" => NULL "permit" => NULL "is_three" => NULL "shape" => NULL "video" => NULL "is_elec" => NULL "amt_elec" => NULL "ex_gas" => NULL "is_ws" => NULL "ws" => NULL "sr_ws" => NULL "is_sewage" => NULL "price_comm_land" => NULL "etc_text" => NULL "lat" => NULL "lon" => NULL "zoom" => NULL "period_start" => NULL "period" => NULL "direction" => NULL "external_id" => NULL "external_source_site_name" => NULL "import_date" => NULL "add_date" => NULL "contact_name" => NULL "hash" => NULL "deadline_date" => NULL "phone" => NULL "address" => NULL "pmg" => NULL "not_for_agents" => NULL "view_index" => NULL "view_page" => NULL "near_stgd" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "link_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(7) "link_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "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" ) "user_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "user_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(0) "" "privileges" => string(31) "select,insert,update,references" ) "region2_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region2_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(24) "Область level = 2" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "region3_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "region3_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(20) "Город level = 3" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "count_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "10" "comment" => string(32) "Кол-во просмотров" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_phone_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "count_phone_view" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_lot" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_spec_lot" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "1" "comment" => string(45) "Специальное предложение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_spec_sidebar" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "is_spec_sidebar" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "1" "comment" => string(76) "Специальное предложение в правой колонке" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_view" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_view" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "1" "comment" => string(22) "Просмотрено" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_deadline" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "is_deadline" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "display" => string(1) "1" "comment" => string(40) "Истек срок размещения" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "type" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "display" => string(2) "11" "comment" => string(31) "Тип недвижимости" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_mkad" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_mkad" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние от МКАД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_area" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_area" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(75) "Расстояние от основного шоссе до участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_town" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший населенный пункт" "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" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "250" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_water" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "near_water" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(50) "Ближайший природный водоем" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_water" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "dist_water" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(61) "Расстояние до природного водоема" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_forest" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(11) "dist_forest" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(34) "Расстояние до леса" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_stgd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "dist_stgd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(65) "Расстояние до ближайшей Ж/Д станции" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "dist_bus" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(8) "dist_bus" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(84) "Расстояние до ближайшей автобусной остановки" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "work_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "work_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(70) "Среднее время езды до МКАД рабочие дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "weekend_drive" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(13) "weekend_drive" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(72) "Среднее время езды до МКАД выходные дни" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "place" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "display" => string(2) "11" "comment" => string(34) "Объект находится в" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "gated_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "place_other" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "place_other" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "numeric_precision" => string(2) "20" "numeric_scale" => string(1) "2" "comment" => string(8) "Цена" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "is_price" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_price" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "display" => string(1) "1" "comment" => string(34) "Не отображать цену" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_weaving" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_weaving" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "display" => string(1) "1" "comment" => string(15) "За сотку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_chaffer" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "is_chaffer" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "display" => string(1) "1" "comment" => string(8) "Торг" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "area_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "area_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(29) "Площадь участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purpose" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "purpose" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "display" => string(2) "11" "comment" => string(56) "Назначение земельного участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "permit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "permit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "display" => string(2) "11" "comment" => string(58) "Вид разрешенного использования" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_three" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "is_three" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "display" => string(1) "1" "comment" => string(76) "Наличие многолетних деревьев на участках" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "shape" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "shape" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "display" => string(2) "11" "comment" => string(33) "Состояние участка" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "video" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "video" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "collation_name" => string(15) "utf8_general_ci" "comment" => string(10) "Видео" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "is_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "display" => string(1) "1" "comment" => string(41) "Наличие электричества" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "amt_elec" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "amt_elec" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "display" => string(2) "10" "comment" => string(20) "Количество" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ex_gas" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "ex_gas" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "display" => string(2) "11" "comment" => string(23) "Наличие газа" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "is_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "display" => string(1) "1" "comment" => string(41) "Наличие водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(26) "Водоснабжение" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sr_ws" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "sr_ws" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "display" => string(2) "11" "comment" => string(43) "Источник водоснабжения" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_sewage" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "is_sewage" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "display" => string(1) "1" "comment" => string(37) "Наличие канализации" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price_comm_land" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(15) "price_comm_land" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(130) "Ориентировочная стоимость подведения основных коммуникаций к участку" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "etc_text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "etc_text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "collation_name" => string(15) "utf8_general_ci" "comment" => string(45) "Дополнительное описание" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(19) "Широта Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(21) "Долгота Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "display" => string(2) "10" "comment" => string(29) "Приближение Google" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period_start" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "period_start" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "direction" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "direction" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "display" => string(1) "1" "comment" => string(72) "Направление берется из основного шоссе" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "external_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 52 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "external_source_site_name" => array(12) ( "type" => string(6) "string" "column_name" => string(25) "external_source_site_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(2) "50" "collation_name" => string(15) "utf8_general_ci" "comment" => string(235) "Имя сайта, с которого была импортирована запись (если запись не была импортирована с внешнего сайта, то это поле остаётся пустым …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "import_date" => array(10) ( "type" => string(6) "string" "column_name" => string(11) "import_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 54 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "add_date" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "add_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "comment" => string(64) "Дата и время добавления записи в БД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "contact_name" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "contact_name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "hash" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hash" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 57 "character_maximum_length" => string(2) "40" "collation_name" => string(15) "utf8_general_ci" "comment" => string(527) "Хеш по полям объекта-источника данных при импорте (если текущая запись была импортирована с внешнего сайта). Поле необходимо для …" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "deadline_date" => array(10) ( "type" => string(6) "string" "column_name" => string(13) "deadline_date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "address" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "address" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "character_maximum_length" => string(3) "200" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "pmg" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "pmg" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "not_for_agents" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "not_for_agents" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_index" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "view_index" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "view_page" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(9) "view_page" "column_default" => string(1) "1" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "near_stgd" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "near_stgd" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(39) "Ближайшая Ж/Д станция" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(7) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _table_name => string(5) "setup" 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(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) protected _changed => array(0) protected _original_values => array(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) 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(5) "setup" protected _object_plural => string(6) "setups" protected _table_columns => array(97) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "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(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_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 FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "copyright" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "copyright" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "counter" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "counter" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "like" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "like" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_gated_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_gated_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_house_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_house_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_ground_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "limit_ground_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name_site" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "name_site" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_suffix" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_suffix" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "fileSizeLimit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimitExt" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "fileSizeLimitExt" "column_default" => string(2) "MB" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(2) "KB" 1 => string(2) "MB" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileTypeExts" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "fileTypeExts" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "gated_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "gated_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "gated_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "ground_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(21) "ground_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "ground_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "house_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "house_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "house_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_chars" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "count_chars" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "10" "comment" => string(56) "Кол-во символов в комментариях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "gated_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для КП в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "ground_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗУ в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "house_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗД в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "index_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "index_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 83 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 85 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 87 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_rapid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "show_rapid" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "footer" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(6) "footer" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "usd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "usd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "eur" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "eur" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
"houses" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "setup" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(4362) "SELECT `link`.`id` AS `link:id`, `link`.`parent_id` AS `link:parent_id`, `link`.`group_id` AS `link:group_id`, `link`.`use_id` A …" protected _result => object mysqli_result(5)
"count_comments" => integer 0 "_navbar" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3326 protected _current_row => integer 0 protected _as_object => string(11) "Model_House" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/navbar.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_header" => object View(2){ protected _internal_row => integer 3 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 3 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/header.php" protected _data => array(1) ( "menu" => object Database_MySQLi_Result(7)
"_comment" => object View(2){ protected _internal_row => integer 0 protected _query => string(555) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(65) "/var/www/terres/data/www/terres.ru/terres/views/parts/comment.php" protected _data => array(3) ( "comments" => array(0) "count_comments" => integer 0 "banner_for_ads_block_1" => object View(2)
"_similar" => object View(2){ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
) }{ private _sub_link => array(21) ( ... ) private _type_house => array(6) ( ... ) protected _has_one => array(11) ( ... ) protected _has_many => array(7) ( ... ) protected _belongs_to => array(3) ( ... ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( ... ) protected _changed => array(0) protected _original_values => array(14) ( ... ) protected _related => array(2) ( ... ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "138945" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) }{ protected _file => string(71) "/var/www/terres/data/www/terres.ru/terres/views/parts/similar/house.php" protected _data => array(1) ( "link" => object Model_Applink(40)
"_sidebar_seo" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
) }{ protected _has_many => array(1) ( ... ) protected _belongs_to => array(1) ( ... ) public directions => array(9) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( ... ) protected _changed => array(0) protected _original_values => array(15) ( ... ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }
"house" => object Model_House(36){ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( ... ) protected _has_many => array(12) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6) { ... } protected _object => array(102) ( ... ) protected _changed => array(0) protected _original_values => array(102) ( ... ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }
"ground" => object Model_Ground(36){ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( ... ) protected _has_many => array(9) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( ... ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) 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) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(69) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/seo.php" protected _data => array(5) ( "link" => object Model_Applink(40)
"_spec_bottom" => object View(2){ protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "parent_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool TRUE ) "group_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "use_id" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "sub" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "name" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "slug" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "date" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "sort" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) "hide" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "top_nav" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "query" => array(2) ( "type" => string(6) "string" "is_nullable" => bool FALSE ) "template" => array(2) ( "type" => string(6) "string" "is_nullable" => bool TRUE ) "is_show_child_links_on_sitemap_page" => array(2) ( "type" => string(3) "int" "is_nullable" => bool FALSE ) ) private model_link => string(7) "Applink" public reg_rus => array(1) ( 0 => string(51) "Москва и Московская область" ) private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(8) "58292843" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "11" "name" => string(140) "Продажа загородного дома Дмитровское шоссе (Московская область)43 км. от МКАД" "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" "date" => string(19) "2025-03-04 04:15:09" "sort" => string(1) "0" "hide" => string(1) "0" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _related => array(3) ( "page" => object Model_Page(37)
"specials" => object Database_MySQLi_Result(7){ protected _has_many => array(1) ( ... ) protected _belongs_to => array(1) ( ... ) public directions => array(9) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(15) ( ... ) protected _changed => array(0) protected _original_values => array(15) ( ... ) 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) "page" protected _object_plural => string(5) "pages" protected _table_name => string(5) "pages" protected _table_columns => array(15) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "117508" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "page" protected _behaviors => array(0) protected _private_columns => bool FALSE }
"house" => object Model_House(36){ protected _table_name => string(6) "houses" protected _belongs_to => array(5) ( ... ) protected _has_many => array(12) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => object Validation(6) { ... } protected _object => array(102) ( ... ) protected _changed => array(0) protected _original_values => array(102) ( ... ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "house" protected _object_plural => string(6) "houses" protected _table_columns => array(102) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "191346" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "house" protected _behaviors => array(0) protected _private_columns => bool FALSE }
"ground" => object Model_Ground(36){ protected _table_name => string(7) "grounds" protected _belongs_to => array(5) ( ... ) protected _has_many => array(9) ( ... ) protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(65) ( ... ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "ground" protected _object_plural => string(7) "grounds" protected _table_columns => array(65) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "ground" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) 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) "applink" protected _object_plural => string(8) "applinks" protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "58292843" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "applink" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 0 protected _query => string(1524) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
"seo_text" => string(0) "" "_banner" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
"_exp_inter" => object View(2){ private _sub_link => array(21) ( ... ) private _type_house => array(6) ( ... ) protected _has_one => array(11) ( ... ) protected _has_many => array(7) ( ... ) protected _belongs_to => array(3) ( ... ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( ... ) protected _changed => array(0) protected _original_values => array(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(4) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( ... ) 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) "382" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) }{ protected _file => string(75) "/var/www/terres/data/www/terres.ru/terres/views/parts/sidebar/exp_inter.php" protected _data => array(1) ( "vote" => object Model_Vote(36)
) }{ protected _has_many => array(1) ( ... ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(5) ( ... ) protected _changed => array(0) protected _original_values => array(5) ( ... ) 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) "vote" protected _object_plural => string(5) "votes" protected _table_name => string(5) "votes" protected _table_columns => array(5) ( ... ) 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) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6) { ... } 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) "vote" protected _behaviors => array(0) protected _private_columns => bool FALSE }
) }{ protected _file => string(79) "/var/www/terres/data/www/terres.ru/terres/views/parts/spec/bottom_no_slider.php" protected _data => array(1) ( "specials" => object Database_MySQLi_Result(7)
"_news_other" => object View(2){ protected _internal_row => integer 0 protected _query => string(1523) "SELECT `file`.`id` AS `file:id`, `file`.`link_id` AS `file:link_id`, `file`.`user_id` AS `file:user_id`, `file`.`special_id` AS …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 3 protected _current_row => integer 0 protected _as_object => string(13) "Model_Special" protected _object_params => NULL }{ protected _file => string(68) "/var/www/terres/data/www/terres.ru/terres/views/parts/news/other.php" protected _data => array(1) ( "news" => object Database_MySQLi_Result(7)
"_banner" => object View(2){ protected _internal_row => integer 0 protected _query => string(581) "SELECT `applink`.`id` AS `id`, `applink`.`parent_id` AS `parent_id`, `applink`.`group_id` AS `group_id`, `applink`.`use_id` AS ` …" protected _result => object mysqli_result(5)
) }{ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 4 protected _current_row => integer 0 protected _as_object => string(13) "Model_Applink" protected _object_params => NULL }{ protected _file => string(64) "/var/www/terres/data/www/terres.ru/terres/views/parts/banner.php" protected _data => array(1) ( "banner" => object Model_Link(38)
) }{ private _sub_link => array(21) ( 1 => array(1) ( "link" => string(16) "Страницы" ) 2 => array(1) ( "news" => string(14) "Новости" ) 3 => array(1) ( "article" => string(12) "Статьи" ) 4 => array(1) ( "road" => string(10) "Шоссе" ) 5 => array(1) ( "county" => string(12) "Округа" ) 6 => array(1) ( "region" => string(12) "Районы" ) 7 => array(1) ( "section" => string(39) "Подгруппы документов" ) 8 => array(1) ( "legal" => string(37) "Правовая информация" ) 9 => array(1) ( "ward" => string(54) "Адреса регистрационных палат" ) 10 => array(1) ( "banner" => string(14) "Баннеры" ) 11 => array(1) ( "house" => string(29) "Загородные дома" ) 12 => array(1) ( "company" => string(29) "Участники рынка" ) 13 => array(1) ( "ground" => string(33) "Земельные участки" ) 14 => array(1) ( "gallery" => string(14) "Галерея" ) 15 => array(1) ( "gated" => string(35) "Коттеджные поселки" ) 16 => array(1) ( "3dview" => string(19) "3D Панорама" ) 17 => array(1) ( "genplan" => string(14) "Генплан" ) 18 => array(1) ( "spec" => string(30) "Спецпредложения" ) 19 => array(1) ( "locations" => string(17) "Районы МО" ) 20 => array(1) ( "letter" => string(23) "Тексты писем" ) 21 => array(1) ( "gallery_of_layouts" => string(35) "Галерея планировок" ) ) private _type_house => array(6) ( 1 => string(16) "коттеджа" 2 => string(18) "таунхауса" 3 => string(8) "дачи" 4 => string(18) "лейнхауса" 5 => string(22) "квадрохауса" 6 => string(16) "дуплекса" ) protected _has_one => array(11) ( "page" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Page" ) "file" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "File" ) "tfile" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Tfile" ) "ward" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(4) "Ward" ) "banner" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Banner" ) "dview" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Dview" ) "genplan" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Genplan" ) "company" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(7) "Company" ) "house" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "House" ) "ground" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(6) "Ground" ) "gated" => array(2) ( "foreign_key" => string(7) "link_id" "model" => string(5) "Gated" ) ) protected _has_many => array(7) ( "child" => array(4) ( "foreign_key" => string(9) "parent_id" "through" => NULL "far_key" => string(8) "child_id" "model" => string(4) "Link" ) "gitems" => array(4) ( "foreign_key" => string(8) "group_id" "through" => NULL "far_key" => string(8) "gitem_id" "model" => string(4) "Link" ) "region_wards" => array(4) ( "foreign_key" => string(9) "region_id" "through" => NULL "far_key" => string(14) "region_ward_id" "model" => string(4) "Ward" ) "county_wards" => array(4) ( "foreign_key" => string(9) "county_id" "through" => NULL "far_key" => string(14) "county_ward_id" "model" => string(4) "Ward" ) "fastlink" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(11) "fastlink_id" "model" => string(8) "Fastlink" ) "comments" => array(4) ( "foreign_key" => string(7) "link_id" "through" => NULL "far_key" => string(10) "comment_id" "model" => string(7) "Comment" ) "actualhrefs" => array(4) ( "foreign_key" => string(7) "link_id" "through" => string(17) "actualhrefs_links" "far_key" => string(13) "actualhref_id" "model" => string(10) "Actualhref" ) ) protected _belongs_to => array(3) ( "parent" => array(2) ( "foreign_key" => string(9) "parent_id" "model" => string(4) "Link" ) "group" => array(2) ( "foreign_key" => string(8) "group_id" "model" => string(4) "Link" ) "use" => array(2) ( "foreign_key" => string(6) "use_id" "model" => string(3) "Use" ) ) protected _load_with => array(0) protected _validation => NULL protected _object => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(14) ( "id" => string(3) "497" "parent_id" => NULL "group_id" => string(1) "0" "use_id" => string(1) "0" "sub" => string(2) "10" "name" => string(17) "Баннер №3" "slug" => string(0) "" "date" => string(19) "2013-08-12 21:41:39" "sort" => string(1) "3" "hide" => string(1) "1" "top_nav" => string(1) "0" "query" => string(0) "" "template" => string(7) "default" "is_show_child_links_on_sitemap_page" => string(1) "0" ) 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) "link" protected _object_plural => string(5) "links" protected _table_name => string(5) "links" protected _table_columns => array(14) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "parent_id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(9) "parent_id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(57) "Дерево внутри любого раздела sub" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "group_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "group_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(60) "Группа внитри любого объекта parent" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "use_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(6) "use_id" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(44) "Назначение для страницы" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sub" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(3) "sub" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(36) "Отношение к разделу" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => string(0) "" "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "date" => array(10) ( "type" => string(6) "string" "column_name" => string(4) "date" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sort" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(4) "sort" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(20) "Сортировка" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "hide" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "hide" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( ... ) "comment" => string(57) "Скрывать на сайте или в админке" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "top_nav" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "top_nav" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "collation_name" => string(15) "utf8_general_ci" "options" => array(3) ( ... ) "comment" => string(47) "Показывать в Верхнем меню" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "query" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "query" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 12 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "template" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "template" "column_default" => string(7) "default" "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "is_show_child_links_on_sitemap_page" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(35) "is_show_child_links_on_sitemap_page" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "display" => string(1) "1" "comment" => string(151) "Флаг, показывающий, нужно ли выводить дочерние элементы link на странице карты сайта" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "497" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
) }{ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "link" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( ... ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(0) protected _destroyed => bool FALSE }
public setup => object Model_Setup(36){ protected _table_name => string(5) "setup" 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(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) protected _changed => array(0) protected _original_values => array(97) ( "id" => string(1) "1" "phone" => string(31) "+7 (995) <span>898-92-21</span>" "email" => string(14) "info@terres.ru" "skype" => string(0) "" "copyright" => string(159) "© 2013 - 2025 Terres.ru - Загородная недвижимость. Все права защищены. <a href="/poisk-kp">Найти поселок</a>" "counter" => string(1430) "<noindex> <!-- Yandex.Metrika counter --> <script type="text/javascript" > (function (d, w, c) { (w[c] = w[c] || []) …" "like" => string(216) "<script src="//yandex.st/share/share.js" async></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareQuickS …" "limit_gated_tab" => string(2) "15" "limit_house_tab" => string(2) "15" "limit_ground_tab" => string(2) "15" "name_site" => string(57) "Terres.ru - Загородная недвижимость" "title_suffix" => string(12) " - TERRES.RU" "fileSizeLimit" => string(1) "5" "fileSizeLimitExt" => string(2) "MB" "fileTypeExts" => string(20) "*.jpg; *.jpeg; *.png" "gated_lat" => string(9) "55.756893" "gated_lon" => string(9) "37.932783" "gated_zoom" => string(1) "7" "gated_maxZoom" => string(2) "18" "gated_maxClusterZoom" => string(2) "16" "gated_isShowMap" => string(1) "0" "grounds_link_1_title_in_actuals_block" => string(52) "Недорогие земельные участки" "grounds_link_1_href_in_actuals_block" => string(24) "/zem-cena/nedorogo-do800" "grounds_link_2_title_in_actuals_block" => string(21) "Участки ИЖС" "grounds_link_2_href_in_actuals_block" => string(17) "/zu-param/zem-igs" "grounds_link_3_title_in_actuals_block" => string(46) "Участки с коммуникациями" "grounds_link_3_href_in_actuals_block" => string(13) "/zu-param/vse" "grounds_link_4_title_in_actuals_block" => string(0) "" "grounds_link_4_href_in_actuals_block" => string(0) "" "grounds_link_5_title_in_actuals_block" => string(0) "" "grounds_link_5_href_in_actuals_block" => string(0) "" "grounds_link_6_title_in_actuals_block" => string(0) "" "grounds_link_6_href_in_actuals_block" => string(0) "" "houses_link_1_title_in_actuals_block" => string(0) "" "houses_link_1_href_in_actuals_block" => string(0) "" "houses_link_2_title_in_actuals_block" => string(0) "" "houses_link_2_href_in_actuals_block" => string(0) "" "houses_link_3_title_in_actuals_block" => string(0) "" "houses_link_3_href_in_actuals_block" => string(0) "" "houses_link_4_title_in_actuals_block" => string(0) "" "houses_link_4_href_in_actuals_block" => string(0) "" "houses_link_5_title_in_actuals_block" => string(0) "" "houses_link_5_href_in_actuals_block" => string(0) "" "houses_link_6_title_in_actuals_block" => string(0) "" "houses_link_6_href_in_actuals_block" => string(0) "" "gateds_link_1_title_in_actuals_block" => string(41) "Поселки в Новой Москве" "gateds_link_1_href_in_actuals_block" => string(14) "/kp-new-moscow" "gateds_link_2_title_in_actuals_block" => string(50) "Эконом поселки Подмосковья" "gateds_link_2_href_in_actuals_block" => string(15) "/poselki-econom" "gateds_link_3_title_in_actuals_block" => string(0) "" "gateds_link_3_href_in_actuals_block" => string(0) "" "gateds_link_4_title_in_actuals_block" => string(0) "" "gateds_link_4_href_in_actuals_block" => string(0) "" "gateds_link_5_title_in_actuals_block" => string(0) "" "gateds_link_5_href_in_actuals_block" => string(0) "" "gateds_link_6_title_in_actuals_block" => string(0) "" "gateds_link_6_href_in_actuals_block" => string(0) "" "ground_lat" => string(9) "55.876873" "ground_lon" => string(9) "37.565428" "ground_zoom" => string(1) "7" "ground_maxZoom" => string(2) "18" "ground_maxClusterZoom" => string(2) "16" "ground_isShowMap" => string(1) "0" "house_lat" => string(9) "55.784317" "house_lon" => string(9) "37.565428" "house_zoom" => string(1) "8" "house_maxZoom" => string(2) "18" "house_maxClusterZoom" => string(2) "16" "house_isShowMap" => string(1) "0" "gated_vote" => string(1) "1" "ground_vote" => string(1) "1" "house_vote" => string(1) "1" "count_chars" => string(1) "0" "gated_period" => string(1) "0" "ground_period" => string(2) "60" "house_period" => string(2) "60" "index_isShowMap" => string(1) "0" "house_er1" => string(158) "Объявление будет размещено сроком на 14 дней, после чего его необходимо будет продлить." "house_er2" => string(0) "" "house_er3" => string(0) "" "house_er4" => string(0) "" "house_ms1" => string(99) "Поля с красной звездочкой обязательны для заполениня." "house_ms2" => string(0) "" "house_ms3" => string(0) "" "house_ms4" => string(0) "" "ground_er1" => string(0) "" "ground_er2" => string(0) "" "ground_er3" => string(0) "" "ground_er4" => string(0) "" "ground_ms1" => string(0) "" "ground_ms2" => string(0) "" "ground_ms3" => string(0) "" "ground_ms4" => string(0) "" "show_rapid" => string(1) "0" "footer" => string(2568) "<div class="uk-grid-small uk-child-width-expand@s" uk-grid> <div> <h5>Загородная недвижимость</h5> <ul class="uk-list"> …" "usd" => string(5) "74.59" "eur" => string(5) "80.72" ) 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(5) "setup" protected _object_plural => string(6) "setups" protected _table_columns => array(97) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(1) "0" "max" => string(10) "4294967295" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(12) "int unsigned" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "phone" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "phone" "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(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_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 FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "copyright" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "copyright" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "counter" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(7) "counter" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "like" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "like" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_gated_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_gated_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_house_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "limit_house_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "limit_ground_tab" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "limit_ground_tab" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "display" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name_site" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "name_site" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_suffix" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "title_suffix" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimit" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "fileSizeLimit" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 13 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileSizeLimitExt" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "fileSizeLimitExt" "column_default" => string(2) "MB" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 14 "collation_name" => string(15) "utf8_general_ci" "options" => array(2) ( 0 => string(2) "KB" 1 => string(2) "MB" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "fileTypeExts" => array(12) ( "type" => string(6) "string" "column_name" => string(12) "fileTypeExts" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 16 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "gated_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 17 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 18 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "gated_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 19 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "gated_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "gated_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 22 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 23 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 24 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 25 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 29 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(37) "grounds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "grounds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "grounds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗУ" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 41 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "houses_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 44 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "houses_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "houses_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 45 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице ЗД" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_1_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 46 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_1_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_1_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 47 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_2_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 48 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_2_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_2_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 49 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_3_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 50 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_3_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_3_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 51 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_4_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 52 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_4_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_4_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 53 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_5_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 54 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_5_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_5_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 55 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_title_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(36) "gateds_link_6_title_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 56 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(116) "Заголовок ссылки из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gateds_link_6_href_in_actuals_block" => array(12) ( "type" => string(6) "string" "column_name" => string(35) "gateds_link_6_href_in_actuals_block" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 57 "character_maximum_length" => string(3) "150" "collation_name" => string(15) "utf8_general_ci" "comment" => string(97) "Ссылка из блока "Актуально" на разводящей странице КП" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 58 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(10) "ground_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 59 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 60 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(14) "ground_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 61 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(21) "ground_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 62 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(16) "ground_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 63 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lat" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lat" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 64 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_lon" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(9) "house_lon" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 65 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "6" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_zoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_zoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 66 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "house_maxZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 67 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_maxClusterZoom" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(20) "house_maxClusterZoom" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 68 "display" => string(2) "10" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "house_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 69 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "gated_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 70 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "ground_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 71 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_vote" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "house_vote" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 72 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_chars" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "count_chars" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 73 "display" => string(2) "10" "comment" => string(56) "Кол-во символов в комментариях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gated_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "gated_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 74 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для КП в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(13) "ground_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 75 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗУ в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_period" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "house_period" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 76 "display" => string(2) "10" "comment" => string(74) "Срок размещения объявлений для ЗД в днях" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "index_isShowMap" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(15) "index_isShowMap" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 77 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 78 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 79 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 80 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 81 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 82 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 83 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 84 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "house_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "house_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 85 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 86 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 87 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 88 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_er4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_er4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 89 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms1" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms1" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 90 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms2" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms2" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 91 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms3" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms3" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 92 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ground_ms4" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "ground_ms4" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 93 "character_maximum_length" => string(3) "255" "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "show_rapid" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "show_rapid" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 94 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "footer" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(6) "footer" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 95 "collation_name" => string(15) "utf8_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "usd" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "usd" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 96 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "eur" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(3) "eur" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool FALSE "ordinal_position" => integer 97 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
public distance => array(9) ( 0 => integer 5 1 => integer 10 2 => integer 20 3 => integer 30 4 => integer 40 5 => integer 50 6 => integer 60 7 => integer 70 8 => integer 100 ) public auto_render => bool TRUE public request => object Request(19){ protected _connection_id => string(40) "ddf5db112d9cdbdbcedc6ab7be16fafc9b504921" protected _identifier => string(1) "`" public last_query => string(3707) "SELECT `house`.`id` AS `id`, `house`.`link_id` AS `link_id`, `house`.`user_id` AS `user_id`, `house`.`region2_id` AS `region2_id …" protected _instance => string(6) "reg_ru" protected _connection => object mysqli(18)
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) "setup" protected _behaviors => array(0) protected _private_columns => bool FALSE }{ 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 sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(9) "localhost" "database" => string(6) "terres" "persistent" => bool FALSE "ssl" => NULL "variables" => array(1) ( "sql_mode" => string(22) "NO_ENGINE_SUBSTITUTION" ) ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(22) "zagorodnye-doma/<slug>" protected _regex => array(1) ( "slug" => string(14) "[a-zA-Z0-9_-]+" ) protected _defaults => array(2) ( "controller" => string(5) "house" "action" => string(5) "index" ) protected _route_regex => string(46) "#^zagorodnye-doma/(?P<slug>[a-zA-Z0-9_-]+)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "House" protected _action => string(5) "index" protected _uri => string(82) "zagorodnye-doma/prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" protected _external => bool FALSE protected _params => array(1) ( "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" ) 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.0" }89 90 // Create a new instance of the controller 91 $controller = $class->newInstance($request, $response); 92 93 // Run the controller's execute() method 94 $response = $class->getMethod('execute')->invoke($controller); 95 96 if ( ! $response instanceof Response) 97 { 98 // Controller failed to return a Response. 99 throw new Kohana_Exception('Controller failed to return a Response');
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(22) "zagorodnye-doma/<slug>" protected _regex => array(1) ( "slug" => string(14) "[a-zA-Z0-9_-]+" ) protected _defaults => array(2) ( "controller" => string(5) "house" "action" => string(5) "index" ) protected _route_regex => string(46) "#^zagorodnye-doma/(?P<slug>[a-zA-Z0-9_-]+)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "House" protected _action => string(5) "index" protected _uri => string(82) "zagorodnye-doma/prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" protected _external => bool FALSE protected _params => array(1) ( "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }109 $orig_response = $response = Response::factory(['_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))
-
APPPATH/vendor/koseven/koseven/system/classes/Kohana/Request.php [ 1000 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(22) "zagorodnye-doma/<slug>" protected _regex => array(1) ( "slug" => string(14) "[a-zA-Z0-9_-]+" ) protected _defaults => array(2) ( "controller" => string(5) "house" "action" => string(5) "index" ) protected _route_regex => string(46) "#^zagorodnye-doma/(?P<slug>[a-zA-Z0-9_-]+)$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "House" protected _action => string(5) "index" protected _uri => string(82) "zagorodnye-doma/prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" protected _external => bool FALSE protected _params => array(1) ( "slug" => string(66) "prodazha-zagorodnogo-doma-dmitrovskoe-shosse43-km-ot-mkad-58292843" ) 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) }
}995 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', [ 996 ':uri' => $this->_uri, 997 ]); 998 } 999 1000 return $this->_client->execute($this); 1001 } 1002 1003 /** 1004 * Returns whether this request is the initial request Kohana received. 1005 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 31 ] » Kohana_Request->execute()
26 } else { 27 // Development или Production 28 Debugger::enable(Kohana::$environment === Kohana::PRODUCTION ? Debugger::Production : Debugger::Development, APPPATH . 'logs'); 29 30 echo Request::factory(true, [], false) 31 ->execute() 32 ->send_headers(true) 33 ->body(); 34 }
Комментарии и отзывы