APPPATH/views/viewgalleries.php [ 3 ]
1 <?php
2 foreach ($galleries as $key => $value) {
3 if (count($value['media']) == 0) {
4 continue;
5 }
6 ?>
7 <div>
8 <?php
-
APPPATH/views/viewgalleries.php [ 3 ] » Kohana_Core::error_handler(arguments)
0
integer 2
1
string(74) "count(): Parameter must be an array or an object that implements Countable"
2
string(54) "/var/www/banket.kz/application/views/viewgalleries.php"
3
integer 3
4
array(7) ( "kohana_view_filename" => string(54) "/var/www/banket.kz/application/views/viewgalleries.php" "kohana_view_data" => array(3) ( "id" => integer 61526 "url" => string(49) "karaganda/banquetinghall/restoran-bahus9?id=61526" "galleries" => array(3) ( 859683 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859684 1 => integer 859685 2 => integer 859686 3 => integer 859687 4 => integer 859688 5 => integer 859689 6 => integer 859690 7 => integer 859691 ) ) 859692 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859693 1 => integer 859694 2 => integer 859695 3 => integer 859696 4 => integer 859697 5 => integer 859698 6 => integer 859699 7 => integer 859700 ) ) 859701 => array(1) ( "value" => bool TRUE ) ) ) "id" => integer 61526 "url" => string(49) "karaganda/banquetinghall/restoran-bahus9?id=61526" "galleries" => array(3) ( 859683 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859684 1 => integer 859685 2 => integer 859686 3 => integer 859687 4 => integer 859688 5 => integer 859689 6 => integer 859690 7 => integer 859691 ) ) 859692 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859693 1 => integer 859694 2 => integer 859695 3 => integer 859696 4 => integer 859697 5 => integer 859698 6 => integer 859699 7 => integer 859700 ) ) 859701 => array(1) ( "value" => bool TRUE ) ) "value" => array(1) ( "value" => bool TRUE ) "key" => integer 859701 )
1 <?php 2 foreach ($galleries as $key => $value) { 3 if (count($value['media']) == 0) { 4 continue; 5 } 6 ?> 7 <div> 8 <?php
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(54) "/var/www/banket.kz/application/views/viewgalleries.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(54) "/var/www/banket.kz/application/views/viewgalleries.php"
1
array(3) ( "id" => integer 61526 "url" => string(49) "karaganda/banquetinghall/restoran-bahus9?id=61526" "galleries" => array(3) ( 859683 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859684 1 => integer 859685 2 => integer 859686 3 => integer 859687 4 => integer 859688 5 => integer 859689 6 => integer 859690 7 => integer 859691 ) ) 859692 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859693 1 => integer 859694 2 => integer 859695 3 => integer 859696 4 => integer 859697 5 => integer 859698 6 => integer 859699 7 => integer 859700 ) ) 859701 => array(1) ( "value" => bool TRUE ) ) )
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
SYSPATH/classes/Kohana/Response.php [ 160 ] » Kohana_View->__toString()
155 public function body($content = NULL) 156 { 157 if ($content === NULL) 158 return $this->_body; 159 160 $this->_body = (string) $content; 161 return $this; 162 } 163 164 /** 165 * Gets or sets the HTTP protocol. The standard protocol to use
-
APPPATH/classes/Controller/Item.php [ 67 ] » Kohana_Response->body(arguments)
0
object View(2)
{ protected _file => string(54) "/var/www/banket.kz/application/views/viewgalleries.php" protected _data => array(3) ( "id" => integer 61526 "url" => string(49) "karaganda/banquetinghall/restoran-bahus9?id=61526" "galleries" => array(3) ( 859683 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859684 1 => integer 859685 2 => integer 859686 3 => integer 859687 4 => integer 859688 5 => integer 859689 6 => integer 859690 7 => integer 859691 ) ) 859692 => array(2) ( "value" => bool TRUE "media" => array(8) ( 0 => integer 859693 1 => integer 859694 2 => integer 859695 3 => integer 859696 4 => integer 859697 5 => integer 859698 6 => integer 859699 7 => integer 859700 ) ) 859701 => array(1) ( "value" => bool TRUE ) ) ) }
62 if (count($data['item']->getGallery()->get() ?? []) == 0) { 63 return NULL; 64 } 65 $data['galleries'] = $data['item']->getGallery()->get(); 66 unset($data['item']); 67 $this->response->body(View::factory('viewgalleries', $data)); 68 } 69 public function action_edit_button() { 70 $site = new Model_Site( 71 array_merge($this->request->param(), $this->request->post()) 72 );
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Item->action_viewgalleries()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Item(2)
{ public request => object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(13) "viewgalleries" protected _uri => string(59) "item/viewgalleries/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(1) ( "id" => integer 61526 ) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(13) "viewgalleries" protected _uri => string(59) "item/viewgalleries/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(1) ( "id" => integer 61526 ) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(13) "viewgalleries" protected _uri => string(59) "item/viewgalleries/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(1) ( "id" => integer 61526 ) 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) }
}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * Can be used to test for sub requests.
-
APPPATH/views/itemviewframe.php [ 4 ] » Kohana_Request->execute()
1 <?php 2 $viewgallery = Request::factory( 3 'item/viewgalleries/' . $url 4 )->query('id', $item->getId())->execute(); 5 if (property_exists($item, 'videoClip')) { 6 $viewVideoClip = $item->getVideoClip()->output(); 7 } 8 ?> 9 <div class="card bg-light">
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(54) "/var/www/banket.kz/application/views/itemviewframe.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(54) "/var/www/banket.kz/application/views/itemviewframe.php"
1
array(7) ( "url" => string(40) "karaganda/banquetinghall/restoran-bahus9" "item" => object Model_Categories_Banquetinghall(67)
{ protected id => integer 61526 protected address => object Model_Parameters_Address(19)
"coords" => object Coords(2){ protected icon => string(32) "<span class="fa fa-home"></span>" protected name => string(7) "address" protected necessarily => bool TRUE protected reference => NULL protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected map => object Model_Parameters_Map(20){ protected name => string(3) "map" protected field => string(11) "float_value" protected table => string(11) "item_params" private xName => string(4) "mapx" private yName => string(4) "mapy" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object Coords(2)
protected reference => object Model_Parameters_Reference(18){ protected x => float 49.820725 protected y => float 73.091902 }
private itemId => integer 61526 protected validation => array(2) ( "mapx" => array(1) ( "numeric" => NULL ) "mapy" => array(1) ( "numeric" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(9) "reference" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "reference" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected inthecountry => object Model_Parameters_Inthecountry(19){ protected name => string(12) "inthecountry" protected caption => string(40) "Расположен за городом" protected onlinehelp => string(12) "inthecountry" protected field => string(9) "int_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisAlcohol => object Model_Parameters_HisAlcohol(19){ protected name => string(10) "hisAlcohol" protected caption => string(16) "алкоголь" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisSoftdrink => object Model_Parameters_HisSoftdrink(19){ protected name => string(12) "hisSoftdrink" protected caption => string(43) "безалкогольные напитки" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisFruits => object Model_Parameters_HisFruits(19){ protected name => string(9) "hisFruits" protected caption => string(12) "фрукты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisDesserts => object Model_Parameters_HisDesserts(19){ protected name => string(11) "hisDesserts" protected caption => string(14) "десерты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisMeat => object Model_Parameters_HisMeat(19){ protected name => string(7) "hisMeat" protected caption => string(8) "мясо" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisDelicatessen => object Model_Parameters_HisDelicatessen(19){ protected name => string(15) "hisDelicatessen" protected caption => string(20) "деликатесы" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected totalBill => object Model_Parameters_TotalBill(23){ protected name => string(9) "totalBill" protected caption => string(23) "Средний счёт" protected fromname => string(13) "totalbillfrom" protected toname => string(11) "totalbillto" protected icon => string(14) "fa-credit-card" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
protected seats => object Model_Parameters_Seats(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "totalbillfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "totalbillto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "seats" protected caption => string(29) "Количество мест" protected icon => string(7) "fa-user" protected field => string(9) "int_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "seats" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected sound => object Model_Parameters_Sound(19){ protected name => string(5) "sound" protected caption => string(8) "Звук" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected light => object Model_Parameters_Light(19){ protected name => string(5) "light" protected caption => string(8) "свет" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected music => object Model_Parameters_Music(19){ protected name => string(5) "music" protected caption => string(12) "музыка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected toaster => object Model_Parameters_Toaster(19){ protected name => string(7) "toaster" protected caption => string(29) "ведущий (тамада)" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected photo => object Model_Parameters_Photo(19){ protected name => string(5) "photo" protected caption => string(20) "Фотосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected video => object Model_Parameters_Video(19){ protected name => string(5) "video" protected caption => string(22) "видеосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected design => object Model_Parameters_Design(19){ protected name => string(6) "design" protected caption => string(29) "оформление зала" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected cuisine => object Model_Parameters_Cuisine(19){ protected name => string(7) "cuisine" protected icon => string(10) "fa-cutlery" protected highlightField => string(9) "int_value" protected necessarily => bool FALSE protected value => array(46) ( 0 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4)
protected stage => object Model_Parameters_Stage(19){ public caption => string(22) "австрийская" public name => string(8) "austrian" public value => NULL public highlight => bool FALSE }
1 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "авторская" public name => string(5) "autor" public value => NULL public highlight => bool FALSE }
2 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(30) "азербайджанская" public name => string(17) "azerbajdzhanskaja" public value => NULL public highlight => bool FALSE }
3 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "азиатская" public name => string(10) "aziatskaja" public value => NULL public highlight => bool TRUE }
4 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "американская" public name => string(13) "amerikanskaja" public value => NULL public highlight => bool FALSE }
5 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "английская" public name => string(11) "anglijskaja" public value => NULL public highlight => bool FALSE }
6 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "арабская" public name => string(9) "arabskaja" public value => NULL public highlight => bool FALSE }
7 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "аргентинская" public name => string(13) "argentinskaja" public value => NULL public highlight => bool FALSE }
8 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "армянская" public name => string(11) "armyanskaya" public value => NULL public highlight => bool FALSE }
9 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "бразильская" public name => string(13) "brazilAeskaja" public value => NULL public highlight => bool FALSE }
10 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(28) "вегетарианская" public name => string(15) "vegetarianskaya" public value => NULL public highlight => bool FALSE }
11 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "восточная" public name => string(11) "vostochnaya" public value => NULL public highlight => bool TRUE }
12 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(39) "восточно-европейская" public name => string(22) "vostochno-evropejskaja" public value => NULL public highlight => bool TRUE }
13 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "вьетнамская" public name => string(13) "vAeetnamskaja" public value => NULL public highlight => bool FALSE }
14 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "греческая" public name => string(11) "grecheskaja" public value => NULL public highlight => bool FALSE }
15 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "грузинская" public name => string(11) "gruzinskaya" public value => NULL public highlight => bool FALSE }
16 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "дунганская" public name => string(11) "dunganskaja" public value => NULL public highlight => bool FALSE }
17 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "еврейская" public name => string(10) "evrejskaja" public value => NULL public highlight => bool FALSE }
18 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "европейская" public name => string(12) "evropeyskaya" public value => NULL public highlight => bool TRUE }
19 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "индийская" public name => string(10) "indijskaja" public value => NULL public highlight => bool FALSE }
20 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "испанская" public name => string(10) "ispanskaja" public value => NULL public highlight => bool FALSE }
21 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "итальянская" public name => string(14) "italAejanskaja" public value => NULL public highlight => bool TRUE }
22 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "кавказская" public name => string(11) "kavkazskaja" public value => NULL public highlight => bool TRUE }
23 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "казахская" public name => string(10) "kazahskaya" public value => NULL public highlight => bool TRUE }
24 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "киргизская" public name => string(11) "kirgizskaja" public value => NULL public highlight => bool FALSE }
25 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "китайская" public name => string(10) "kitajskaja" public value => NULL public highlight => bool TRUE }
26 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "корейская" public name => string(10) "korejskaja" public value => NULL public highlight => bool FALSE }
27 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "ливанская" public name => string(10) "livanskaja" public value => NULL public highlight => bool FALSE }
28 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "малазийская" public name => string(12) "malazijskaja" public value => NULL public highlight => bool FALSE }
29 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "марокканская" public name => string(13) "marokkanskaja" public value => NULL public highlight => bool FALSE }
30 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "мексиканская" public name => string(13) "meksikanskaja" public value => NULL public highlight => bool FALSE }
31 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "немецкая" public name => string(9) "nemeckaja" public value => NULL public highlight => bool FALSE }
32 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "паназиатская" public name => string(13) "panasiatskaya" public value => NULL public highlight => bool FALSE }
33 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "русская" public name => string(8) "russkaja" public value => NULL public highlight => bool FALSE }
34 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "смешанная" public name => string(11) "smeshannaja" public value => NULL public highlight => bool TRUE }
35 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(34) "средиземноморская" public name => string(18) "sredizemnomorskaya" public value => NULL public highlight => bool FALSE }
36 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "тайская" public name => string(8) "tajskaja" public value => NULL public highlight => bool FALSE }
37 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "татарская" public name => string(10) "tatarskaja" public value => NULL public highlight => bool FALSE }
38 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "турецкая" public name => string(9) "tureckaja" public value => NULL public highlight => bool FALSE }
39 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "узбекская" public name => string(10) "uzbekskaya" public value => NULL public highlight => bool FALSE }
40 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "уйгурская" public name => string(10) "ujgurskaja" public value => NULL public highlight => bool FALSE }
41 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "украинская" public name => string(11) "ukrainskaja" public value => NULL public highlight => bool FALSE }
42 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "французская" public name => string(12) "francuzskaya" public value => NULL public highlight => bool FALSE }
43 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(12) "халяль" public name => string(5) "halal" public value => NULL public highlight => bool TRUE }
44 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "чешская" public name => string(10) "cheshskaja" public value => NULL public highlight => bool FALSE }
45 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "японская" public name => string(10) "yaponskaya" public value => NULL public highlight => bool FALSE }
) private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "newcuisine" => array(2) ( "alpha_dash" => array(2) ( 0 => string(6) ":value" 1 => bool TRUE ) "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 20 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "stage" protected caption => string(10) "Сцена" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected dancefloor => object Model_Parameters_Dancefloor(19){ protected name => string(10) "dancefloor" protected caption => string(15) "Танц-пол" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected viphall => object Model_Parameters_Viphall(24){ protected name => string(7) "viphall" protected caption => string(10) "VIP-зал" protected capacitiesAndDescriptions => array(0) protected capacityName => string(16) "viphall-capacity" protected descriptionName => string(19) "viphall-description" protected capacityCaption => string(22) "вместимость" protected addCaption => string(30) "Добавить ещё зал" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected karaoke => object Model_Parameters_Karaoke(19){ protected name => string(7) "karaoke" protected caption => string(14) "Караоке" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected veranda => object Model_Parameters_Veranda(19){ protected name => string(7) "veranda" protected caption => string(29) "веранда/терраса" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected projector => object Model_Parameters_Projector(19){ protected name => string(9) "projector" protected caption => string(26) "видеопроектор" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected smokingArea => object Model_Parameters_SmokingArea(19){ protected name => string(11) "smokingArea" protected caption => string(30) "зона для курящих" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected dressingRoom => object Model_Parameters_DressingRoom(19){ protected name => string(12) "dressingRoom" protected caption => string(46) "комната для переодевания" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected trestle => object Model_Parameters_Trestle(19){ protected name => string(7) "trestle" protected caption => string(14) "Топчаны" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hookah => object Model_Parameters_Hookah(19){ protected name => string(6) "hookah" protected caption => string(12) "Кальян" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected parking => object Model_Parameters_Parking(30){ protected name => string(7) "parking" protected placeName => string(12) "parkingplace" protected placeCaption => string(29) "количество мест" protected freeName => string(11) "parkingfree" protected freeCaption => string(20) "бесплатная" protected securedName => string(14) "parkingsecured" protected securedCaption => string(20) "охраняемая" protected nofreeName => string(13) "parkingnofree" protected nofreeCaption => string(14) "платная" protected nosecuredName => string(16) "parkingnosecured" protected nosecuredCaption => string(24) "неохраняемая" protected field => string(9) "int_value" protected caption => string(16) "Парковка" protected delta => float 1.2 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Parking.php0x7a2400e045b4(3)
protected worktime => object Model_Parameters_Worktime(24){ public place => NULL public free => NULL public secured => NULL }
private itemId => integer 61526 protected validation => array(1) ( "parkingplace" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected icon => string(10) "fa-clock-o" private captionField => string(13) "param_caption" private countField => string(9) "int_value" private dayField => string(13) "varchar_value" private timeField => string(14) "datetime_value" private optionField => string(13) "varchar_value" private formElements => array(13) ( "mon" => string(3) "mon" "tue" => string(3) "tue" "wed" => string(3) "wed" "thu" => string(3) "thu" "fri" => string(3) "fri" "sat" => string(3) "sat" "sun" => string(3) "sun" "fromHour" => string(8) "fromhour" "fromMinute" => string(10) "fromminute" "toHour" => string(6) "tohour" "toMinute" => string(8) "tominute" "workTimeAroundtheclock" => string(24) "work_time_aroundtheclock" "workTimeUntillastcust" => string(23) "work_time_untillastcust" ) protected necessarily => bool FALSE protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected childrensRoom => object Model_Parameters_ChildrensRoom(19){ protected name => string(13) "childrensRoom" protected caption => string(29) "Детская комната" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected playground => object Model_Parameters_Playground(19){ protected name => string(10) "playground" protected caption => string(49) "игровая площадка для детей" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected animators => object Model_Parameters_Animators(19){ protected name => string(9) "animators" protected caption => string(18) "Аниматоры" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected commemoration => object Model_Parameters_Commemoration(23){ protected name => string(13) "commemoration" protected caption => string(40) "Средний счёт (поминки)" protected fromname => string(17) "commemorationfrom" protected toname => string(15) "commemorationto" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
protected show => object Model_Parameters_Show(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "commemorationfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "commemorationto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(4) "show" protected caption => string(25) "шоу-программа" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
private table => string(5) "items" private url => object Model_Parameters_Url(18){ protected name => string(3) "url" protected field => string(3) "url" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "url" => array(1) ( "alpha_dash" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
private caption => NULL protected description => object Model_Parameters_Description(19){ protected name => string(11) "description" protected caption => string(16) "Описание" protected field => string(10) "text_value" protected necessarily => bool TRUE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "description" => array(2) ( "Model_Parameters::not_empty_htmlignored" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 10000 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected owner => object Model_Parameters_Owner(18){ protected necessarily => bool TRUE protected name => string(5) "owner" protected field => string(8) "username" protected table => string(5) "users" protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "owner" => array(3) ( "not_empty" => NULL "Model_Users::user_exists" => array(1) ( 0 => string(6) ":value" ) "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected city => object Model_Parameters_City(25){ protected name => string(4) "city" protected caption => string(10) "Город" protected necessarily => bool TRUE private valueCaption => NULL protected id => NULL protected table => string(5) "items" protected field => string(4) "city" protected coords => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(2) ( "id" => string(4) "city" "onchange" => string(19) "this.form.submit();" ) protected hiddenField => integer 0 protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "city" => array(1) ( "not_empty" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected category => object Model_Parameters_Category(25){ protected name => string(8) "category" protected caption => string(18) "Категория" protected necessarily => bool TRUE private valueCaption => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(1) ( "id" => string(8) "category" ) protected hiddenField => integer 0 private fullList => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "category" => array(2) ( "not_empty" => NULL "Model_Parameters_Category::exists" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected name => object Model_Parameters_Name(20){ protected name => string(4) "name" protected caption => string(16) "Название" protected necessarily => bool TRUE protected field => string(9) "item_name" private url => NULL protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "name" => array(2) ( "not_empty" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(5) "items" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected phones => object Model_Parameters_Phones(22){ protected necessarily => bool TRUE protected icon => string(8) "fa-phone" protected prefixname => string(11) "phoneprefix" protected numbername => string(11) "phonenumber" protected caption => string(60) "Телефоны для размещения на сайте" protected lines => integer 5 protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(5) ( "phonenumber0" => array(2) ( "not_empty" => NULL "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber1" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber2" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber3" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber4" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected webSite => object Model_Parameters_WebSite(18){ protected name => string(7) "website" protected icon => string(8) "fa-globe" protected outputIsBlock => bool TRUE protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "website" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected gallery => object Model_Parameters_Gallery(19){ protected name => string(7) "gallery" protected ownerId => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected videoClip => object Model_Parameters_VideoClip(20){ protected icon => string(32) "<span class="fa fa-film"></span>" protected name => string(9) "videoClip" protected VKurl => string(14) "https://vk.com" protected youtubeUrl => string(16) "https://youtu.be" protected field => string(10) "text_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected moderated => object Model_Parameters_Moderated(18){ protected name => string(9) "moderated" protected table => string(5) "items" protected field => string(17) "mark_as_moderated" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected deleted => object Model_Parameters_Deleted(18){ protected name => string(7) "deleted" protected field => string(15) "mark_as_deleted" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected email => object Model_Parameters_Email(24){ protected name => string(5) "email" protected caption => string(33) "Электронный адрес" protected icon => string(11) "fa-envelope" protected smtpUserName => string(15) "admin@banket.kz" protected smtpPassword => string(14) "BanketAdmin123" protected from => string(15) "admin@banket.kz" protected smtpServer => string(20) "ssl://smtp.yandex.ru" protected smtpPort => integer 465 protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "email" => array(2) ( "email" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected whatsapp => object Model_Parameters_Whatsapp(21){ protected numbername => string(14) "whatsappnumber" protected caption => string(19) "Номер whatsapp" protected lines => integer 1 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "whatsappnumber0" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected modifiedTime => NULL protected modifiedAutor => NULL protected facebook => object Model_Parameters_Facebook(21){ protected name => string(8) "facebook" protected caption => string(8) "Facebook" protected urlTemplate => string(12) "facebook.com" protected placeholder => string(33) "www.facebook.com/myname.super.777" protected onlinehelp => string(8) "facebook" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "facebook" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(12) "facebook.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected instagram => object Model_Parameters_Instagram(21){ protected name => string(9) "instagram" protected caption => string(9) "Instagram" protected urlTemplate => string(13) "instagram.com" protected onlinehelp => string(9) "instagram" protected placeholder => string(25) "www.instagram.com/myinsta" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "instagram" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters_Instagram::urlAvalible" => array(1) ( 0 => string(6) ":value" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected VK => object Model_Parameters_VK(21){ protected name => string(2) "VK" protected caption => string(18) "ВКонтакте" protected urlTemplate => string(6) "vk.com" protected placeholder => string(11) "vk.com/myvk" protected onlinehelp => string(2) "vk" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "VK" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(6) "vk.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected socialNetworks => object Model_Parameters_SocialNetworks(21){ protected instagram => NULL protected facebook => NULL protected vK => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected comment => object Model_Parameters_Comment(19){ protected name => string(7) "comment" protected caption => string(22) "Комментарии" protected field => string(10) "text_value" protected connectionTable => string(9) "url_param" protected connectionField => string(3) "url" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected banner => object Model_Parameters_Banner(25){ protected name => string(6) "banner" protected field => string(9) "int_value" protected factory => object BannerFactory(0)
protected staticBanner => object Model_Parameters_StaticBanner(26){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248786" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected header => string(43) "Баннер в бегущей строке" protected bgClass => string(10) "bg-warning" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(12) "staticBanner" protected imageUrl => NULL protected header => string(32) "Баннер в слайдере" protected bgClass => string(9) "bg-danger" protected field => string(9) "int_value" protected factory => object StaticBannerFactory(0)
protected status => NULL private placeIndex => NULL protected binders => object SplObjectStorage(0){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248820" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ }
protected inFavorites => object Model_Parameters_InFavorites(18){ protected name => string(11) "inFavorites" protected field => string(14) "datetime_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
}{ protected x => float 49.820725 protected y => float 73.091902 }
"parameters" => array(59) ( "address" => object Model_Parameters_Address(19){ protected icon => string(32) "<span class="fa fa-home"></span>" protected name => string(7) "address" protected necessarily => bool TRUE protected reference => NULL protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"map" => object Model_Parameters_Map(20){ protected name => string(3) "map" protected field => string(11) "float_value" protected table => string(11) "item_params" private xName => string(4) "mapx" private yName => string(4) "mapy" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object Coords(2)
"reference" => object Model_Parameters_Reference(18){ protected x => float 49.820725 protected y => float 73.091902 }
private itemId => integer 61526 protected validation => array(2) ( "mapx" => array(1) ( "numeric" => NULL ) "mapy" => array(1) ( "numeric" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(9) "reference" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "reference" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"inthecountry" => object Model_Parameters_Inthecountry(19){ protected name => string(12) "inthecountry" protected caption => string(40) "Расположен за городом" protected onlinehelp => string(12) "inthecountry" protected field => string(9) "int_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisAlcohol" => object Model_Parameters_HisAlcohol(19){ protected name => string(10) "hisAlcohol" protected caption => string(16) "алкоголь" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisSoftdrink" => object Model_Parameters_HisSoftdrink(19){ protected name => string(12) "hisSoftdrink" protected caption => string(43) "безалкогольные напитки" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisFruits" => object Model_Parameters_HisFruits(19){ protected name => string(9) "hisFruits" protected caption => string(12) "фрукты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisDesserts" => object Model_Parameters_HisDesserts(19){ protected name => string(11) "hisDesserts" protected caption => string(14) "десерты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisMeat" => object Model_Parameters_HisMeat(19){ protected name => string(7) "hisMeat" protected caption => string(8) "мясо" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisDelicatessen" => object Model_Parameters_HisDelicatessen(19){ protected name => string(15) "hisDelicatessen" protected caption => string(20) "деликатесы" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"totalBill" => object Model_Parameters_TotalBill(23){ protected name => string(9) "totalBill" protected caption => string(23) "Средний счёт" protected fromname => string(13) "totalbillfrom" protected toname => string(11) "totalbillto" protected icon => string(14) "fa-credit-card" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
"seats" => object Model_Parameters_Seats(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "totalbillfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "totalbillto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "seats" protected caption => string(29) "Количество мест" protected icon => string(7) "fa-user" protected field => string(9) "int_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "seats" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"sound" => object Model_Parameters_Sound(19){ protected name => string(5) "sound" protected caption => string(8) "Звук" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"light" => object Model_Parameters_Light(19){ protected name => string(5) "light" protected caption => string(8) "свет" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"music" => object Model_Parameters_Music(19){ protected name => string(5) "music" protected caption => string(12) "музыка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"toaster" => object Model_Parameters_Toaster(19){ protected name => string(7) "toaster" protected caption => string(29) "ведущий (тамада)" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"photo" => object Model_Parameters_Photo(19){ protected name => string(5) "photo" protected caption => string(20) "Фотосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"video" => object Model_Parameters_Video(19){ protected name => string(5) "video" protected caption => string(22) "видеосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"design" => object Model_Parameters_Design(19){ protected name => string(6) "design" protected caption => string(29) "оформление зала" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"cuisine" => object Model_Parameters_Cuisine(19){ protected name => string(7) "cuisine" protected icon => string(10) "fa-cutlery" protected highlightField => string(9) "int_value" protected necessarily => bool FALSE protected value => array(46) ( 0 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4)
"stage" => object Model_Parameters_Stage(19){ public caption => string(22) "австрийская" public name => string(8) "austrian" public value => NULL public highlight => bool FALSE }
1 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "авторская" public name => string(5) "autor" public value => NULL public highlight => bool FALSE }
2 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(30) "азербайджанская" public name => string(17) "azerbajdzhanskaja" public value => NULL public highlight => bool FALSE }
3 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "азиатская" public name => string(10) "aziatskaja" public value => NULL public highlight => bool TRUE }
4 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "американская" public name => string(13) "amerikanskaja" public value => NULL public highlight => bool FALSE }
5 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "английская" public name => string(11) "anglijskaja" public value => NULL public highlight => bool FALSE }
6 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "арабская" public name => string(9) "arabskaja" public value => NULL public highlight => bool FALSE }
7 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "аргентинская" public name => string(13) "argentinskaja" public value => NULL public highlight => bool FALSE }
8 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "армянская" public name => string(11) "armyanskaya" public value => NULL public highlight => bool FALSE }
9 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "бразильская" public name => string(13) "brazilAeskaja" public value => NULL public highlight => bool FALSE }
10 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(28) "вегетарианская" public name => string(15) "vegetarianskaya" public value => NULL public highlight => bool FALSE }
11 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "восточная" public name => string(11) "vostochnaya" public value => NULL public highlight => bool TRUE }
12 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(39) "восточно-европейская" public name => string(22) "vostochno-evropejskaja" public value => NULL public highlight => bool TRUE }
13 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "вьетнамская" public name => string(13) "vAeetnamskaja" public value => NULL public highlight => bool FALSE }
14 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "греческая" public name => string(11) "grecheskaja" public value => NULL public highlight => bool FALSE }
15 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "грузинская" public name => string(11) "gruzinskaya" public value => NULL public highlight => bool FALSE }
16 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "дунганская" public name => string(11) "dunganskaja" public value => NULL public highlight => bool FALSE }
17 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "еврейская" public name => string(10) "evrejskaja" public value => NULL public highlight => bool FALSE }
18 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "европейская" public name => string(12) "evropeyskaya" public value => NULL public highlight => bool TRUE }
19 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "индийская" public name => string(10) "indijskaja" public value => NULL public highlight => bool FALSE }
20 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "испанская" public name => string(10) "ispanskaja" public value => NULL public highlight => bool FALSE }
21 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "итальянская" public name => string(14) "italAejanskaja" public value => NULL public highlight => bool TRUE }
22 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "кавказская" public name => string(11) "kavkazskaja" public value => NULL public highlight => bool TRUE }
23 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "казахская" public name => string(10) "kazahskaya" public value => NULL public highlight => bool TRUE }
24 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "киргизская" public name => string(11) "kirgizskaja" public value => NULL public highlight => bool FALSE }
25 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "китайская" public name => string(10) "kitajskaja" public value => NULL public highlight => bool TRUE }
26 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "корейская" public name => string(10) "korejskaja" public value => NULL public highlight => bool FALSE }
27 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "ливанская" public name => string(10) "livanskaja" public value => NULL public highlight => bool FALSE }
28 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "малазийская" public name => string(12) "malazijskaja" public value => NULL public highlight => bool FALSE }
29 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "марокканская" public name => string(13) "marokkanskaja" public value => NULL public highlight => bool FALSE }
30 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "мексиканская" public name => string(13) "meksikanskaja" public value => NULL public highlight => bool FALSE }
31 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "немецкая" public name => string(9) "nemeckaja" public value => NULL public highlight => bool FALSE }
32 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "паназиатская" public name => string(13) "panasiatskaya" public value => NULL public highlight => bool FALSE }
33 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "русская" public name => string(8) "russkaja" public value => NULL public highlight => bool FALSE }
34 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "смешанная" public name => string(11) "smeshannaja" public value => NULL public highlight => bool TRUE }
35 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(34) "средиземноморская" public name => string(18) "sredizemnomorskaya" public value => NULL public highlight => bool FALSE }
36 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "тайская" public name => string(8) "tajskaja" public value => NULL public highlight => bool FALSE }
37 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "татарская" public name => string(10) "tatarskaja" public value => NULL public highlight => bool FALSE }
38 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "турецкая" public name => string(9) "tureckaja" public value => NULL public highlight => bool FALSE }
39 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "узбекская" public name => string(10) "uzbekskaya" public value => NULL public highlight => bool FALSE }
40 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "уйгурская" public name => string(10) "ujgurskaja" public value => NULL public highlight => bool FALSE }
41 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "украинская" public name => string(11) "ukrainskaja" public value => NULL public highlight => bool FALSE }
42 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "французская" public name => string(12) "francuzskaya" public value => NULL public highlight => bool FALSE }
43 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(12) "халяль" public name => string(5) "halal" public value => NULL public highlight => bool TRUE }
44 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "чешская" public name => string(10) "cheshskaja" public value => NULL public highlight => bool FALSE }
45 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "японская" public name => string(10) "yaponskaya" public value => NULL public highlight => bool FALSE }
) private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "newcuisine" => array(2) ( "alpha_dash" => array(2) ( 0 => string(6) ":value" 1 => bool TRUE ) "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 20 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "stage" protected caption => string(10) "Сцена" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"dancefloor" => object Model_Parameters_Dancefloor(19){ protected name => string(10) "dancefloor" protected caption => string(15) "Танц-пол" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"viphall" => object Model_Parameters_Viphall(24){ protected name => string(7) "viphall" protected caption => string(10) "VIP-зал" protected capacitiesAndDescriptions => array(0) protected capacityName => string(16) "viphall-capacity" protected descriptionName => string(19) "viphall-description" protected capacityCaption => string(22) "вместимость" protected addCaption => string(30) "Добавить ещё зал" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"karaoke" => object Model_Parameters_Karaoke(19){ protected name => string(7) "karaoke" protected caption => string(14) "Караоке" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"veranda" => object Model_Parameters_Veranda(19){ protected name => string(7) "veranda" protected caption => string(29) "веранда/терраса" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"projector" => object Model_Parameters_Projector(19){ protected name => string(9) "projector" protected caption => string(26) "видеопроектор" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"smokingArea" => object Model_Parameters_SmokingArea(19){ protected name => string(11) "smokingArea" protected caption => string(30) "зона для курящих" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"dressingRoom" => object Model_Parameters_DressingRoom(19){ protected name => string(12) "dressingRoom" protected caption => string(46) "комната для переодевания" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"trestle" => object Model_Parameters_Trestle(19){ protected name => string(7) "trestle" protected caption => string(14) "Топчаны" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hookah" => object Model_Parameters_Hookah(19){ protected name => string(6) "hookah" protected caption => string(12) "Кальян" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"parking" => object Model_Parameters_Parking(30){ protected name => string(7) "parking" protected placeName => string(12) "parkingplace" protected placeCaption => string(29) "количество мест" protected freeName => string(11) "parkingfree" protected freeCaption => string(20) "бесплатная" protected securedName => string(14) "parkingsecured" protected securedCaption => string(20) "охраняемая" protected nofreeName => string(13) "parkingnofree" protected nofreeCaption => string(14) "платная" protected nosecuredName => string(16) "parkingnosecured" protected nosecuredCaption => string(24) "неохраняемая" protected field => string(9) "int_value" protected caption => string(16) "Парковка" protected delta => float 1.2 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Parking.php0x7a2400e045b4(3)
"worktime" => object Model_Parameters_Worktime(24){ public place => NULL public free => NULL public secured => NULL }
private itemId => integer 61526 protected validation => array(1) ( "parkingplace" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected icon => string(10) "fa-clock-o" private captionField => string(13) "param_caption" private countField => string(9) "int_value" private dayField => string(13) "varchar_value" private timeField => string(14) "datetime_value" private optionField => string(13) "varchar_value" private formElements => array(13) ( "mon" => string(3) "mon" "tue" => string(3) "tue" "wed" => string(3) "wed" "thu" => string(3) "thu" "fri" => string(3) "fri" "sat" => string(3) "sat" "sun" => string(3) "sun" "fromHour" => string(8) "fromhour" "fromMinute" => string(10) "fromminute" "toHour" => string(6) "tohour" "toMinute" => string(8) "tominute" "workTimeAroundtheclock" => string(24) "work_time_aroundtheclock" "workTimeUntillastcust" => string(23) "work_time_untillastcust" ) protected necessarily => bool FALSE protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"childrensRoom" => object Model_Parameters_ChildrensRoom(19){ protected name => string(13) "childrensRoom" protected caption => string(29) "Детская комната" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"playground" => object Model_Parameters_Playground(19){ protected name => string(10) "playground" protected caption => string(49) "игровая площадка для детей" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"animators" => object Model_Parameters_Animators(19){ protected name => string(9) "animators" protected caption => string(18) "Аниматоры" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"commemoration" => object Model_Parameters_Commemoration(23){ protected name => string(13) "commemoration" protected caption => string(40) "Средний счёт (поминки)" protected fromname => string(17) "commemorationfrom" protected toname => string(15) "commemorationto" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
"show" => object Model_Parameters_Show(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "commemorationfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "commemorationto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(4) "show" protected caption => string(25) "шоу-программа" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"url" => object Model_Parameters_Url(18){ protected name => string(3) "url" protected field => string(3) "url" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "url" => array(1) ( "alpha_dash" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"description" => object Model_Parameters_Description(19){ protected name => string(11) "description" protected caption => string(16) "Описание" protected field => string(10) "text_value" protected necessarily => bool TRUE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "description" => array(2) ( "Model_Parameters::not_empty_htmlignored" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 10000 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"owner" => object Model_Parameters_Owner(18){ protected necessarily => bool TRUE protected name => string(5) "owner" protected field => string(8) "username" protected table => string(5) "users" protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "owner" => array(3) ( "not_empty" => NULL "Model_Users::user_exists" => array(1) ( 0 => string(6) ":value" ) "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"city" => object Model_Parameters_City(25){ protected name => string(4) "city" protected caption => string(10) "Город" protected necessarily => bool TRUE private valueCaption => NULL protected id => NULL protected table => string(5) "items" protected field => string(4) "city" protected coords => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(2) ( "id" => string(4) "city" "onchange" => string(19) "this.form.submit();" ) protected hiddenField => integer 0 protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "city" => array(1) ( "not_empty" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"category" => object Model_Parameters_Category(25){ protected name => string(8) "category" protected caption => string(18) "Категория" protected necessarily => bool TRUE private valueCaption => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(1) ( "id" => string(8) "category" ) protected hiddenField => integer 0 private fullList => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "category" => array(2) ( "not_empty" => NULL "Model_Parameters_Category::exists" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"name" => object Model_Parameters_Name(20){ protected name => string(4) "name" protected caption => string(16) "Название" protected necessarily => bool TRUE protected field => string(9) "item_name" private url => NULL protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "name" => array(2) ( "not_empty" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(5) "items" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"phones" => object Model_Parameters_Phones(22){ protected necessarily => bool TRUE protected icon => string(8) "fa-phone" protected prefixname => string(11) "phoneprefix" protected numbername => string(11) "phonenumber" protected caption => string(60) "Телефоны для размещения на сайте" protected lines => integer 5 protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(5) ( "phonenumber0" => array(2) ( "not_empty" => NULL "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber1" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber2" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber3" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber4" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"webSite" => object Model_Parameters_WebSite(18){ protected name => string(7) "website" protected icon => string(8) "fa-globe" protected outputIsBlock => bool TRUE protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "website" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"gallery" => object Model_Parameters_Gallery(19){ protected name => string(7) "gallery" protected ownerId => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"videoClip" => object Model_Parameters_VideoClip(20){ protected icon => string(32) "<span class="fa fa-film"></span>" protected name => string(9) "videoClip" protected VKurl => string(14) "https://vk.com" protected youtubeUrl => string(16) "https://youtu.be" protected field => string(10) "text_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"moderated" => object Model_Parameters_Moderated(18){ protected name => string(9) "moderated" protected table => string(5) "items" protected field => string(17) "mark_as_moderated" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"deleted" => object Model_Parameters_Deleted(18){ protected name => string(7) "deleted" protected field => string(15) "mark_as_deleted" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"email" => object Model_Parameters_Email(24){ protected name => string(5) "email" protected caption => string(33) "Электронный адрес" protected icon => string(11) "fa-envelope" protected smtpUserName => string(15) "admin@banket.kz" protected smtpPassword => string(14) "BanketAdmin123" protected from => string(15) "admin@banket.kz" protected smtpServer => string(20) "ssl://smtp.yandex.ru" protected smtpPort => integer 465 protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "email" => array(2) ( "email" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"whatsapp" => object Model_Parameters_Whatsapp(21){ protected numbername => string(14) "whatsappnumber" protected caption => string(19) "Номер whatsapp" protected lines => integer 1 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "whatsappnumber0" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"facebook" => object Model_Parameters_Facebook(21){ protected name => string(8) "facebook" protected caption => string(8) "Facebook" protected urlTemplate => string(12) "facebook.com" protected placeholder => string(33) "www.facebook.com/myname.super.777" protected onlinehelp => string(8) "facebook" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "facebook" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(12) "facebook.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"instagram" => object Model_Parameters_Instagram(21){ protected name => string(9) "instagram" protected caption => string(9) "Instagram" protected urlTemplate => string(13) "instagram.com" protected onlinehelp => string(9) "instagram" protected placeholder => string(25) "www.instagram.com/myinsta" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "instagram" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters_Instagram::urlAvalible" => array(1) ( 0 => string(6) ":value" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"VK" => object Model_Parameters_VK(21){ protected name => string(2) "VK" protected caption => string(18) "ВКонтакте" protected urlTemplate => string(6) "vk.com" protected placeholder => string(11) "vk.com/myvk" protected onlinehelp => string(2) "vk" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "VK" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(6) "vk.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"socialNetworks" => object Model_Parameters_SocialNetworks(21){ protected instagram => NULL protected facebook => NULL protected vK => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"comment" => object Model_Parameters_Comment(19){ protected name => string(7) "comment" protected caption => string(22) "Комментарии" protected field => string(10) "text_value" protected connectionTable => string(9) "url_param" protected connectionField => string(3) "url" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"banner" => object Model_Parameters_Banner(25){ protected name => string(6) "banner" protected field => string(9) "int_value" protected factory => object BannerFactory(0)
"staticBanner" => object Model_Parameters_StaticBanner(26){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248786" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected header => string(43) "Баннер в бегущей строке" protected bgClass => string(10) "bg-warning" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(12) "staticBanner" protected imageUrl => NULL protected header => string(32) "Баннер в слайдере" protected bgClass => string(9) "bg-danger" protected field => string(9) "int_value" protected factory => object StaticBannerFactory(0)
"inFavorites" => object Model_Parameters_InFavorites(18){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248820" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(11) "inFavorites" protected field => string(14) "datetime_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
) "mobile" => integer 0 "category" => string(14) "banquetinghall" "h1" => string(34) "Бахус на 200 человек" )354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
SYSPATH/classes/Kohana/Response.php [ 160 ] » Kohana_View->__toString()
155 public function body($content = NULL) 156 { 157 if ($content === NULL) 158 return $this->_body; 159 160 $this->_body = (string) $content; 161 return $this; 162 } 163 164 /** 165 * Gets or sets the HTTP protocol. The standard protocol to use
-
APPPATH/classes/Controller/Item.php [ 26 ] » Kohana_Response->body(arguments)
0
object View(2)
{ protected _file => string(54) "/var/www/banket.kz/application/views/itemviewframe.php" protected _data => array(7) ( "url" => string(40) "karaganda/banquetinghall/restoran-bahus9" "item" => object Model_Categories_Banquetinghall(67)
{ protected id => integer 61526 protected address => object Model_Parameters_Address(19)
"coords" => object Coords(2){ protected icon => string(32) "<span class="fa fa-home"></span>" protected name => string(7) "address" protected necessarily => bool TRUE protected reference => NULL protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected map => object Model_Parameters_Map(20){ protected name => string(3) "map" protected field => string(11) "float_value" protected table => string(11) "item_params" private xName => string(4) "mapx" private yName => string(4) "mapy" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object Coords(2)
protected reference => object Model_Parameters_Reference(18){ protected x => float 49.820725 protected y => float 73.091902 }
private itemId => integer 61526 protected validation => array(2) ( "mapx" => array(1) ( "numeric" => NULL ) "mapy" => array(1) ( "numeric" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(9) "reference" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "reference" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected inthecountry => object Model_Parameters_Inthecountry(19){ protected name => string(12) "inthecountry" protected caption => string(40) "Расположен за городом" protected onlinehelp => string(12) "inthecountry" protected field => string(9) "int_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisAlcohol => object Model_Parameters_HisAlcohol(19){ protected name => string(10) "hisAlcohol" protected caption => string(16) "алкоголь" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisSoftdrink => object Model_Parameters_HisSoftdrink(19){ protected name => string(12) "hisSoftdrink" protected caption => string(43) "безалкогольные напитки" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisFruits => object Model_Parameters_HisFruits(19){ protected name => string(9) "hisFruits" protected caption => string(12) "фрукты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisDesserts => object Model_Parameters_HisDesserts(19){ protected name => string(11) "hisDesserts" protected caption => string(14) "десерты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisMeat => object Model_Parameters_HisMeat(19){ protected name => string(7) "hisMeat" protected caption => string(8) "мясо" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hisDelicatessen => object Model_Parameters_HisDelicatessen(19){ protected name => string(15) "hisDelicatessen" protected caption => string(20) "деликатесы" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected totalBill => object Model_Parameters_TotalBill(23){ protected name => string(9) "totalBill" protected caption => string(23) "Средний счёт" protected fromname => string(13) "totalbillfrom" protected toname => string(11) "totalbillto" protected icon => string(14) "fa-credit-card" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
protected seats => object Model_Parameters_Seats(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "totalbillfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "totalbillto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "seats" protected caption => string(29) "Количество мест" protected icon => string(7) "fa-user" protected field => string(9) "int_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "seats" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected sound => object Model_Parameters_Sound(19){ protected name => string(5) "sound" protected caption => string(8) "Звук" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected light => object Model_Parameters_Light(19){ protected name => string(5) "light" protected caption => string(8) "свет" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected music => object Model_Parameters_Music(19){ protected name => string(5) "music" protected caption => string(12) "музыка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected toaster => object Model_Parameters_Toaster(19){ protected name => string(7) "toaster" protected caption => string(29) "ведущий (тамада)" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected photo => object Model_Parameters_Photo(19){ protected name => string(5) "photo" protected caption => string(20) "Фотосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected video => object Model_Parameters_Video(19){ protected name => string(5) "video" protected caption => string(22) "видеосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected design => object Model_Parameters_Design(19){ protected name => string(6) "design" protected caption => string(29) "оформление зала" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected cuisine => object Model_Parameters_Cuisine(19){ protected name => string(7) "cuisine" protected icon => string(10) "fa-cutlery" protected highlightField => string(9) "int_value" protected necessarily => bool FALSE protected value => array(46) ( 0 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4)
protected stage => object Model_Parameters_Stage(19){ public caption => string(22) "австрийская" public name => string(8) "austrian" public value => NULL public highlight => bool FALSE }
1 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "авторская" public name => string(5) "autor" public value => NULL public highlight => bool FALSE }
2 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(30) "азербайджанская" public name => string(17) "azerbajdzhanskaja" public value => NULL public highlight => bool FALSE }
3 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "азиатская" public name => string(10) "aziatskaja" public value => NULL public highlight => bool TRUE }
4 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "американская" public name => string(13) "amerikanskaja" public value => NULL public highlight => bool FALSE }
5 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "английская" public name => string(11) "anglijskaja" public value => NULL public highlight => bool FALSE }
6 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "арабская" public name => string(9) "arabskaja" public value => NULL public highlight => bool FALSE }
7 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "аргентинская" public name => string(13) "argentinskaja" public value => NULL public highlight => bool FALSE }
8 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "армянская" public name => string(11) "armyanskaya" public value => NULL public highlight => bool FALSE }
9 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "бразильская" public name => string(13) "brazilAeskaja" public value => NULL public highlight => bool FALSE }
10 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(28) "вегетарианская" public name => string(15) "vegetarianskaya" public value => NULL public highlight => bool FALSE }
11 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "восточная" public name => string(11) "vostochnaya" public value => NULL public highlight => bool TRUE }
12 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(39) "восточно-европейская" public name => string(22) "vostochno-evropejskaja" public value => NULL public highlight => bool TRUE }
13 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "вьетнамская" public name => string(13) "vAeetnamskaja" public value => NULL public highlight => bool FALSE }
14 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "греческая" public name => string(11) "grecheskaja" public value => NULL public highlight => bool FALSE }
15 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "грузинская" public name => string(11) "gruzinskaya" public value => NULL public highlight => bool FALSE }
16 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "дунганская" public name => string(11) "dunganskaja" public value => NULL public highlight => bool FALSE }
17 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "еврейская" public name => string(10) "evrejskaja" public value => NULL public highlight => bool FALSE }
18 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "европейская" public name => string(12) "evropeyskaya" public value => NULL public highlight => bool TRUE }
19 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "индийская" public name => string(10) "indijskaja" public value => NULL public highlight => bool FALSE }
20 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "испанская" public name => string(10) "ispanskaja" public value => NULL public highlight => bool FALSE }
21 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "итальянская" public name => string(14) "italAejanskaja" public value => NULL public highlight => bool TRUE }
22 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "кавказская" public name => string(11) "kavkazskaja" public value => NULL public highlight => bool TRUE }
23 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "казахская" public name => string(10) "kazahskaya" public value => NULL public highlight => bool TRUE }
24 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "киргизская" public name => string(11) "kirgizskaja" public value => NULL public highlight => bool FALSE }
25 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "китайская" public name => string(10) "kitajskaja" public value => NULL public highlight => bool TRUE }
26 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "корейская" public name => string(10) "korejskaja" public value => NULL public highlight => bool FALSE }
27 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "ливанская" public name => string(10) "livanskaja" public value => NULL public highlight => bool FALSE }
28 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "малазийская" public name => string(12) "malazijskaja" public value => NULL public highlight => bool FALSE }
29 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "марокканская" public name => string(13) "marokkanskaja" public value => NULL public highlight => bool FALSE }
30 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "мексиканская" public name => string(13) "meksikanskaja" public value => NULL public highlight => bool FALSE }
31 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "немецкая" public name => string(9) "nemeckaja" public value => NULL public highlight => bool FALSE }
32 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "паназиатская" public name => string(13) "panasiatskaya" public value => NULL public highlight => bool FALSE }
33 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "русская" public name => string(8) "russkaja" public value => NULL public highlight => bool FALSE }
34 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "смешанная" public name => string(11) "smeshannaja" public value => NULL public highlight => bool TRUE }
35 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(34) "средиземноморская" public name => string(18) "sredizemnomorskaya" public value => NULL public highlight => bool FALSE }
36 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "тайская" public name => string(8) "tajskaja" public value => NULL public highlight => bool FALSE }
37 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "татарская" public name => string(10) "tatarskaja" public value => NULL public highlight => bool FALSE }
38 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "турецкая" public name => string(9) "tureckaja" public value => NULL public highlight => bool FALSE }
39 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "узбекская" public name => string(10) "uzbekskaya" public value => NULL public highlight => bool FALSE }
40 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "уйгурская" public name => string(10) "ujgurskaja" public value => NULL public highlight => bool FALSE }
41 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "украинская" public name => string(11) "ukrainskaja" public value => NULL public highlight => bool FALSE }
42 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "французская" public name => string(12) "francuzskaya" public value => NULL public highlight => bool FALSE }
43 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(12) "халяль" public name => string(5) "halal" public value => NULL public highlight => bool TRUE }
44 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "чешская" public name => string(10) "cheshskaja" public value => NULL public highlight => bool FALSE }
45 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "японская" public name => string(10) "yaponskaya" public value => NULL public highlight => bool FALSE }
) private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "newcuisine" => array(2) ( "alpha_dash" => array(2) ( 0 => string(6) ":value" 1 => bool TRUE ) "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 20 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "stage" protected caption => string(10) "Сцена" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected dancefloor => object Model_Parameters_Dancefloor(19){ protected name => string(10) "dancefloor" protected caption => string(15) "Танц-пол" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected viphall => object Model_Parameters_Viphall(24){ protected name => string(7) "viphall" protected caption => string(10) "VIP-зал" protected capacitiesAndDescriptions => array(0) protected capacityName => string(16) "viphall-capacity" protected descriptionName => string(19) "viphall-description" protected capacityCaption => string(22) "вместимость" protected addCaption => string(30) "Добавить ещё зал" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected karaoke => object Model_Parameters_Karaoke(19){ protected name => string(7) "karaoke" protected caption => string(14) "Караоке" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected veranda => object Model_Parameters_Veranda(19){ protected name => string(7) "veranda" protected caption => string(29) "веранда/терраса" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected projector => object Model_Parameters_Projector(19){ protected name => string(9) "projector" protected caption => string(26) "видеопроектор" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected smokingArea => object Model_Parameters_SmokingArea(19){ protected name => string(11) "smokingArea" protected caption => string(30) "зона для курящих" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected dressingRoom => object Model_Parameters_DressingRoom(19){ protected name => string(12) "dressingRoom" protected caption => string(46) "комната для переодевания" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected trestle => object Model_Parameters_Trestle(19){ protected name => string(7) "trestle" protected caption => string(14) "Топчаны" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected hookah => object Model_Parameters_Hookah(19){ protected name => string(6) "hookah" protected caption => string(12) "Кальян" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected parking => object Model_Parameters_Parking(30){ protected name => string(7) "parking" protected placeName => string(12) "parkingplace" protected placeCaption => string(29) "количество мест" protected freeName => string(11) "parkingfree" protected freeCaption => string(20) "бесплатная" protected securedName => string(14) "parkingsecured" protected securedCaption => string(20) "охраняемая" protected nofreeName => string(13) "parkingnofree" protected nofreeCaption => string(14) "платная" protected nosecuredName => string(16) "parkingnosecured" protected nosecuredCaption => string(24) "неохраняемая" protected field => string(9) "int_value" protected caption => string(16) "Парковка" protected delta => float 1.2 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Parking.php0x7a2400e045b4(3)
protected worktime => object Model_Parameters_Worktime(24){ public place => NULL public free => NULL public secured => NULL }
private itemId => integer 61526 protected validation => array(1) ( "parkingplace" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected icon => string(10) "fa-clock-o" private captionField => string(13) "param_caption" private countField => string(9) "int_value" private dayField => string(13) "varchar_value" private timeField => string(14) "datetime_value" private optionField => string(13) "varchar_value" private formElements => array(13) ( "mon" => string(3) "mon" "tue" => string(3) "tue" "wed" => string(3) "wed" "thu" => string(3) "thu" "fri" => string(3) "fri" "sat" => string(3) "sat" "sun" => string(3) "sun" "fromHour" => string(8) "fromhour" "fromMinute" => string(10) "fromminute" "toHour" => string(6) "tohour" "toMinute" => string(8) "tominute" "workTimeAroundtheclock" => string(24) "work_time_aroundtheclock" "workTimeUntillastcust" => string(23) "work_time_untillastcust" ) protected necessarily => bool FALSE protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected childrensRoom => object Model_Parameters_ChildrensRoom(19){ protected name => string(13) "childrensRoom" protected caption => string(29) "Детская комната" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected playground => object Model_Parameters_Playground(19){ protected name => string(10) "playground" protected caption => string(49) "игровая площадка для детей" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected animators => object Model_Parameters_Animators(19){ protected name => string(9) "animators" protected caption => string(18) "Аниматоры" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected commemoration => object Model_Parameters_Commemoration(23){ protected name => string(13) "commemoration" protected caption => string(40) "Средний счёт (поминки)" protected fromname => string(17) "commemorationfrom" protected toname => string(15) "commemorationto" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
protected show => object Model_Parameters_Show(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "commemorationfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "commemorationto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(4) "show" protected caption => string(25) "шоу-программа" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
private table => string(5) "items" private url => object Model_Parameters_Url(18){ protected name => string(3) "url" protected field => string(3) "url" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "url" => array(1) ( "alpha_dash" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
private caption => NULL protected description => object Model_Parameters_Description(19){ protected name => string(11) "description" protected caption => string(16) "Описание" protected field => string(10) "text_value" protected necessarily => bool TRUE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "description" => array(2) ( "Model_Parameters::not_empty_htmlignored" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 10000 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected owner => object Model_Parameters_Owner(18){ protected necessarily => bool TRUE protected name => string(5) "owner" protected field => string(8) "username" protected table => string(5) "users" protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "owner" => array(3) ( "not_empty" => NULL "Model_Users::user_exists" => array(1) ( 0 => string(6) ":value" ) "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected city => object Model_Parameters_City(25){ protected name => string(4) "city" protected caption => string(10) "Город" protected necessarily => bool TRUE private valueCaption => NULL protected id => NULL protected table => string(5) "items" protected field => string(4) "city" protected coords => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(2) ( "id" => string(4) "city" "onchange" => string(19) "this.form.submit();" ) protected hiddenField => integer 0 protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "city" => array(1) ( "not_empty" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected category => object Model_Parameters_Category(25){ protected name => string(8) "category" protected caption => string(18) "Категория" protected necessarily => bool TRUE private valueCaption => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(1) ( "id" => string(8) "category" ) protected hiddenField => integer 0 private fullList => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "category" => array(2) ( "not_empty" => NULL "Model_Parameters_Category::exists" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected name => object Model_Parameters_Name(20){ protected name => string(4) "name" protected caption => string(16) "Название" protected necessarily => bool TRUE protected field => string(9) "item_name" private url => NULL protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "name" => array(2) ( "not_empty" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(5) "items" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected phones => object Model_Parameters_Phones(22){ protected necessarily => bool TRUE protected icon => string(8) "fa-phone" protected prefixname => string(11) "phoneprefix" protected numbername => string(11) "phonenumber" protected caption => string(60) "Телефоны для размещения на сайте" protected lines => integer 5 protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(5) ( "phonenumber0" => array(2) ( "not_empty" => NULL "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber1" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber2" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber3" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber4" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected webSite => object Model_Parameters_WebSite(18){ protected name => string(7) "website" protected icon => string(8) "fa-globe" protected outputIsBlock => bool TRUE protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "website" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected gallery => object Model_Parameters_Gallery(19){ protected name => string(7) "gallery" protected ownerId => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected videoClip => object Model_Parameters_VideoClip(20){ protected icon => string(32) "<span class="fa fa-film"></span>" protected name => string(9) "videoClip" protected VKurl => string(14) "https://vk.com" protected youtubeUrl => string(16) "https://youtu.be" protected field => string(10) "text_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected moderated => object Model_Parameters_Moderated(18){ protected name => string(9) "moderated" protected table => string(5) "items" protected field => string(17) "mark_as_moderated" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected deleted => object Model_Parameters_Deleted(18){ protected name => string(7) "deleted" protected field => string(15) "mark_as_deleted" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected email => object Model_Parameters_Email(24){ protected name => string(5) "email" protected caption => string(33) "Электронный адрес" protected icon => string(11) "fa-envelope" protected smtpUserName => string(15) "admin@banket.kz" protected smtpPassword => string(14) "BanketAdmin123" protected from => string(15) "admin@banket.kz" protected smtpServer => string(20) "ssl://smtp.yandex.ru" protected smtpPort => integer 465 protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "email" => array(2) ( "email" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected whatsapp => object Model_Parameters_Whatsapp(21){ protected numbername => string(14) "whatsappnumber" protected caption => string(19) "Номер whatsapp" protected lines => integer 1 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "whatsappnumber0" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected modifiedTime => NULL protected modifiedAutor => NULL protected facebook => object Model_Parameters_Facebook(21){ protected name => string(8) "facebook" protected caption => string(8) "Facebook" protected urlTemplate => string(12) "facebook.com" protected placeholder => string(33) "www.facebook.com/myname.super.777" protected onlinehelp => string(8) "facebook" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "facebook" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(12) "facebook.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected instagram => object Model_Parameters_Instagram(21){ protected name => string(9) "instagram" protected caption => string(9) "Instagram" protected urlTemplate => string(13) "instagram.com" protected onlinehelp => string(9) "instagram" protected placeholder => string(25) "www.instagram.com/myinsta" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "instagram" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters_Instagram::urlAvalible" => array(1) ( 0 => string(6) ":value" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected VK => object Model_Parameters_VK(21){ protected name => string(2) "VK" protected caption => string(18) "ВКонтакте" protected urlTemplate => string(6) "vk.com" protected placeholder => string(11) "vk.com/myvk" protected onlinehelp => string(2) "vk" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "VK" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(6) "vk.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
protected socialNetworks => object Model_Parameters_SocialNetworks(21){ protected instagram => NULL protected facebook => NULL protected vK => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected comment => object Model_Parameters_Comment(19){ protected name => string(7) "comment" protected caption => string(22) "Комментарии" protected field => string(10) "text_value" protected connectionTable => string(9) "url_param" protected connectionField => string(3) "url" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
protected banner => object Model_Parameters_Banner(25){ protected name => string(6) "banner" protected field => string(9) "int_value" protected factory => object BannerFactory(0)
protected staticBanner => object Model_Parameters_StaticBanner(26){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248786" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected header => string(43) "Баннер в бегущей строке" protected bgClass => string(10) "bg-warning" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(12) "staticBanner" protected imageUrl => NULL protected header => string(32) "Баннер в слайдере" protected bgClass => string(9) "bg-danger" protected field => string(9) "int_value" protected factory => object StaticBannerFactory(0)
protected status => NULL private placeIndex => NULL protected binders => object SplObjectStorage(0){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248820" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ }
protected inFavorites => object Model_Parameters_InFavorites(18){ protected name => string(11) "inFavorites" protected field => string(14) "datetime_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
}{ protected x => float 49.820725 protected y => float 73.091902 }
"parameters" => array(59) ( "address" => object Model_Parameters_Address(19){ protected icon => string(32) "<span class="fa fa-home"></span>" protected name => string(7) "address" protected necessarily => bool TRUE protected reference => NULL protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"map" => object Model_Parameters_Map(20){ protected name => string(3) "map" protected field => string(11) "float_value" protected table => string(11) "item_params" private xName => string(4) "mapx" private yName => string(4) "mapy" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object Coords(2)
"reference" => object Model_Parameters_Reference(18){ protected x => float 49.820725 protected y => float 73.091902 }
private itemId => integer 61526 protected validation => array(2) ( "mapx" => array(1) ( "numeric" => NULL ) "mapy" => array(1) ( "numeric" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(9) "reference" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "reference" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"inthecountry" => object Model_Parameters_Inthecountry(19){ protected name => string(12) "inthecountry" protected caption => string(40) "Расположен за городом" protected onlinehelp => string(12) "inthecountry" protected field => string(9) "int_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisAlcohol" => object Model_Parameters_HisAlcohol(19){ protected name => string(10) "hisAlcohol" protected caption => string(16) "алкоголь" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisSoftdrink" => object Model_Parameters_HisSoftdrink(19){ protected name => string(12) "hisSoftdrink" protected caption => string(43) "безалкогольные напитки" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisFruits" => object Model_Parameters_HisFruits(19){ protected name => string(9) "hisFruits" protected caption => string(12) "фрукты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisDesserts" => object Model_Parameters_HisDesserts(19){ protected name => string(11) "hisDesserts" protected caption => string(14) "десерты" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisMeat" => object Model_Parameters_HisMeat(19){ protected name => string(7) "hisMeat" protected caption => string(8) "мясо" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hisDelicatessen" => object Model_Parameters_HisDelicatessen(19){ protected name => string(15) "hisDelicatessen" protected caption => string(20) "деликатесы" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"totalBill" => object Model_Parameters_TotalBill(23){ protected name => string(9) "totalBill" protected caption => string(23) "Средний счёт" protected fromname => string(13) "totalbillfrom" protected toname => string(11) "totalbillto" protected icon => string(14) "fa-credit-card" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
"seats" => object Model_Parameters_Seats(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "totalbillfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "totalbillto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "seats" protected caption => string(29) "Количество мест" protected icon => string(7) "fa-user" protected field => string(9) "int_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "seats" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"sound" => object Model_Parameters_Sound(19){ protected name => string(5) "sound" protected caption => string(8) "Звук" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"light" => object Model_Parameters_Light(19){ protected name => string(5) "light" protected caption => string(8) "свет" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"music" => object Model_Parameters_Music(19){ protected name => string(5) "music" protected caption => string(12) "музыка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"toaster" => object Model_Parameters_Toaster(19){ protected name => string(7) "toaster" protected caption => string(29) "ведущий (тамада)" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"photo" => object Model_Parameters_Photo(19){ protected name => string(5) "photo" protected caption => string(20) "Фотосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"video" => object Model_Parameters_Video(19){ protected name => string(5) "video" protected caption => string(22) "видеосъёмка" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"design" => object Model_Parameters_Design(19){ protected name => string(6) "design" protected caption => string(29) "оформление зала" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"cuisine" => object Model_Parameters_Cuisine(19){ protected name => string(7) "cuisine" protected icon => string(10) "fa-cutlery" protected highlightField => string(9) "int_value" protected necessarily => bool FALSE protected value => array(46) ( 0 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4)
"stage" => object Model_Parameters_Stage(19){ public caption => string(22) "австрийская" public name => string(8) "austrian" public value => NULL public highlight => bool FALSE }
1 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "авторская" public name => string(5) "autor" public value => NULL public highlight => bool FALSE }
2 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(30) "азербайджанская" public name => string(17) "azerbajdzhanskaja" public value => NULL public highlight => bool FALSE }
3 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "азиатская" public name => string(10) "aziatskaja" public value => NULL public highlight => bool TRUE }
4 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "американская" public name => string(13) "amerikanskaja" public value => NULL public highlight => bool FALSE }
5 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "английская" public name => string(11) "anglijskaja" public value => NULL public highlight => bool FALSE }
6 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "арабская" public name => string(9) "arabskaja" public value => NULL public highlight => bool FALSE }
7 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "аргентинская" public name => string(13) "argentinskaja" public value => NULL public highlight => bool FALSE }
8 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "армянская" public name => string(11) "armyanskaya" public value => NULL public highlight => bool FALSE }
9 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "бразильская" public name => string(13) "brazilAeskaja" public value => NULL public highlight => bool FALSE }
10 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(28) "вегетарианская" public name => string(15) "vegetarianskaya" public value => NULL public highlight => bool FALSE }
11 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "восточная" public name => string(11) "vostochnaya" public value => NULL public highlight => bool TRUE }
12 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(39) "восточно-европейская" public name => string(22) "vostochno-evropejskaja" public value => NULL public highlight => bool TRUE }
13 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "вьетнамская" public name => string(13) "vAeetnamskaja" public value => NULL public highlight => bool FALSE }
14 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "греческая" public name => string(11) "grecheskaja" public value => NULL public highlight => bool FALSE }
15 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "грузинская" public name => string(11) "gruzinskaya" public value => NULL public highlight => bool FALSE }
16 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "дунганская" public name => string(11) "dunganskaja" public value => NULL public highlight => bool FALSE }
17 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "еврейская" public name => string(10) "evrejskaja" public value => NULL public highlight => bool FALSE }
18 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "европейская" public name => string(12) "evropeyskaya" public value => NULL public highlight => bool TRUE }
19 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "индийская" public name => string(10) "indijskaja" public value => NULL public highlight => bool FALSE }
20 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "испанская" public name => string(10) "ispanskaja" public value => NULL public highlight => bool FALSE }
21 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "итальянская" public name => string(14) "italAejanskaja" public value => NULL public highlight => bool TRUE }
22 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "кавказская" public name => string(11) "kavkazskaja" public value => NULL public highlight => bool TRUE }
23 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "казахская" public name => string(10) "kazahskaya" public value => NULL public highlight => bool TRUE }
24 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "киргизская" public name => string(11) "kirgizskaja" public value => NULL public highlight => bool FALSE }
25 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "китайская" public name => string(10) "kitajskaja" public value => NULL public highlight => bool TRUE }
26 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "корейская" public name => string(10) "korejskaja" public value => NULL public highlight => bool FALSE }
27 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "ливанская" public name => string(10) "livanskaja" public value => NULL public highlight => bool FALSE }
28 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "малазийская" public name => string(12) "malazijskaja" public value => NULL public highlight => bool FALSE }
29 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "марокканская" public name => string(13) "marokkanskaja" public value => NULL public highlight => bool FALSE }
30 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "мексиканская" public name => string(13) "meksikanskaja" public value => NULL public highlight => bool FALSE }
31 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "немецкая" public name => string(9) "nemeckaja" public value => NULL public highlight => bool FALSE }
32 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(24) "паназиатская" public name => string(13) "panasiatskaya" public value => NULL public highlight => bool FALSE }
33 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "русская" public name => string(8) "russkaja" public value => NULL public highlight => bool FALSE }
34 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "смешанная" public name => string(11) "smeshannaja" public value => NULL public highlight => bool TRUE }
35 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(34) "средиземноморская" public name => string(18) "sredizemnomorskaya" public value => NULL public highlight => bool FALSE }
36 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "тайская" public name => string(8) "tajskaja" public value => NULL public highlight => bool FALSE }
37 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "татарская" public name => string(10) "tatarskaja" public value => NULL public highlight => bool FALSE }
38 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "турецкая" public name => string(9) "tureckaja" public value => NULL public highlight => bool FALSE }
39 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "узбекская" public name => string(10) "uzbekskaya" public value => NULL public highlight => bool FALSE }
40 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(18) "уйгурская" public name => string(10) "ujgurskaja" public value => NULL public highlight => bool FALSE }
41 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(20) "украинская" public name => string(11) "ukrainskaja" public value => NULL public highlight => bool FALSE }
42 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(22) "французская" public name => string(12) "francuzskaya" public value => NULL public highlight => bool FALSE }
43 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(12) "халяль" public name => string(5) "halal" public value => NULL public highlight => bool TRUE }
44 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(14) "чешская" public name => string(10) "cheshskaja" public value => NULL public highlight => bool FALSE }
45 => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Cuisine.php0x7a24043cd5cc(4){ public caption => string(16) "японская" public name => string(10) "yaponskaya" public value => NULL public highlight => bool FALSE }
) private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "newcuisine" => array(2) ( "alpha_dash" => array(2) ( 0 => string(6) ":value" 1 => bool TRUE ) "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 20 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(5) "stage" protected caption => string(10) "Сцена" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"dancefloor" => object Model_Parameters_Dancefloor(19){ protected name => string(10) "dancefloor" protected caption => string(15) "Танц-пол" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"viphall" => object Model_Parameters_Viphall(24){ protected name => string(7) "viphall" protected caption => string(10) "VIP-зал" protected capacitiesAndDescriptions => array(0) protected capacityName => string(16) "viphall-capacity" protected descriptionName => string(19) "viphall-description" protected capacityCaption => string(22) "вместимость" protected addCaption => string(30) "Добавить ещё зал" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"karaoke" => object Model_Parameters_Karaoke(19){ protected name => string(7) "karaoke" protected caption => string(14) "Караоке" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"veranda" => object Model_Parameters_Veranda(19){ protected name => string(7) "veranda" protected caption => string(29) "веранда/терраса" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"projector" => object Model_Parameters_Projector(19){ protected name => string(9) "projector" protected caption => string(26) "видеопроектор" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"smokingArea" => object Model_Parameters_SmokingArea(19){ protected name => string(11) "smokingArea" protected caption => string(30) "зона для курящих" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"dressingRoom" => object Model_Parameters_DressingRoom(19){ protected name => string(12) "dressingRoom" protected caption => string(46) "комната для переодевания" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"trestle" => object Model_Parameters_Trestle(19){ protected name => string(7) "trestle" protected caption => string(14) "Топчаны" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"hookah" => object Model_Parameters_Hookah(19){ protected name => string(6) "hookah" protected caption => string(12) "Кальян" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"parking" => object Model_Parameters_Parking(30){ protected name => string(7) "parking" protected placeName => string(12) "parkingplace" protected placeCaption => string(29) "количество мест" protected freeName => string(11) "parkingfree" protected freeCaption => string(20) "бесплатная" protected securedName => string(14) "parkingsecured" protected securedCaption => string(20) "охраняемая" protected nofreeName => string(13) "parkingnofree" protected nofreeCaption => string(14) "платная" protected nosecuredName => string(16) "parkingnosecured" protected nosecuredCaption => string(24) "неохраняемая" protected field => string(9) "int_value" protected caption => string(16) "Парковка" protected delta => float 1.2 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/Parking.php0x7a2400e045b4(3)
"worktime" => object Model_Parameters_Worktime(24){ public place => NULL public free => NULL public secured => NULL }
private itemId => integer 61526 protected validation => array(1) ( "parkingplace" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected icon => string(10) "fa-clock-o" private captionField => string(13) "param_caption" private countField => string(9) "int_value" private dayField => string(13) "varchar_value" private timeField => string(14) "datetime_value" private optionField => string(13) "varchar_value" private formElements => array(13) ( "mon" => string(3) "mon" "tue" => string(3) "tue" "wed" => string(3) "wed" "thu" => string(3) "thu" "fri" => string(3) "fri" "sat" => string(3) "sat" "sun" => string(3) "sun" "fromHour" => string(8) "fromhour" "fromMinute" => string(10) "fromminute" "toHour" => string(6) "tohour" "toMinute" => string(8) "tominute" "workTimeAroundtheclock" => string(24) "work_time_aroundtheclock" "workTimeUntillastcust" => string(23) "work_time_untillastcust" ) protected necessarily => bool FALSE protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"childrensRoom" => object Model_Parameters_ChildrensRoom(19){ protected name => string(13) "childrensRoom" protected caption => string(29) "Детская комната" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"playground" => object Model_Parameters_Playground(19){ protected name => string(10) "playground" protected caption => string(49) "игровая площадка для детей" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"animators" => object Model_Parameters_Animators(19){ protected name => string(9) "animators" protected caption => string(18) "Аниматоры" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"commemoration" => object Model_Parameters_Commemoration(23){ protected name => string(13) "commemoration" protected caption => string(40) "Средний счёт (поминки)" protected fromname => string(17) "commemorationfrom" protected toname => string(15) "commemorationto" protected field => string(9) "int_value" protected fromCaption => string(4) "от" protected toCaption => string(4) "до" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => object class@anonymous /var/www/banket.kz/application/classes/Model/Parameters/NumberRangePrototype.php0x7a2400e055ef(2)
"show" => object Model_Parameters_Show(19){ protected from => NULL protected to => NULL }
private itemId => integer 61526 protected validation => array(2) ( "commemorationfrom" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) "commemorationto" => array(2) ( "digit" => NULL "max_length" => array(2) ( 0 => string(6) ":value" 1 => integer 9 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(4) "show" protected caption => string(25) "шоу-программа" protected field => string(9) "int_value" protected onlinehelp => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"url" => object Model_Parameters_Url(18){ protected name => string(3) "url" protected field => string(3) "url" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "url" => array(1) ( "alpha_dash" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"description" => object Model_Parameters_Description(19){ protected name => string(11) "description" protected caption => string(16) "Описание" protected field => string(10) "text_value" protected necessarily => bool TRUE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "description" => array(2) ( "Model_Parameters::not_empty_htmlignored" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 10000 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"owner" => object Model_Parameters_Owner(18){ protected necessarily => bool TRUE protected name => string(5) "owner" protected field => string(8) "username" protected table => string(5) "users" protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "owner" => array(3) ( "not_empty" => NULL "Model_Users::user_exists" => array(1) ( 0 => string(6) ":value" ) "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"city" => object Model_Parameters_City(25){ protected name => string(4) "city" protected caption => string(10) "Город" protected necessarily => bool TRUE private valueCaption => NULL protected id => NULL protected table => string(5) "items" protected field => string(4) "city" protected coords => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(2) ( "id" => string(4) "city" "onchange" => string(19) "this.form.submit();" ) protected hiddenField => integer 0 protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "city" => array(1) ( "not_empty" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"category" => object Model_Parameters_Category(25){ protected name => string(8) "category" protected caption => string(18) "Категория" protected necessarily => bool TRUE private valueCaption => NULL protected withAllOption => bool FALSE protected allCaption => string(6) "Все" protected attributes => array(1) ( "id" => string(8) "category" ) protected hiddenField => integer 0 private fullList => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "category" => array(2) ( "not_empty" => NULL "Model_Parameters_Category::exists" => NULL ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"name" => object Model_Parameters_Name(20){ protected name => string(4) "name" protected caption => string(16) "Название" protected necessarily => bool TRUE protected field => string(9) "item_name" private url => NULL protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(1) ( "name" => array(2) ( "not_empty" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(5) "items" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"phones" => object Model_Parameters_Phones(22){ protected necessarily => bool TRUE protected icon => string(8) "fa-phone" protected prefixname => string(11) "phoneprefix" protected numbername => string(11) "phonenumber" protected caption => string(60) "Телефоны для размещения на сайте" protected lines => integer 5 protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(5) ( "phonenumber0" => array(2) ( "not_empty" => NULL "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber1" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber2" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber3" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) "phonenumber4" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"webSite" => object Model_Parameters_WebSite(18){ protected name => string(7) "website" protected icon => string(8) "fa-globe" protected outputIsBlock => bool TRUE protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "website" => array(1) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"gallery" => object Model_Parameters_Gallery(19){ protected name => string(7) "gallery" protected ownerId => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"videoClip" => object Model_Parameters_VideoClip(20){ protected icon => string(32) "<span class="fa fa-film"></span>" protected name => string(9) "videoClip" protected VKurl => string(14) "https://vk.com" protected youtubeUrl => string(16) "https://youtu.be" protected field => string(10) "text_value" protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"moderated" => object Model_Parameters_Moderated(18){ protected name => string(9) "moderated" protected table => string(5) "items" protected field => string(17) "mark_as_moderated" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"deleted" => object Model_Parameters_Deleted(18){ protected name => string(7) "deleted" protected field => string(15) "mark_as_deleted" protected table => string(5) "items" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"email" => object Model_Parameters_Email(24){ protected name => string(5) "email" protected caption => string(33) "Электронный адрес" protected icon => string(11) "fa-envelope" protected smtpUserName => string(15) "admin@banket.kz" protected smtpPassword => string(14) "BanketAdmin123" protected from => string(15) "admin@banket.kz" protected smtpServer => string(20) "ssl://smtp.yandex.ru" protected smtpPort => integer 465 protected necessarily => bool FALSE protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "email" => array(2) ( "email" => NULL "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 255 ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"whatsapp" => object Model_Parameters_Whatsapp(21){ protected numbername => string(14) "whatsappnumber" protected caption => string(19) "Номер whatsapp" protected lines => integer 1 protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "whatsappnumber0" => array(1) ( "regex" => array(2) ( 0 => string(6) ":value" 1 => string(37) "/^\([0-9]{3}\)[0-9]{3}(-[0-9]{2}){2}/" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"facebook" => object Model_Parameters_Facebook(21){ protected name => string(8) "facebook" protected caption => string(8) "Facebook" protected urlTemplate => string(12) "facebook.com" protected placeholder => string(33) "www.facebook.com/myname.super.777" protected onlinehelp => string(8) "facebook" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "facebook" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(12) "facebook.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"instagram" => object Model_Parameters_Instagram(21){ protected name => string(9) "instagram" protected caption => string(9) "Instagram" protected urlTemplate => string(13) "instagram.com" protected onlinehelp => string(9) "instagram" protected placeholder => string(25) "www.instagram.com/myinsta" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "instagram" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters_Instagram::urlAvalible" => array(1) ( 0 => string(6) ":value" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"VK" => object Model_Parameters_VK(21){ protected name => string(2) "VK" protected caption => string(18) "ВКонтакте" protected urlTemplate => string(6) "vk.com" protected placeholder => string(11) "vk.com/myvk" protected onlinehelp => string(2) "vk" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(1) ( "VK" => array(2) ( "Model_Parameters::max_byte" => array(2) ( 0 => string(6) ":value" 1 => integer 511 ) "Model_Parameters::template" => array(2) ( 0 => string(6) ":value" 1 => string(6) "vk.com" ) ) ) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" }
"socialNetworks" => object Model_Parameters_SocialNetworks(21){ protected instagram => NULL protected facebook => NULL protected vK => NULL protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected name => string(16) "common_parameter" protected value => NULL private itemId => integer 61526 protected field => string(13) "varchar_value" protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"comment" => object Model_Parameters_Comment(19){ protected name => string(7) "comment" protected caption => string(22) "Комментарии" protected field => string(10) "text_value" protected connectionTable => string(9) "url_param" protected connectionField => string(3) "url" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
"banner" => object Model_Parameters_Banner(25){ protected name => string(6) "banner" protected field => string(9) "int_value" protected factory => object BannerFactory(0)
"staticBanner" => object Model_Parameters_StaticBanner(26){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248786" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected header => string(43) "Баннер в бегущей строке" protected bgClass => string(10) "bg-warning" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(12) "staticBanner" protected imageUrl => NULL protected header => string(32) "Баннер в слайдере" protected bgClass => string(9) "bg-danger" protected field => string(9) "int_value" protected factory => object StaticBannerFactory(0)
"inFavorites" => object Model_Parameters_InFavorites(18){ }
protected active => NULL protected expiryDate => object DateTime(3){ public date => string(26) "2025-08-22 23:28:25.248820" public timezone_type => integer 3 public timezone => string(11) "Asia/Almaty" }
protected scope => integer 0 protected paramList => array(2) ( "city" => array(0) "category" => array(0) ) protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }{ protected name => string(11) "inFavorites" protected field => string(14) "datetime_value" protected necessarily => bool FALSE protected icon => string(14) "fa-info-circle" protected value => NULL private itemId => integer 61526 protected validation => array(0) protected view => string(10) "INPUT_VIEW" protected table => string(11) "item_params" protected connectionTable => string(10) "item_param" protected connectionField => string(4) "item" protected userConnectionTable => string(10) "user_param" private userId => NULL protected id => NULL protected outputIsBlock => bool FALSE protected minSuffix => string(3) "Min" protected maxSuffix => string(3) "Max" protected onlinehelp => NULL }
) "mobile" => integer 0 "category" => string(14) "banquetinghall" "h1" => string(34) "Бахус на 200 человек" ) }21 public function action_mainpart() { 22 $data = Model_ItemController::view($this->request->param()); 23 if (key_exists('item', $data)) { 24 $site = new Model_Site($this->request->param()); 25 $data['h1'] = $site->getH1(); 26 $this->response->body(View::factory('itemviewframe', $data)); 27 } 28 } 29 30 public function action_viewgallery() { 31 $data = Model_ItemController::preparation($this->request->param());
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Item->action_mainpart()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Item(2)
{ public request => object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(8) "mainpart" protected _uri => string(54) "item/mainpart/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(8) "mainpart" protected _uri => string(54) "item/mainpart/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(8) "mainpart" protected _uri => string(54) "item/mainpart/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) 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) }
}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * Can be used to test for sub requests.
-
APPPATH/views/itempage.php [ 8 ] » Kohana_Request->execute()
3 echo Request::factory('find/breadcrumb/' . $city . '/' . $category . '/' . $url) 4 ->execute(); 5 echo Request::factory('item/myitems/' . $city . '/' . $category . '/' . $url) 6 ->execute(); 7 echo Request::factory('item/mainpart/' . $city . '/' . $category . '/' . $url) 8 ->execute(); 9 echo Request::factory( 10 'item/prevAndNext/' . $city . '/' . $category . '/' . $url 11 )->execute(); 12 ?> 13 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(49) "/var/www/banket.kz/application/views/itempage.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0
string(49) "/var/www/banket.kz/application/views/itempage.php"
1
array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" )
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
SYSPATH/classes/Kohana/Response.php [ 160 ] » Kohana_View->__toString()
155 public function body($content = NULL) 156 { 157 if ($content === NULL) 158 return $this->_body; 159 160 $this->_body = (string) $content; 161 return $this; 162 } 163 164 /** 165 * Gets or sets the HTTP protocol. The standard protocol to use
-
APPPATH/classes/Controller/Item.php [ 19 ] » Kohana_Response->body(arguments)
0
object View(2)
{ protected _file => string(49) "/var/www/banket.kz/application/views/itempage.php" protected _data => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) }
14 } 15 $this->response->body(View::factory('item', $data)); 16 } 17 18 public function action_view() {//страница объявления 19 $this->response->body(View::factory('itempage', $this->request->param())); 20 } 21 public function action_mainpart() { 22 $data = Model_ItemController::view($this->request->param()); 23 if (key_exists('item', $data)) { 24 $site = new Model_Site($this->request->param());
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Item->action_view()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Item(2)
{ public request => object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(4) "view" protected _uri => string(50) "item/view/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(4) "view" protected _uri => string(50) "item/view/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(55) "(<controller>(/<action>(/<city>(/<category>(/<url>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "main" "action" => string(5) "index" ) protected _route_regex => string(156) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<city>[^/.,;?\n]++)(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<url …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Item" protected _action => string(4) "view" protected _uri => string(50) "item/view/karaganda/banquetinghall/restoran-bahus9" protected _external => bool FALSE protected _params => array(3) ( "city" => string(9) "karaganda" "category" => string(14) "banquetinghall" "url" => string(15) "restoran-bahus9" ) 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) }
}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * Can be used to test for sub requests.
-
APPPATH/classes/Controller/Itemcity.php [ 81 ] » Kohana_Request->execute()
76 'city' => $item->getCity()->get(), 77 'category' => $item->getCategory()->get() 78 ] 79 ); 80 $this->template->item_view = Request::factory('item/view/' 81 . $site->getUrl())->execute(); 82 $this->template->script 83 = '<script src="/public/js/paginator.js"></script>'; 84 $this->template->script 85 .= '<script src="/public/js/myItemsList.js"></script>'; 86 $this->template->script
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Itemcity->action_index()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Itemcity(5)
{ private param => string(9) "item_city" public template => object View(2)
{ protected _file => string(49) "/var/www/banket.kz/application/views/template.php" protected _data => array(0) }
public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(11) "<item_city>" protected _regex => array(1) ( "item_city" => string(14) "[\-a-zA-Z0-9]+" ) protected _defaults => array(2) ( "controller" => string(8) "itemcity" "action" => string(5) "index" ) protected _route_regex => string(35) "#^(?P<item_city>[\-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(8) "Itemcity" protected _action => string(5) "index" protected _uri => string(15) "restoran-bahus9" protected _external => bool FALSE protected _params => array(1) ( "item_city" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session_name" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(11) "<item_city>" protected _regex => array(1) ( "item_city" => string(14) "[\-a-zA-Z0-9]+" ) protected _defaults => array(2) ( "controller" => string(8) "itemcity" "action" => string(5) "index" ) protected _route_regex => string(35) "#^(?P<item_city>[\-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(8) "Itemcity" protected _action => string(5) "index" protected _uri => string(15) "restoran-bahus9" protected _external => bool FALSE protected _params => array(1) ( "item_city" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session_name" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(11) "<item_city>" protected _regex => array(1) ( "item_city" => string(14) "[\-a-zA-Z0-9]+" ) protected _defaults => array(2) ( "controller" => string(8) "itemcity" "action" => string(5) "index" ) protected _route_regex => string(35) "#^(?P<item_city>[\-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(8) "Itemcity" protected _action => string(5) "index" protected _uri => string(15) "restoran-bahus9" protected _external => bool FALSE protected _params => array(1) ( "item_city" => string(15) "restoran-bahus9" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "session_name" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 119 ] » Kohana_Request->execute()
114 /** 115 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 116 * If no source is specified, the URI will be automatically detected. 117 */ 118 echo Request::factory(TRUE, array(), FALSE) 119 ->execute() 120 ->send_headers(TRUE) 121 ->body(); 122 } 123 //store profiling data 124 //$data = tideways_xhprof_disable();