JUDO
FEDERATION

  • Қаз
  • Рус
  • Eng

Database_Exception [ HY000 ]: SQLSTATE[HY000]: General error: 1 Can't create/write to file '/tmp/#sql-temptable-1a9431-1cfcece-ea.MAI' (Errcode: 28 "No space left on device") [ SHOW FULL COLUMNS FROM `menus` ]

MODPATH/database/classes/Kohana/Database/PDO.php [ 151 ]

146 				// This benchmark is worthless
147 				Profiler::delete($benchmark);
148 			}
149 
150 			// Convert the exception in a database exception
151 			throw new Database_Exception(':error [ :query ]',
152 				array(
153 					':error' => $e->getMessage(),
154 					':query' => $sql
155 				),
156 				$e->getCode());
  1. APPPATH/classes/Database/PDO/MySQL.php [ 28 ] » Kohana_Database_PDO->query(arguments)

    0
    integer 1
    1
    string(30) "SHOW FULL COLUMNS FROM `menus`"
    2
    bool FALSE
    23             $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE);
    24         }
    25         else
    26         {
    27             // Find all column names
    28             $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE);
    29         }
    30 
    31         $count = 0;
    32         $columns = array();
    33         foreach ($result as $row)
    
  2. MODPATH/orm/classes/Kohana/ORM.php [ 1665 ] » Database_PDO_MySQL->list_columns(arguments)

    0
    string(5) "menus"
    1660 	 * @return array
    1661 	 */
    1662 	public function list_columns()
    1663 	{
    1664 		// Proxy to database
    1665 		return $this->_db->list_columns($this->_table_name);
    1666 	}
    1667 
    1668 	/**
    1669 	 * Returns an ORM model for the given one-one related alias
    1670 	 *
    
  3. MODPATH/orm/classes/Kohana/ORM.php [ 441 ] » Kohana_ORM->list_columns()

    436 				$this->_table_columns = ORM::$_column_cache[$this->_object_name];
    437 			}
    438 			else
    439 			{
    440 				// Grab column information from database
    441 				$this->_table_columns = $this->list_columns();
    442 
    443 				// Load column cache
    444 				ORM::$_column_cache[$this->_object_name] = $this->_table_columns;
    445 			}
    446 		}
    
  4. MODPATH/orm/classes/Kohana/ORM.php [ 386 ] » Kohana_ORM->reload_columns()

    381 		{
    382 			$this->{$property} = $value;
    383 		}
    384 		
    385 		// Load column information
    386 		$this->reload_columns();
    387 
    388 		// Clear initial model state
    389 		$this->clear();
    390 	}
    391 
    
  5. MODPATH/orm/classes/Kohana/ORM.php [ 254 ] » Kohana_ORM->_initialize()

    249 	 *
    250 	 * @param   mixed $id Parameter for find or object to load
    251 	 */
    252 	public function __construct($id = NULL)
    253 	{
    254 		$this->_initialize();
    255 
    256 		if ($id !== NULL)
    257 		{
    258 			if (is_array($id))
    259 			{
    
  6. MODPATH/orm/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM->__construct(arguments)

    0
    array(1) (
        "sef" => string(10) "federation"
    )
    41 	public static function factory($model, $id = NULL)
    42 	{
    43 		// Set class name
    44 		$model = 'Model_'.$model;
    45 
    46 		return new $model($id);
    47 	}
    48 
    49 	/**
    50 	 * "Has one" relationships
    51 	 * @var array
    
  7. APPPATH/classes/Controller/Menu.php [ 9 ] » Kohana_ORM::factory(arguments)

    0
    string(4) "Menu"
    1
    array(1) (
        "sef" => string(10) "federation"
    )
     4 
     5     public function action_build(){
     6         $this->render = FALSE;
     7         $elements = array();
     8         $sef = $this->request->param('id');
     9         $menu = ORM::factory('Menu',array('sef'=>$sef));
    10             $items = ORM::factory('Menu')->where('menu','=',$menu->id)->order_by('priority','DESC')->find_all();
    11         foreach ($items as $item) {
    12             $elements[$item->id]['title']=$item->title;
    13             $elements[$item->id]['link']=$item->link();
    14             if($item->parent_id != $menu->id){
    
  8. SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Menu->action_build()

    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
    
  9. {PHP internal call} » Kohana_Controller->execute()

  10. SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)

    0
    object Controller_Menu(15) {
        public template => object View(2) {
            protected _file => string(43) "/var/www/fdk.kz/application/views/basic.php"
            protected _data => array(0) 
        }
        public ulogin => string(250) "<div id="uLogin" x-ulogin-params="display=small;fields=email,first_name,last_name;providers=vkontakte,odnoklassniki,mailru,faceb …"
        protected user => NULL
        protected login_uri => string(10) "user/login"
        protected need_auth => bool FALSE
        public render => bool FALSE
        public last_uri => string(22) "event/list/14818/2/all"
        public write_lst_uri => bool TRUE
        public errors => array(0) 
        public page => object Cms_Page(6) {
            protected title => string(15) "JUDO FEDERATION"
            protected content => NULL
            public model => NULL
            public count => integer 1
            protected header => array(4) (
                "scripts" => array(13) (
                    "jquery" => string(26) "js/lib/jquery-1.9.0.min.js"
                    "jquery-ui" => string(36) "js/lib/jquery-ui-1.9.1.custom.min.js"
                    "mainJS" => string(11) "js/index.js"
                    "bootstrap" => string(36) "js/lib/bootstrap/js/bootstrap.min.js"
                    "ulogin" => string(29) "http://ulogin.ru/js/ulogin.js"
                    "fancybox" => string(30) "js/fancybox/jquery.fancybox.js"
                    "fancybox.pack" => string(35) "js/fancybox/jquery.fancybox.pack.js"
                    "fancybox.buttons" => string(38) "js/fancybox/jquery.fancybox-buttons.js"
                    "fancybox.thumbs" => string(37) "js/fancybox/jquery.fancybox-thumbs.js"
                    "fancybox.media" => string(36) "js/fancybox/jquery.fancybox-media.js"
                    "imagesloaded" => string(22) "js/imagesloaded.min.js"
                    "masonry" => string(17) "js/masonry.min.js"
                    "index" => string(11) "js/index.js"
                )
                "styles" => array(5) (
                    "jquery_ui" => string(75) "js/lib/jquery-ui-1.9.1.custom/css/smoothness/jquery-ui-1.9.1.custom.min.css"
                    "fancybox" => string(32) "css/fancybox/jquery.fancybox.css"
                    "fancybuttons" => string(40) "css/fancybox/jquery.fancybox-buttons.css"
                    "fancyboxthumbs" => string(39) "css/fancybox/jquery.fancybox-thumbs.css"
                    "main" => string(13) "css/style.css"
                )
                "meta" => array(0) 
                "og" => array(0) 
            )
            protected document_root => string(15) "/var/www/fdk.kz"
        }
        public session => object Session_Native(5) {
            protected _name => string(7) "session"
            protected _lifetime => integer 0
            protected _encrypted => bool FALSE
            protected _data => array(5) (
                "csrf-token" => string(64) "5f0230c7376fec19c84a380fa9453b6b7209bc4f9ebe1fa73d10b387e44c2f01"
                "lang" => string(2) "en"
                "cms_page_messages" => array(0) 
                "last_uri" => string(22) "event/list/14818/2/all"
                "last_active" => integer 1754935207
            )
            protected _destroyed => bool FALSE
        }
        protected _csrf => NULL
        protected _need_csrf => bool FALSE
        public request => object Request(19) {
            protected _requested_with => NULL
            protected _method => string(3) "GET"
            protected _protocol => NULL
            protected _secure => bool FALSE
            protected _referrer => NULL
            protected _route => object Route(5) {
                protected _filters => array(0) 
                protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
                protected _regex => array(0) 
                protected _defaults => array(2) (
                    "controller" => string(10) "federation"
                    "action" => string(5) "index"
                )
                protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
            }
            protected _routes => array(0) 
            protected _header => object HTTP_Header(0) {
            }
            protected _body => NULL
            protected _directory => string(0) ""
            protected _controller => string(4) "Menu"
            protected _action => string(5) "build"
            protected _uri => string(21) "Menu/build/federation"
            protected _external => bool FALSE
            protected _params => array(1) (
                "id" => string(10) "federation"
            )
            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) 
            }
        }
        public response => object Response(5) {
            protected _status => integer 200
            protected _header => object HTTP_Header(0) {
            }
            protected _body => string(0) ""
            protected _cookies => array(0) 
            protected _protocol => NULL
        }
    }
     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');
    
  11. 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 => NULL
        protected _secure => bool FALSE
        protected _referrer => NULL
        protected _route => object Route(5) {
            protected _filters => array(0) 
            protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
            protected _regex => array(0) 
            protected _defaults => array(2) (
                "controller" => string(10) "federation"
                "action" => string(5) "index"
            )
            protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
        }
        protected _routes => array(0) 
        protected _header => object HTTP_Header(0) {
        }
        protected _body => NULL
        protected _directory => string(0) ""
        protected _controller => string(4) "Menu"
        protected _action => string(5) "build"
        protected _uri => string(21) "Menu/build/federation"
        protected _external => bool FALSE
        protected _params => array(1) (
            "id" => string(10) "federation"
        )
        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 => NULL
    }
    109 		$orig_response = $response = Response::factory();
    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))
    
  12. SYSPATH/classes/Kohana/Request.php [ 990 ] » Kohana_Request_Client->execute(arguments)

    0
    object Request(19) {
        protected _requested_with => NULL
        protected _method => string(3) "GET"
        protected _protocol => NULL
        protected _secure => bool FALSE
        protected _referrer => NULL
        protected _route => object Route(5) {
            protected _filters => array(0) 
            protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
            protected _regex => array(0) 
            protected _defaults => array(2) (
                "controller" => string(10) "federation"
                "action" => string(5) "index"
            )
            protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
        }
        protected _routes => array(0) 
        protected _header => object HTTP_Header(0) {
        }
        protected _body => NULL
        protected _directory => string(0) ""
        protected _controller => string(4) "Menu"
        protected _action => string(5) "build"
        protected _uri => string(21) "Menu/build/federation"
        protected _external => bool FALSE
        protected _params => array(1) (
            "id" => string(10) "federation"
        )
        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) 
        }
    }
    985 			throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
    986 				':uri' => $this->_uri,
    987 			));
    988 		}
    989 
    990 		return $this->_client->execute($this);
    991 	}
    992 
    993 	/**
    994 	 * Returns whether this request is the initial request Kohana received.
    995 	 * Can be used to test for sub requests.
    
  13. APPPATH/views/basic.php [ 52 ] » Kohana_Request->execute()

    47         </form>
    48 
    49 
    50 
    51         <div class="inline nav_main">
    52             <?= Request::factory(Route::get('common')->uri(array('controller' => 'Menu', 'action' => 'build', 'id' => 'federation')))->execute(); ?>
    53         </div>
    54     </div><!-- #header-->
    55 
    56     <div id="content">
    57         <?=$page->content()?>
    
  14. SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)

    0
    string(43) "/var/www/fdk.kz/application/views/basic.php"
    56 		ob_start();
    57 
    58 		try
    59 		{
    60 			// Load the view within the current scope
    61 			include $kohana_view_filename;
    62 		}
    63 		catch (Exception $e)
    64 		{
    65 			// Delete the output buffer
    66 			ob_end_clean();
    
  15. SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)

    0
    string(43) "/var/www/fdk.kz/application/views/basic.php"
    1
    array(0) 
    343 		{
    344 			throw new View_Exception('You must set the file to use within your view before rendering');
    345 		}
    346 
    347 		// Combine local and global data and capture the output
    348 		return View::capture($this->_file, $this->_data);
    349 	}
    350 
    351 } // End View
    
  16. MODPATH/cms/classes/Cms/Controller.php [ 79 ] » Kohana_View->render()

    74 
    75     public function after()
    76     {
    77         if ($this->render)
    78         {
    79             $this->response->body($this->template->render());
    80             if($this->write_lst_uri)
    81                Session::instance()->set('last_uri', $this->current_url());
    82         }
    83 
    84         $this->page->save_messages();
    
  17. SYSPATH/classes/Kohana/Controller.php [ 87 ] » Cms_Controller->after()

    82 
    83 		// Execute the action itself
    84 		$this->{$action}();
    85 
    86 		// Execute the "after action" method
    87 		$this->after();
    88 
    89 		// Return the response
    90 		return $this->response;
    91 	}
    92 
    
  18. {PHP internal call} » Kohana_Controller->execute()

  19. SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)

    0
    object Controller_Event(15) {
        public template => object View(2) {
            protected _file => string(43) "/var/www/fdk.kz/application/views/basic.php"
            protected _data => array(0) 
        }
        public ulogin => string(250) "<div id="uLogin" x-ulogin-params="display=small;fields=email,first_name,last_name;providers=vkontakte,odnoklassniki,mailru,faceb …"
        protected user => NULL
        protected login_uri => string(10) "user/login"
        protected need_auth => bool FALSE
        public render => bool TRUE
        public last_uri => string(22) "event/list/14818/2/all"
        public write_lst_uri => bool TRUE
        public errors => array(0) 
        public page => object Cms_Page(6) {
            protected title => string(26) "Calendar - JUDO FEDERATION"
            protected content => object View(2) {
                protected _file => string(49) "/var/www/fdk.kz/application/views/events/list.php"
                protected _data => array(10) (
                    "pagination" => NULL
                    "year" => string(5) "16546"
                    "month" => array(13) (
                        "all" => string(12) "All the year"
                        1 => string(7) "January"
                        2 => string(8) "February"
                        3 => string(5) "March"
                        4 => string(5) "April"
                        5 => string(3) "May"
                        6 => string(4) "June"
                        7 => string(4) "July"
                        8 => string(6) "August"
                        9 => string(9) "September"
                        10 => string(7) "October"
                        11 => string(8) "November"
                        12 => string(8) "December"
                    )
                    "avail_months" => array(0) 
                    "month_id" => string(1) "7"
                    "city_id" => string(3) "all"
                    "count" => string(1) "0"
                    "city" => object Model_City(42) {
                        protected _table_name => string(6) "cities"
                        protected _belongs_to => array(1) (
                            "country" => array(2) (
                                "foreign_key" => string(10) "country_id"
                                "model" => string(8) "Category"
                            )
                        )
                        protected _route => string(4) "city"
                        protected _default_lang => string(2) "ru"
                        protected _need_log => bool FALSE
                        protected _action_type => NULL
                        protected _deffered_values => array(0) 
                        protected _partial_models => array(0) 
                        protected _partial_models_temp => array(0) 
                        public pagination => NULL
                        protected _has_one => array(0) 
                        protected _has_many => array(0) 
                        protected _load_with => array(0) 
                        protected _validation => NULL
                        protected _object => array(12) (
                            "id" => NULL
                            "title_ru" => NULL
                            "title_en" => NULL
                            "title_kz" => NULL
                            "country_id" => NULL
                            "lat" => NULL
                            "lng" => NULL
                            "sef" => NULL
                            "synch_id" => NULL
                            "synch_site" => NULL
                            "is_published" => NULL
                            "confederation" => NULL
                        )
                        protected _changed => array(0) 
                        protected _original_values => array(0) 
                        protected _related => array(0) 
                        protected _valid => bool FALSE
                        protected _loaded => bool FALSE
                        protected _saved => bool FALSE
                        protected _sorting => NULL
                        protected _foreign_key_suffix => string(3) "_id"
                        protected _object_name => string(4) "city"
                        protected _object_plural => string(6) "cities"
                        protected _table_columns => array(12) (
                            "id" => array(9) (
                                "column_name" => string(2) "id"
                                "column_default" => NULL
                                "data_type" => string(12) "int unsigned"
                                "is_nullable" => bool FALSE
                                "ordinal_position" => integer 1
                                "comment" => string(0) ""
                                "extra" => string(14) "auto_increment"
                                "key" => string(3) "PRI"
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_ru" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_ru"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 2
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_en" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_en"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 3
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_kz" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_kz"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 4
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "country_id" => array(9) (
                                "column_name" => string(10) "country_id"
                                "column_default" => NULL
                                "data_type" => string(12) "int unsigned"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 5
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(3) "MUL"
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "lat" => array(9) (
                                "column_name" => string(3) "lat"
                                "column_default" => NULL
                                "data_type" => string(14) "float unsigned"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 6
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "lng" => array(9) (
                                "column_name" => string(3) "lng"
                                "column_default" => NULL
                                "data_type" => string(14) "float unsigned"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 7
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "sef" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(3) "sef"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 8
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "synch_id" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(8) "synch_id"
                                "column_default" => NULL
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 9
                                "display" => string(2) "11"
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "synch_site" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(10) "synch_site"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 10
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "is_published" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(12) "is_published"
                                "column_default" => string(1) "1"
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 11
                                "display" => string(2) "11"
                                "comment" => string(12) "1 - da 2 net"
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "confederation" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(13) "confederation"
                                "column_default" => string(1) "2"
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 12
                                "display" => string(1) "2"
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                        )
                        protected _updated_column => NULL
                        protected _created_column => NULL
                        protected _serialize_columns => array(0) 
                        protected _primary_key => string(2) "id"
                        protected _primary_key_value => NULL
                        protected _table_names_plural => bool TRUE
                        protected _reload_on_wakeup => bool TRUE
                        protected _db => object Database_PDO_MySQL(5) {
                            protected _identifier => string(1) "`"
                            public last_query => string(840) "SELECT `event`.`id` AS `id`, `event`.`title_ru` AS `title_ru`, `event`.`title_kz` AS `title_kz`, `event`.`title_en` AS `title_en …"
                            protected _instance => string(7) "default"
                            protected _connection => object PDO(0) {
                            }
                            protected _config => array(4) (
                                "type" => string(9) "PDO_MySQL"
                                "table_prefix" => string(0) ""
                                "charset" => string(4) "utf8"
                                "caching" => bool FALSE
                            )
                        }
                        protected _db_group => NULL
                        protected _db_applied => array(0) 
                        protected _db_pending => array(0) 
                        protected _db_reset => bool TRUE
                        protected _db_builder => NULL
                        protected _with_applied => array(0) 
                        protected _cast_data => array(0) 
                        protected _errors_filename => string(4) "city"
                    }
                    "city_array" => array(186) (
                        "all" => string(10) "All cities"
                        "astana" => string(6) "Astana"
                        "almati" => string(6) "Almaty"
                        "semei" => string(5) "Semey"
                        "parizh" => string(5) "Paris"
                        "pavlodar" => string(8) "Pavlodar"
                        "kordoba__kuba_" => string(7) "Cordoba"
                        "mariupol___ukraina_" => string(8) "Mariupol"
                        "akbulak" => string(7) "Akbulak"
                        "groznii__rossiya_" => string(6) "Grozny"
                        "mahachkala__rossiya_" => string(11) "Makhachkala"
                        "aktau" => string(6) "Aktau "
                        "shimkent" => string(8) "Shymkent"
                        "aktobe" => string(6) "Aktobe"
                        "karaganda" => string(9) "Karaganda"
                        "shchuchinsk" => string(11) "Shchuchinsk"
                        "berdichev__ukraina_" => string(10) "Berdichev "
                        "brandenburg__germaniya_" => string(11) "Brandenburg"
                        "kostanai" => string(8) "Kostanay"
                        "stambul__turtsiya_" => string(8) "Istanbul"
                        "minsk__belarus__" => string(5) "Minsk"
                        "taldikorgan" => string(12) "Taldykorgan "
                        "har_kov__ukraina_" => string(7) "Kharkiv"
                        "baku__azerbaidzhan_" => string(4) "Baku"
                        "kaskelen" => string(8) "Kaskelen"
                        "kiev__ukraina_" => string(4) "Kiev"
                        "oz__issik_kul___kirgizstan_" => string(10) "Issyk-Kul "
                        "petropavlovsk" => string(14) "Petropavlovsk "
                        "balhash" => string(9) "Balkhash "
                        "ayagoz" => string(7) "Ayagoz "
                        "rubtsovsk" => string(10) "Rubtsovsk "
                        "atirau" => string(7) "Atyrau "
                        "chirchik__uzbekistan_" => string(8) "Chirchiq"
                        "taraz" => string(5) "Taraz"
                        "kordai" => string(7) "Kordai "
                        "afini__gretsiya_" => string(7) "Athens "
                        "nikolaev__ukraina_" => string(9) "Nikolayev"
                        "zhaksi" => string(6) "Zhaksy"
                        "surgut__rossiya_" => string(6) "Surgut"
                        "chelyabinsk__rossiya_" => string(11) "Chelyabinsk"
                        "shu" => string(3) "Shu"
                        "berlin__germaniya_" => string(6) "Berlin"
                        "kaliningrad__rossiya_" => string(11) "Kaliningrad"
                        "varshava__pol_sha_" => string(6) "Warsaw"
                        "sassari__italiya_" => string(7) "Sassari"
                        "madrid__ispaniya_" => string(7) "Madrid "
                        "vanadzor__armeniya_" => string(8) "Vanadzor"
                        "olimpiya__gretsiya_" => string(8) "Olympia "
                        "borovoe" => string(7) "Burabai"
                        "spala__pol_sha_" => string(5) "Spala"
                        "budapesht__vengriya_" => string(8) "Budapest"
                        "yakutsk__rossiya_" => string(7) "Yakutsk"
                        "hasavurt__rossiya_" => string(10) "Khasavyurt"
                        "n_u_iork__ssha_" => string(8) "New York"
                        "ekibastuz" => string(18) "Экибастуз"
                        "ust__kamenogorsk" => string(7) "Oskemen"
                        "kokshetau" => string(10) "Kokshetau "
                        "staiki__belarus__" => string(16) "Flocks (Belarus)"
                        "riga__latviya_" => string(13) "Riga (Latvia)"
                        "ankara__turtsiya_" => string(15) "Ankara (Turkey)"
                        "bangkok__tailand_" => string(18) "Bangkok (Thailand)"
                        "sofiya__bolgariya_" => string(16) "Sofia, Bulgaria "
                        "zhezkazgan" => string(10) "Zheskazgan"
                        "roussi__bolgariya_" => string(16) "Rossi (Bulgaria)"
                        "kushadasi__turtsiya_" => string(17) "Kusadasi (Turkey)"
                        "ulan_bator__mongoliya_" => string(21) "Ulan Bator, Mongolia "
                        "zrenyanin__serbiya_" => string(17) "Zrenjanin, Serbia"
                        "kizilorda" => string(18) "Кызылорда"
                        "krasnoyarsk__rossiya_" => string(20) "Krasnoyarsk, Russia "
                        "turkestan" => string(9) "Turkestan"
                        "ridder" => string(6) "Ridder"
                        "esil_" => string(4) "Esil"
                        "moskva__rossiya_" => string(15) "Moscow, Russia "
                        "pusan__koreya_" => string(19) "Busan, South Korea "
                        "antaliya__turtsiya_" => string(16) "Antalya (Turkey)"
                        "bishkek__kirgizstan_" => string(20) "Bishkek, Kyrgyzstan "
                        "sidnei__avstraliya_" => string(18) "Sydney (Australia)"
                        "tekeli" => string(6) "Tekeli"
                        "kazan___rossiya_" => string(14) "Kazan (Russia)"
                        "vankuver__kanada_" => string(18) "Vancouver, Canada "
                        "nanzhin__kitai_" => string(14) "Nanjing, China"
                        "piongiang__kndr_" => string(16) "Piongiang (DPRK)"
                        "dortmund__germaniya_" => string(17) "Dortmund, Germany"
                        "nonkoen__tailand_" => string(18) "Non Con (Thailand)"
                        "dubai__oae_" => string(11) "Dubai, UAE "
                        "beloretsk__rossiya_" => string(18) "Beloretsk (Russia)"
                        "alushta__ukraina_" => string(17) "Alushta (Ukraine)"
                        "tirgovishte__ruminiya_" => string(20) "Targoviste (Romania)"
                        "tata__vengriya_" => string(14) "Tata (Hungary)"
                        "huhot__kitai_" => string(13) "Huhot (China)"
                        "saraevo__bosniya_i_gertsegovina_" => string(32) "Sarajevo, Bosnia and Herzegovina"
                        "vantaa__finlyandiya_" => string(16) "Vantaa, Finland "
                        "haparanda__shvetsiya_" => string(18) "Haparanda, Sweden "
                        "il_maioki__finlyandiya_" => string(17) "Ilmajoki, Finland"
                        "rio_de_zhaneiro__braziliya_" => string(23) "Rio de Janeiro, Brazil "
                        "phuket__tailand_" => string(17) "Phuket (Thailand)"
                        "ural_sk" => string(7) "Uralsk "
                        "urzhar" => string(7) "Urdzhar"
                        "tarbiz__iran_" => string(12) "Tabriz, Iran"
                        "gonkong__kitai_" => string(17) "Hong Kong (China)"
                        "las_vegas__ssha_" => string(19) "Las Vegas, NV (USA)"
                        "eindhoven__niderlandi_" => string(23) "Eindhoven (Netherlands)"
                        "gamburg__germaniya_" => string(17) "Hamburg (Germany)"
                        "tegeran__iran_" => string(13) "Tehran (Iran)"
                        "dzhakarta__indoneziya_" => string(19) "Jakarta (Indonesia)"
                        "mehiko__meksika_" => string(20) "Mexico City (Mexico)"
                        "seul__koreya_" => string(13) "Seoul, Korea "
                        "gavana__kuba_" => string(13) "Havana (Cuba)"
                        "buharest__ruminiya_" => string(19) "Bucharest (Romania)"
                        "tallin__estoniya_" => string(17) "Tallinn (Estonia)"
                        "liverpul___velikobritaniya_" => string(14) "Liverpool (UK)"
                        "zagreb__horvatiya_" => string(15) "Zagreb, Croatia"
                        "tashkent__uzbekistan_" => string(20) "Tashkent, Uzbekistan"
                        "port_lui__mavrikii_" => string(21) "Port Louis, Mauritius"
                        "abu_dabi__oae_" => string(15) "Abu Dhabi (UAE)"
                        "apia__samoa_" => string(12) "Apia, Samoa "
                        "rotterdam__niderlandi_" => string(22) "Rotterdam, Netherlands"
                        "chedzhu__koreya_" => string(11) "Jeju, Korea"
                        "tokio__yaponiya_" => string(12) "Tokyo, Japan"
                        "tsindao__kitai_" => string(14) "Qingdao, China"
                        "lissabon__portugaliya_" => string(17) "Lisbon (Portugal)"
                        "maiami__ssha_" => string(11) "Miami (USA)"
                        "rim__italiya_" => string(12) "Rome (Italy)"
                        "vrotslav__pol_sha_" => string(16) "Wroclaw (Poland)"
                        "tsetnevo__pol_sha_" => string(17) "Tsetnevo (Poland)"
                        "praga__chehiya_" => string(23) "Prague (Czech Republic)"
                        "vena__avstriya_" => string(16) "Vienna (Austria)"
                        "satpaev" => string(8) "Satpayev"
                        "lublyana__sloveniya_" => string(19) "Ljubljana, Slovenia"
                        "shardara" => string(8) "Shardara"
                        "beineu" => string(6) "Beineu"
                        "temirtau" => string(8) "Temirtau"
                        "uzhgorod__ukraina_" => string(17) "Uzhgorod, Ukraine"
                        "arkalik" => string(7) "Arkalyk"
                        "lenger" => string(6) "Lenger"
                        "stepnogorsk" => string(12) "Stepnogorsk "
                        "agadir" => string(6) "Agadyr"
                        "tobol" => string(6) "Tobol "
                        "malaga__ispaniya_" => string(14) "Malaga (Spain)"
                        "subik_bei" => string(23) "Subic Bay (Philippines)"
                        "debretsen" => string(18) "Debrecen (Hungary)"
                        "galle__germaniya_" => string(15) "Halle (Germany)"
                        "usti_nad_labem__chehiya_" => string(31) "Usti nad Labem (Czech Republic)"
                        "hersone__ukraina_" => string(17) "Kherson (Ukraine)"
                        "habarovsk__rossiya_" => string(19) "Khabarovsk (Russia)"
                        "brunang_cheberg___avstriya_" => string(25) "Brunang-Cheberg (Austria)"
                        "lima__peru_" => string(11) "Lima (Peru)"
                        "opredelitsya_pozzhe" => string(33) "Определится позже"
                        "Ulan-Ude" => string(8) "Ulan-Ude"
                        "sankt-peterburg" => string(16) "Saint Petersburg"
                        "tumen" => string(5) "Tumen"
                        "kolorado-springs" => string(16) "Colorado Springs"
                        "sambathei" => string(18) "Самбатхей"
                        "belgrad" => string(14) "Белград"
                        "dusseldorf" => string(22) "Дюссельдорф"
                        "tbilisi-gruziya" => string(29) "Тбилиси (Грузия)"
                        "buenos-aires-argentina" => string(44) "Буэнос-Айрес (Аргентина)"
                        "samsun" => string(12) "Самсун"
                        "orenburg" => string(16) "Оренбург"
                        "taipei" => string(12) "Тайпей"
                        "glazgo" => string(12) "Глазго"
                        "konzhu-koreya" => string(23) "Конжу (Корея)"
                        "chiangmai-tailand" => string(33) "Чиангмай (Таиланд)"
                        "snina" => string(5) "Snina"
                        "inchhon" => string(6) "Inchon"
                        "inchhon__uzhnaya_koreya_" => string(29) "Манама (Бахрейн)"
                        "rotava" => string(12) "Ротава"
                        "inchion__koreya_" => string(25) "Инчион (Корея)"
                        "doha-katar" => string(21) "Доха (Катар)"
                        "vrbas-serbiya" => string(25) "Врбас (Сербия)"
                        "saloniki-gretsiya" => string(31) "Салоники (Греция)"
                        "orlando-florida-ssha" => string(38) "Орландо, Флорида, США"
                        "fudzheira-oae" => string(24) "Фуджейра, ОАЭ"
                        "el-kuveit-kuveit" => string(36) "​Эль-Кувейт, Кувейт"
                        "shkoder-albaniya" => string(32) "​Шкодер (Албания)"
                        "kitaiskii-taipei" => string(34) "​Китайский Тайпей"
                        "rabat-marokko" => string(26) "Рабат, Марокко"
                        "insbruk-avstriya" => string(34) "​Инсбрук (Австрия)"
                        "nu-deli-indiya" => string(28) "Нью-Дели (Индия)"
                        "neipido-myanma" => string(30) "Нейпьидо, Мьянма"
                        "rossiya" => string(12) "Россия"
                        "katmandu-nepal" => string(29) "Катманду (Непал)"
                        "resife-braziliya" => string(31) "Ресифе (Бразилия)"
                        "kingdao-kitai" => string(27) "Кингдао (Китай)"
                        "huston-ssha" => string(23) "Хьюстон (США)"
                        "dzhedzhu-uzhnaya-koreya" => string(36) "Джеджу (Южная Корея)"
                    )
                    "model" => object Model_Event(42) {
                        protected _route => string(5) "event"
                        protected _belongs_to => array(1) (
                            "city" => array(2) (
                                "foreign_key" => string(7) "city_id"
                                "model" => string(4) "City"
                            )
                        )
                        protected _default_lang => string(2) "ru"
                        protected _need_log => bool FALSE
                        protected _action_type => NULL
                        protected _deffered_values => array(0) 
                        protected _partial_models => array(0) 
                        protected _partial_models_temp => array(0) 
                        public pagination => NULL
                        protected _has_one => array(0) 
                        protected _has_many => array(0) 
                        protected _load_with => array(0) 
                        protected _validation => NULL
                        protected _object => array(21) (
                            "id" => NULL
                            "title_ru" => NULL
                            "title_kz" => NULL
                            "title_en" => NULL
                            "date_begin" => NULL
                            "date_end" => NULL
                            "text_ru" => NULL
                            "text_kz" => NULL
                            "text_en" => NULL
                            "type" => NULL
                            "address" => NULL
                            "telephone" => NULL
                            "email" => NULL
                            "lat" => NULL
                            "lng" => NULL
                            "sef" => NULL
                            "city_id" => NULL
                            "synch_id" => NULL
                            "synch_site" => NULL
                            "is_published" => NULL
                            "confederation" => NULL
                        )
                        protected _changed => array(0) 
                        protected _original_values => array(0) 
                        protected _related => array(0) 
                        protected _valid => bool FALSE
                        protected _loaded => bool FALSE
                        protected _saved => bool FALSE
                        protected _sorting => NULL
                        protected _foreign_key_suffix => string(3) "_id"
                        protected _object_name => string(5) "event"
                        protected _object_plural => string(6) "events"
                        protected _table_name => string(6) "events"
                        protected _table_columns => array(21) (
                            "id" => array(9) (
                                "column_name" => string(2) "id"
                                "column_default" => NULL
                                "data_type" => string(12) "int unsigned"
                                "is_nullable" => bool FALSE
                                "ordinal_position" => integer 1
                                "comment" => string(0) ""
                                "extra" => string(14) "auto_increment"
                                "key" => string(3) "PRI"
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_ru" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_ru"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 2
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_kz" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_kz"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 3
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "title_en" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(8) "title_en"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 4
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "date_begin" => array(9) (
                                "column_name" => string(10) "date_begin"
                                "column_default" => NULL
                                "data_type" => string(8) "datetime"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 5
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "date_end" => array(9) (
                                "column_name" => string(8) "date_end"
                                "column_default" => NULL
                                "data_type" => string(8) "datetime"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 6
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "text_ru" => array(9) (
                                "column_name" => string(7) "text_ru"
                                "column_default" => NULL
                                "data_type" => string(10) "mediumtext"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 7
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "text_kz" => array(9) (
                                "column_name" => string(7) "text_kz"
                                "column_default" => NULL
                                "data_type" => string(10) "mediumtext"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 8
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "text_en" => array(9) (
                                "column_name" => string(7) "text_en"
                                "column_default" => NULL
                                "data_type" => string(10) "mediumtext"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 9
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "type" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(4) "type"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 10
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "address" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(7) "address"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 11
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "telephone" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(9) "telephone"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 12
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "email" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(5) "email"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 13
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "lat" => array(11) (
                                "type" => string(5) "float"
                                "exact" => bool TRUE
                                "column_name" => string(3) "lat"
                                "column_default" => NULL
                                "data_type" => string(7) "decimal"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 14
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "lng" => array(11) (
                                "type" => string(5) "float"
                                "exact" => bool TRUE
                                "column_name" => string(3) "lng"
                                "column_default" => NULL
                                "data_type" => string(7) "decimal"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 15
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "sef" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(3) "sef"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 16
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "city_id" => array(9) (
                                "column_name" => string(7) "city_id"
                                "column_default" => NULL
                                "data_type" => string(12) "int unsigned"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 17
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(3) "MUL"
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "synch_id" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(8) "synch_id"
                                "column_default" => NULL
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 18
                                "display" => string(2) "11"
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "synch_site" => array(10) (
                                "type" => string(6) "string"
                                "column_name" => string(10) "synch_site"
                                "column_default" => NULL
                                "data_type" => string(7) "varchar"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 19
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "is_published" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(12) "is_published"
                                "column_default" => string(1) "1"
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 20
                                "display" => string(2) "11"
                                "comment" => string(12) "1 - da 2 net"
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                            "confederation" => array(13) (
                                "type" => string(3) "int"
                                "min" => string(11) "-2147483648"
                                "max" => string(10) "2147483647"
                                "column_name" => string(13) "confederation"
                                "column_default" => string(1) "2"
                                "data_type" => string(3) "int"
                                "is_nullable" => bool TRUE
                                "ordinal_position" => integer 21
                                "display" => string(1) "2"
                                "comment" => string(0) ""
                                "extra" => string(0) ""
                                "key" => string(0) ""
                                "privileges" => string(31) "select,insert,update,references"
                            )
                        )
                        protected _updated_column => NULL
                        protected _created_column => NULL
                        protected _serialize_columns => array(0) 
                        protected _primary_key => string(2) "id"
                        protected _primary_key_value => NULL
                        protected _table_names_plural => bool TRUE
                        protected _reload_on_wakeup => bool TRUE
                        protected _db => object Database_PDO_MySQL(5) {
                            protected _identifier => string(1) "`"
                            public last_query => string(840) "SELECT `event`.`id` AS `id`, `event`.`title_ru` AS `title_ru`, `event`.`title_kz` AS `title_kz`, `event`.`title_en` AS `title_en …"
                            protected _instance => string(7) "default"
                            protected _connection => object PDO(0) {
                            }
                            protected _config => array(4) (
                                "type" => string(9) "PDO_MySQL"
                                "table_prefix" => string(0) ""
                                "charset" => string(4) "utf8"
                                "caching" => bool FALSE
                            )
                        }
                        protected _db_group => NULL
                        protected _db_applied => array(0) 
                        protected _db_pending => array(0) 
                        protected _db_reset => bool TRUE
                        protected _db_builder => NULL
                        protected _with_applied => array(0) 
                        protected _cast_data => array(0) 
                        protected _errors_filename => string(5) "event"
                    }
                )
            }
            public model => NULL
            public count => integer 1
            protected header => array(4) (
                "scripts" => array(16) (
                    "jquery" => string(26) "js/lib/jquery-1.9.0.min.js"
                    "jquery-ui" => string(36) "js/lib/jquery-ui-1.9.1.custom.min.js"
                    "mainJS" => string(11) "js/index.js"
                    "bootstrap" => string(36) "js/lib/bootstrap/js/bootstrap.min.js"
                    "ulogin" => string(29) "http://ulogin.ru/js/ulogin.js"
                    "fancybox" => string(30) "js/fancybox/jquery.fancybox.js"
                    "fancybox.pack" => string(35) "js/fancybox/jquery.fancybox.pack.js"
                    "fancybox.buttons" => string(38) "js/fancybox/jquery.fancybox-buttons.js"
                    "fancybox.thumbs" => string(37) "js/fancybox/jquery.fancybox-thumbs.js"
                    "fancybox.media" => string(36) "js/fancybox/jquery.fancybox-media.js"
                    "imagesloaded" => string(22) "js/imagesloaded.min.js"
                    "masonry" => string(17) "js/masonry.min.js"
                    "index" => string(11) "js/index.js"
                    "eventroute" => string(16) "js/eventroute.js"
                    "yandexmap" => string(59) "http://api-maps.yandex.ru/2.0/?load=package.full&lang=ru-RU"
                    "map" => string(14) "js/eventmap.js"
                )
                "styles" => array(5) (
                    "jquery_ui" => string(75) "js/lib/jquery-ui-1.9.1.custom/css/smoothness/jquery-ui-1.9.1.custom.min.css"
                    "fancybox" => string(32) "css/fancybox/jquery.fancybox.css"
                    "fancybuttons" => string(40) "css/fancybox/jquery.fancybox-buttons.css"
                    "fancyboxthumbs" => string(39) "css/fancybox/jquery.fancybox-thumbs.css"
                    "main" => string(13) "css/style.css"
                )
                "meta" => array(0) 
                "og" => array(0) 
            )
            protected document_root => string(15) "/var/www/fdk.kz"
        }
        public session => object Session_Native(5) {
            protected _name => string(7) "session"
            protected _lifetime => integer 0
            protected _encrypted => bool FALSE
            protected _data => array(5) (
                "csrf-token" => string(64) "5f0230c7376fec19c84a380fa9453b6b7209bc4f9ebe1fa73d10b387e44c2f01"
                "lang" => string(2) "en"
                "cms_page_messages" => array(0) 
                "last_uri" => string(22) "event/list/14818/2/all"
                "last_active" => integer 1754935207
            )
            protected _destroyed => bool FALSE
        }
        protected _csrf => NULL
        protected _need_csrf => bool FALSE
        public request => object Request(19) {
            protected _requested_with => NULL
            protected _method => string(3) "GET"
            protected _protocol => string(8) "HTTP/2.0"
            protected _secure => bool TRUE
            protected _referrer => NULL
            protected _route => object Route(5) {
                protected _filters => array(0) 
                protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
                protected _regex => array(0) 
                protected _defaults => array(2) (
                    "controller" => string(10) "federation"
                    "action" => string(5) "index"
                )
                protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
            }
            protected _routes => array(0) 
            protected _header => object HTTP_Header(0) {
            }
            protected _body => NULL
            protected _directory => string(0) ""
            protected _controller => string(5) "Event"
            protected _action => string(4) "list"
            protected _uri => string(22) "event/list/16546/7/all"
            protected _external => bool FALSE
            protected _params => array(3) (
                "id" => string(5) "16546"
                "id2" => string(1) "7"
                "city" => string(3) "all"
            )
            protected _get => array(1) (
                "lang" => string(2) "en"
            )
            protected _post => array(0) 
            protected _cookies => array(2) (
                "lang" => string(2) "en"
                "session" => NULL
            )
            protected _client => object Request_Client_Internal(9) {
                protected _previous_environment => NULL
                protected _cache => NULL
                protected _follow => bool FALSE
                protected _follow_headers => array(1) (
                    0 => string(13) "Authorization"
                )
                protected _strict_redirect => bool TRUE
                protected _header_callbacks => array(1) (
                    "Location" => string(34) "Request_Client::on_header_location"
                )
                protected _max_callback_depth => integer 5
                protected _callback_depth => integer 1
                protected _callback_params => array(0) 
            }
        }
        public response => object Response(5) {
            protected _status => integer 200
            protected _header => object HTTP_Header(0) {
            }
            protected _body => string(0) ""
            protected _cookies => array(0) 
            protected _protocol => NULL
        }
    }
     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');
    
  20. 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/2.0"
        protected _secure => bool TRUE
        protected _referrer => NULL
        protected _route => object Route(5) {
            protected _filters => array(0) 
            protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
            protected _regex => array(0) 
            protected _defaults => array(2) (
                "controller" => string(10) "federation"
                "action" => string(5) "index"
            )
            protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
        }
        protected _routes => array(0) 
        protected _header => object HTTP_Header(0) {
        }
        protected _body => NULL
        protected _directory => string(0) ""
        protected _controller => string(5) "Event"
        protected _action => string(4) "list"
        protected _uri => string(22) "event/list/16546/7/all"
        protected _external => bool FALSE
        protected _params => array(3) (
            "id" => string(5) "16546"
            "id2" => string(1) "7"
            "city" => string(3) "all"
        )
        protected _get => array(1) (
            "lang" => string(2) "en"
        )
        protected _post => array(0) 
        protected _cookies => array(2) (
            "lang" => string(2) "en"
            "session" => NULL
        )
        protected _client => object Request_Client_Internal(9) {
            protected _previous_environment => NULL
            protected _cache => NULL
            protected _follow => bool FALSE
            protected _follow_headers => array(1) (
                0 => string(13) "Authorization"
            )
            protected _strict_redirect => bool TRUE
            protected _header_callbacks => array(1) (
                "Location" => string(34) "Request_Client::on_header_location"
            )
            protected _max_callback_depth => integer 5
            protected _callback_depth => integer 1
            protected _callback_params => array(0) 
        }
    }
    1
    object Response(5) {
        protected _status => integer 200
        protected _header => object HTTP_Header(0) {
        }
        protected _body => string(0) ""
        protected _cookies => array(0) 
        protected _protocol => NULL
    }
    109 		$orig_response = $response = Response::factory();
    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))
    
  21. SYSPATH/classes/Kohana/Request.php [ 990 ] » Kohana_Request_Client->execute(arguments)

    0
    object Request(19) {
        protected _requested_with => NULL
        protected _method => string(3) "GET"
        protected _protocol => string(8) "HTTP/2.0"
        protected _secure => bool TRUE
        protected _referrer => NULL
        protected _route => object Route(5) {
            protected _filters => array(0) 
            protected _uri => string(49) "(<controller>(/<action>(/<id>(/<id2>(/<city>)))))"
            protected _regex => array(0) 
            protected _defaults => array(2) (
                "controller" => string(10) "federation"
                "action" => string(5) "index"
            )
            protected _route_regex => string(150) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<id2>[^/.,;?\n]++)(?:/(?P<city>[^/., …"
        }
        protected _routes => array(0) 
        protected _header => object HTTP_Header(0) {
        }
        protected _body => NULL
        protected _directory => string(0) ""
        protected _controller => string(5) "Event"
        protected _action => string(4) "list"
        protected _uri => string(22) "event/list/16546/7/all"
        protected _external => bool FALSE
        protected _params => array(3) (
            "id" => string(5) "16546"
            "id2" => string(1) "7"
            "city" => string(3) "all"
        )
        protected _get => array(1) (
            "lang" => string(2) "en"
        )
        protected _post => array(0) 
        protected _cookies => array(2) (
            "lang" => string(2) "en"
            "session" => NULL
        )
        protected _client => object Request_Client_Internal(9) {
            protected _previous_environment => NULL
            protected _cache => NULL
            protected _follow => bool FALSE
            protected _follow_headers => array(1) (
                0 => string(13) "Authorization"
            )
            protected _strict_redirect => bool TRUE
            protected _header_callbacks => array(1) (
                "Location" => string(34) "Request_Client::on_header_location"
            )
            protected _max_callback_depth => integer 5
            protected _callback_depth => integer 1
            protected _callback_params => array(0) 
        }
    }
    985 			throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
    986 				':uri' => $this->_uri,
    987 			));
    988 		}
    989 
    990 		return $this->_client->execute($this);
    991 	}
    992 
    993 	/**
    994 	 * Returns whether this request is the initial request Kohana received.
    995 	 * Can be used to test for sub requests.
    
  22. DOCROOT/index.php [ 118 ] » Kohana_Request->execute()

    113 	/**
    114 	 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
    115 	 * If no source is specified, the URI will be automatically detected.
    116 	 */
    117 	echo Request::factory(TRUE, array(), FALSE)
    118 		->execute()
    119 		->send_headers(TRUE)
    120 		->body();
    121 }
    

Environment

Included files (144)

DOCROOT/index.php
APPPATH/bootstrap.php
SYSPATH/classes/Kohana/Core.php
SYSPATH/classes/Kohana.php
SYSPATH/classes/I18n.php
SYSPATH/classes/Kohana/I18n.php
SYSPATH/classes/Log.php
SYSPATH/classes/Kohana/Log.php
SYSPATH/classes/Config.php
SYSPATH/classes/Kohana/Config.php
SYSPATH/classes/Log/File.php
SYSPATH/classes/Kohana/Log/File.php
SYSPATH/classes/Log/Writer.php
SYSPATH/classes/Kohana/Log/Writer.php
SYSPATH/classes/Cookie.php
SYSPATH/classes/Kohana/Cookie.php
SYSPATH/classes/Config/File.php
SYSPATH/classes/Kohana/Config/File.php
SYSPATH/classes/Kohana/Config/File/Reader.php
SYSPATH/classes/Kohana/Config/Reader.php
SYSPATH/classes/Kohana/Config/Source.php
MODPATH/cms/init.php
SYSPATH/classes/Arr.php
SYSPATH/classes/Kohana/Arr.php
MODPATH/cms/config/cms.php
APPPATH/config/cms.php
SYSPATH/classes/Config/Group.php
SYSPATH/classes/Kohana/Config/Group.php
MODPATH/cms/classes/Helper.php
MODPATH/category/init.php
SYSPATH/classes/Route.php
SYSPATH/classes/Kohana/Route.php
MODPATH/email/init.php
MODPATH/email/vendor/swiftmailer/lib/swift_required.php
MODPATH/email/vendor/swiftmailer/lib/classes/Swift.php
MODPATH/search/init.php
MODPATH/cms/classes/Cms/Module.php
MODPATH/cms/classes/CMS.php
MODPATH/cms/classes/Event.php
MODPATH/cms/classes/Cms/Event.php
MODPATH/cms/vendors/swiftmailer/lib/swift_required.php
SYSPATH/classes/Request.php
SYSPATH/classes/Kohana/Request.php
SYSPATH/classes/HTTP/Request.php
SYSPATH/classes/Kohana/HTTP/Request.php
SYSPATH/classes/HTTP/Message.php
SYSPATH/classes/Kohana/HTTP/Message.php
SYSPATH/classes/HTTP/Header.php
SYSPATH/classes/Kohana/HTTP/Header.php
SYSPATH/classes/Request/Client/Internal.php
SYSPATH/classes/Kohana/Request/Client/Internal.php
SYSPATH/classes/Request/Client.php
SYSPATH/classes/Kohana/Request/Client.php
SYSPATH/classes/Response.php
SYSPATH/classes/Kohana/Response.php
SYSPATH/classes/HTTP/Response.php
SYSPATH/classes/Kohana/HTTP/Response.php
SYSPATH/classes/Profiler.php
SYSPATH/classes/Kohana/Profiler.php
APPPATH/classes/Controller/Event.php
APPPATH/classes/Site.php
MODPATH/cms/classes/Cms/Controller/Site.php
MODPATH/cms/classes/Cms/Controller/Auth.php
MODPATH/cms/classes/Cms/Controller.php
SYSPATH/classes/Controller.php
SYSPATH/classes/Kohana/Controller.php
SYSPATH/classes/Session.php
SYSPATH/classes/Kohana/Session.php
SYSPATH/config/session.php
MODPATH/database/config/session.php
SYSPATH/classes/Session/Native.php
SYSPATH/classes/Kohana/Session/Native.php
SYSPATH/classes/URL.php
SYSPATH/classes/Kohana/URL.php
MODPATH/cms/classes/View.php
MODPATH/cms/classes/Cms/View.php
SYSPATH/classes/Kohana/View.php
SYSPATH/classes/View/Exception.php
SYSPATH/classes/Kohana/View/Exception.php
SYSPATH/classes/Kohana/Exception.php
SYSPATH/classes/Kohana/Kohana/Exception.php
SYSPATH/i18n/en.php
APPPATH/i18n/en.php
MODPATH/cms/classes/Cms/Page.php
MODPATH/auth/classes/Auth.php
MODPATH/auth/classes/Kohana/Auth.php
MODPATH/auth/config/auth.php
APPPATH/config/auth.php
APPPATH/classes/Auth/Ulogin.php
MODPATH/orm/classes/Kohana/Auth/ORM.php
MODPATH/cms/classes/ULogin.php
MODPATH/cms/config/ulogin.php
SYSPATH/classes/UTF8.php
SYSPATH/classes/Kohana/UTF8.php
APPPATH/classes/ORM.php
MODPATH/cms/classes/Cms/ORM.php
MODPATH/orm/classes/Kohana/ORM.php
SYSPATH/classes/Model.php
SYSPATH/classes/Kohana/Model.php
MODPATH/cms/classes/IC/Editable.php
MODPATH/cms/classes/IC/Actions.php
APPPATH/classes/Model/Event.php
MODPATH/search/classes/ISearchable.php
APPPATH/classes/Synchronize/ISynch.php
SYSPATH/classes/Inflector.php
SYSPATH/classes/Kohana/Inflector.php
SYSPATH/config/inflector.php
MODPATH/database/classes/Database.php
MODPATH/database/classes/Kohana/Database.php
MODPATH/database/config/database.php
APPPATH/config/database.php
APPPATH/classes/Database/PDO/MySQL.php
MODPATH/database/classes/Database/PDO.php
MODPATH/database/classes/Kohana/Database/PDO.php
MODPATH/database/classes/Database/Result/Cached.php
MODPATH/database/classes/Kohana/Database/Result/Cached.php
MODPATH/database/classes/Database/Result.php
MODPATH/database/classes/Kohana/Database/Result.php
APPPATH/classes/Model/City.php
MODPATH/database/classes/DB.php
MODPATH/database/classes/Kohana/DB.php
MODPATH/database/classes/Database/Query/Builder/Select.php
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php
MODPATH/database/classes/Database/Query/Builder/Where.php
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php
MODPATH/database/classes/Database/Query/Builder.php
MODPATH/database/classes/Kohana/Database/Query/Builder.php
MODPATH/database/classes/Database/Query.php
MODPATH/database/classes/Kohana/Database/Query.php
MODPATH/database/classes/Database/Expression.php
MODPATH/database/classes/Kohana/Database/Expression.php
APPPATH/views/basic.php
SYSPATH/classes/HTML.php
SYSPATH/classes/Kohana/HTML.php
APPPATH/classes/Controller/Menu.php
APPPATH/classes/Model/Menu.php
MODPATH/cms/classes/ORM/Embeded.php
MODPATH/database/classes/Database/Exception.php
MODPATH/database/classes/Kohana/Database/Exception.php
SYSPATH/classes/Debug.php
SYSPATH/classes/Kohana/Debug.php
APPPATH/classes/Date.php
SYSPATH/classes/Kohana/Date.php
SYSPATH/views/kohana/error.php

Loaded extensions (52)

Core
date
ereg
libxml
openssl
pcre
zlib
filter
hash
Reflection
SPL
session
standard
cgi-fcgi
mysqlnd
PDO
xml
bcmath
bz2
calendar
ctype
curl
dom
mbstring
fileinfo
ftp
gd
gettext
iconv
intl
json
exif
mysql
mysqli
pdo_mysql
Phar
posix
readline
shmop
SimpleXML
sockets
sysvmsg
sysvsem
sysvshm
tokenizer
wddx
xmlreader
xmlwriter
xsl
zip
mhash
Zend OPcache

$_SESSION

csrf-token
string(64) "5f0230c7376fec19c84a380fa9453b6b7209bc4f9ebe1fa73d10b387e44c2f01"
lang
string(2) "en"
cms_page_messages
array(0) 
last_uri
string(22) "event/list/14818/2/all"
last_active
integer 1754935207

$_GET

lang
string(2) "en"

$_COOKIE

lang
string(43) "fdcc027555594823689ad59cfe57bbf5bfd154a4~en"
session
string(26) "asg3b0hjq37jjsske9lio4fcc1"

$_SERVER

USER
string(8) "www-data"
HOME
string(8) "/var/www"
FCGI_ROLE
string(9) "RESPONDER"
QUERY_STRING
string(7) "lang=en"
REQUEST_METHOD
string(3) "GET"
CONTENT_TYPE
string(0) ""
CONTENT_LENGTH
string(0) ""
SCRIPT_NAME
string(10) "/index.php"
REQUEST_URI
string(31) "/event/list/16546/7/all?lang=en"
DOCUMENT_URI
string(10) "/index.php"
DOCUMENT_ROOT
string(15) "/var/www/fdk.kz"
SERVER_PROTOCOL
string(8) "HTTP/2.0"
REQUEST_SCHEME
string(5) "https"
HTTPS
string(2) "on"
GATEWAY_INTERFACE
string(7) "CGI/1.1"
SERVER_SOFTWARE
string(12) "nginx/1.24.0"
REMOTE_ADDR
string(14) "216.73.216.100"
REMOTE_PORT
string(5) "21834"
REMOTE_USER
string(0) ""
SERVER_ADDR
string(13) "38.107.234.64"
SERVER_PORT
string(3) "443"
SERVER_NAME
string(6) "fdk.kz"
REDIRECT_STATUS
string(3) "200"
SCRIPT_FILENAME
string(25) "/var/www/fdk.kz/index.php"
HTTP_HOST
string(6) "fdk.kz"
HTTP_ACCEPT
string(3) "*/*"
HTTP_USER_AGENT
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT_ENCODING
string(23) "gzip, br, zstd, deflate"
HTTP_COOKIE
string(86) "lang=fdcc027555594823689ad59cfe57bbf5bfd154a4%7Een; session=asg3b0hjq37jjsske9lio4fcc1"
PHP_SELF
string(10) "/index.php"
REQUEST_TIME_FLOAT
float 1754935211.2676
REQUEST_TIME
integer 1754935211
Home - Calendar

Calendar

July (16546)
  • ← 16546 →
  • All the year
  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August
  • September
  • October
  • November
  • December

No events for selected period

© Confederation of combat
and strength sports of Kazakhstan, 2025
We are on VK We are on Facebook We are in Instagram
kaznetmedia