SYSPATH/classes/kohana/route.php [ 362 ]
357 list($key, $param) = $match;
358
359 if ( ! isset($params[$param]))
360 {
361 // Ungrouped parameters are required
362 throw new Kohana_Exception('Required route parameter not passed: :param',
363 array(':param' => $param));
364 }
365
366 $uri = str_replace($key, $params[$param], $uri);
367 }
-
APPPATH/views/filmfestival/archive/films/_filters.php [ 7 ] » Kohana_Route->uri(arguments)
0
array(3) ( "language" => string(0) "" "edition" => NULL "action" => string(5) "films" )
2 <header id="subsection-header"> 3 <h2 class="ff"><?= $festival_edition->get_title() ?></h2> 4 <nav> 5 <ul class="tertiarynav"> 6 <li <? if ($edition_section=="" || $edition_section=="films") echo ' class="current" ' ?>> 7 <?= html::anchor( Route::get('filmfestival_archive_edition')->uri(array("language" => helper::get_language_for_url(), 'edition' => $festival_edition->year, 'action' => 'films')), __("Films")) ?> 8 </li> 9 10 <li <? if ($edition_section=="events" || $edition_section=="view_event") echo ' class="current" ' ?> > 11 <?= html::anchor( Route::get('filmfestival_archive_edition')->uri(array("language" => helper::get_language_for_url(), 'edition' => $festival_edition->year, 'action' => 'events')), __("Events")) ?> 12 </li>
-
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0
string(71) "/var/www/html/application/views/filmfestival/archive/films/_filters.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)
0
string(71) "/var/www/html/application/views/filmfestival/archive/films/_filters.php"
1
array(1) ( "all_festivals" => bool TRUE )
338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // End View
-
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 // Display the exception message 233 Kohana::exception_handler($e);
-
APPPATH/views/filmfestival/archive/awards.php [ 3 ] » Kohana_View->__toString()
1 <section id="filmfestival" class="col-wide awards archive"> 2 <?= view::factory("filmfestival/_nav")->render(); ?> 3 <?= View::factory('filmfestival/archive/films/_filters')->set('all_festivals', true)?> 4 5 <div class="cols"> 6 <article class="detail col-wide"> 7 <? if (isset($winners)) { ?> 8 <? if ($winners_festival_edition->get_winners_intro() != '') { ?>
-
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0
string(63) "/var/www/html/application/views/filmfestival/archive/awards.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)
0
string(63) "/var/www/html/application/views/filmfestival/archive/awards.php"
1
array(0)
338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // End View
-
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 // Display the exception message 233 Kohana::exception_handler($e);
-
APPPATH/views/layouts/default.php [ 115 ] » Kohana_View->__toString()
110 <div class="col-thin"> 111 <?= View::factory("layouts/default/_header")->render(); ?> 112 <? if (isset($header)) echo $header; ?> 113 <?php echo view::factory('section/tout_sponsors_ar_en')->set('section', ORM::factory('section', 3))->render(); ?> 114 </div> 115 <? if (isset($top)) echo $top; ?> 116 </div> 117 118 <? if (isset($main)) echo $main; ?> 119 120
-
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0
string(51) "/var/www/html/application/views/layouts/default.php"
56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean();
-
SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)
0
string(51) "/var/www/html/application/views/layouts/default.php"
1
array(1) ( "content" => object View(2)
{ protected _file => string(63) "/var/www/html/application/views/filmfestival/archive/awards.php" protected _data => array(0) }
)338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // End View
-
MODPATH/kexts/classes/kohana/controller/app.php [ 27 ] » Kohana_View->render()
22 $this->view->set_filename($this->layout); 23 $this->view->content = View::factory($this->template); 24 } else { 25 $this->view->set_filename($this->template); 26 } 27 $this->request->response = $this->view->render(); 28 return parent::after(); 29 } 30 31 protected function render_template($template) { 32 $this->template = $template;
-
APPPATH/classes/controller/application.php [ 58 ] » Kohana_Controller_App->after()
53 if ($lang == "") { 54 $lang = "en"; 55 } 56 $this->assign('lang', $lang); 57 58 parent::after(); 59 } 60 61 public function require_member($redirect_to=null) { 62 if (!isset($_SESSION['member'])) { 63 if($redirect_to == null) {
-
{PHP internal call} » Controller_Application->after()
-
SYSPATH/classes/kohana/request.php [ 1049 ] » ReflectionMethod->invoke(arguments)
0
object Controller_FilmFestival_Archive(19)
{ protected festival_edition => object Model_Filmfestival_Edition(41)
{ protected _ignored_columns => array(4) ( "image_en" => string(8) "image_en" "image_ar" => string(8) "image_ar" "awards_image" => string(12) "awards_image" "winners_image" => string(13) "winners_image" ) protected _has_many => array(2) ( "films" => array(4) ( "model" => string(4) "film" "foreign_key" => string(23) "filmfestival_edition_id" "through" => NULL "far_key" => string(7) "film_id" ) "filmfestival_sponsor_categories" => array(4) ( "model" => string(29) "filmfestival_sponsor_category" "foreign_key" => string(23) "filmfestival_edition_id" "through" => NULL "far_key" => string(32) "filmfestival_sponsor_category_id" ) ) protected _rules => array(7) ( "title_en" => array(1) ( "not_empty" => array(0) ) "datakal_edition_number" => array(1) ( "not_empty" => array(0) ) "year" => array(1) ( "not_empty" => array(0) ) "starts_at" => array(1) ( "not_empty" => array(0) ) "ends_at" => array(1) ( "not_empty" => array(0) ) "films_xml" => array(2) ( "not_empty" => array(0) "url" => array(0) ) "events_xml" => array(2) ( "not_empty" => array(0) "url" => array(0) ) ) protected _labels => array(14) ( "year" => string(4) "Year" "title_en" => string(5) "Title" "title_ar" => string(10) "Title (ar)" "starts_at" => string(10) "Start Date" "ends_at" => string(8) "End Date" "datakal_edition_number" => string(22) "Datakal Edition Number" "short_description_en" => string(9) "Text (en)" "short_description_ar" => string(9) "Text (ar)" "url" => string(3) "URL" "image_en" => string(10) "Image (en)" "image_ar" => string(10) "Image (ar)" "films_xml" => string(9) "Films XML" "events_xml" => string(10) "Events XML" "panels_xml" => string(14) "Doha Talks XML" ) protected attachments => array(4) ( "image_en" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "normal" => string(8) "775x149#" ) ) "image_ar" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "normal" => string(8) "775x149#" ) ) "awards_image" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "large" => string(8) "536x302#" ) ) "winners_image" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "large" => string(8) "536x302#" ) ) ) protected _callbacks => array(4) ( "image_en" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "image_ar" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "awards_image" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "winners_image" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) ) protected _before_save => array(1) ( 0 => string(15) "unique_festival" ) protected _before_destroy => array(1) ( 0 => string(16) "delete_dependent" ) protected _created_column => array(2) ( "column" => string(10) "created_at" "format" => string(11) "Y-m-d H:i:s" ) protected _updated_column => array(2) ( "column" => string(10) "updated_at" "format" => string(11) "Y-m-d H:i:s" ) protected _after_save => array(0) protected success => bool TRUE protected cdn_attachments => array(0) protected _friendly_id => array(0) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validate => NULL protected _filters => array(0) protected _object => array(43) ( "id" => NULL "year" => NULL "title_en" => NULL "title_ar" => NULL "datakal_edition_number" => NULL "short_description_en" => NULL "short_description_ar" => NULL "image_en_file_name" => NULL "image_en_original_name" => NULL "image_en_file_type" => NULL "image_en_file_size" => NULL "image_ar_file_name" => NULL "image_ar_original_name" => NULL "image_ar_file_type" => NULL "image_ar_file_size" => NULL "films_xml" => NULL "events_xml" => NULL "panels_xml" => NULL "starts_at" => NULL "ends_at" => NULL "published" => NULL "published_at" => NULL "updated_at" => NULL "created_at" => NULL "sponsors" => NULL "awards_image_file_name" => NULL "awards_image_original_name" => NULL "awards_image_file_type" => NULL "awards_image_file_size" => NULL "jury_intro_en" => NULL "jury_intro_ar" => NULL "awards_intro_en" => NULL "awards_intro_ar" => NULL "winners_intro_en" => NULL "winners_intro_ar" => NULL "winners_image_caption_en" => NULL "winners_image_caption_ar" => NULL "winners_image_file_name" => NULL "winners_image_original_name" => NULL "winners_image_file_type" => NULL "winners_image_file_size" => NULL "awards_image_caption_en" => NULL "awards_image_caption_ar" => NULL ) protected _changed => array(0) protected _related => array(0) protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => array(1) ( "id" => string(3) "ASC" ) protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(20) "filmfestival_edition" protected _object_plural => string(21) "filmfestival_editions" protected _table_name => string(21) "filmfestival_editions" protected _table_columns => array(43) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "year" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "year" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_en" => array(12) ( "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 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "title_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "datakal_edition_number" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(22) "datakal_edition_number" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_description_en" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(20) "short_description_en" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_description_ar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(20) "short_description_ar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_en_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "image_en_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_en_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "image_en_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_ar_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "image_ar_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_ar_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "image_ar_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "films_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "films_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "events_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "events_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "panels_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "panels_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "starts_at" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "starts_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ends_at" => array(10) ( "type" => string(6) "string" "column_name" => string(7) "ends_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "published" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "published" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "published_at" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "published_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sponsors" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "sponsors" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "awards_image_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(26) "awards_image_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "awards_image_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(22) "awards_image_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "jury_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "jury_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "jury_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "jury_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "awards_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "awards_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "winners_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "winners_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_caption_en" => array(12) ( "type" => string(6) "string" "column_name" => string(24) "winners_image_caption_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_caption_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(24) "winners_image_caption_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "winners_image_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(27) "winners_image_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "winners_image_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(23) "winners_image_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_caption_en" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "awards_image_caption_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_caption_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "awards_image_caption_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _primary_key => string(2) "id" protected _primary_val => string(4) "name" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
protected current_edition => object Model_Filmfestival_Edition(41){ protected _connection_id => string(40) "61bd36e40efd6f989d80fd91d9ac44133e6ae23f" protected _identifier => string(1) "`" public last_query => string(112) "SELECT `filmfestival_menuitems`.* FROM `filmfestival_menuitems` WHERE `parent_id` = '16' ORDER BY `position` ASC" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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 _preload_data => array(0) }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(40) "dfi-db-eu-north.mysql.database.azure.com" "database" => string(13) "dfi_web-stage" "persistent" => bool TRUE "port" => string(4) "3306" "socket" => NULL ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _ignored_columns => array(4) ( "image_en" => string(8) "image_en" "image_ar" => string(8) "image_ar" "awards_image" => string(12) "awards_image" "winners_image" => string(13) "winners_image" ) protected _has_many => array(2) ( "films" => array(4) ( "model" => string(4) "film" "foreign_key" => string(23) "filmfestival_edition_id" "through" => NULL "far_key" => string(7) "film_id" ) "filmfestival_sponsor_categories" => array(4) ( "model" => string(29) "filmfestival_sponsor_category" "foreign_key" => string(23) "filmfestival_edition_id" "through" => NULL "far_key" => string(32) "filmfestival_sponsor_category_id" ) ) protected _rules => array(7) ( "title_en" => array(1) ( "not_empty" => array(0) ) "datakal_edition_number" => array(1) ( "not_empty" => array(0) ) "year" => array(1) ( "not_empty" => array(0) ) "starts_at" => array(1) ( "not_empty" => array(0) ) "ends_at" => array(1) ( "not_empty" => array(0) ) "films_xml" => array(2) ( "not_empty" => array(0) "url" => array(0) ) "events_xml" => array(2) ( "not_empty" => array(0) "url" => array(0) ) ) protected _labels => array(14) ( "year" => string(4) "Year" "title_en" => string(5) "Title" "title_ar" => string(10) "Title (ar)" "starts_at" => string(10) "Start Date" "ends_at" => string(8) "End Date" "datakal_edition_number" => string(22) "Datakal Edition Number" "short_description_en" => string(9) "Text (en)" "short_description_ar" => string(9) "Text (ar)" "url" => string(3) "URL" "image_en" => string(10) "Image (en)" "image_ar" => string(10) "Image (ar)" "films_xml" => string(9) "Films XML" "events_xml" => string(10) "Events XML" "panels_xml" => string(14) "Doha Talks XML" ) protected attachments => array(4) ( "image_en" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "normal" => string(8) "775x149#" ) ) "image_ar" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "normal" => string(8) "775x149#" ) ) "awards_image" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "large" => string(8) "536x302#" ) ) "winners_image" => array(3) ( "max_size" => string(2) "2M" "types" => array(3) ( 0 => string(3) "jpg" 1 => string(3) "png" 2 => string(3) "gif" ) "styles" => array(3) ( "thumb" => string(7) "119x74#" "listing" => string(7) "179x115" "large" => string(8) "536x302#" ) ) ) protected _callbacks => array(4) ( "image_en" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "image_ar" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "awards_image" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) "winners_image" => array(2) ( 0 => string(9) "file_size" 1 => string(9) "file_type" ) ) protected _before_save => array(1) ( 0 => string(15) "unique_festival" ) protected _before_destroy => array(1) ( 0 => string(16) "delete_dependent" ) protected _created_column => array(2) ( "column" => string(10) "created_at" "format" => string(11) "Y-m-d H:i:s" ) protected _updated_column => array(2) ( "column" => string(10) "updated_at" "format" => string(11) "Y-m-d H:i:s" ) protected _after_save => array(0) protected success => bool TRUE protected cdn_attachments => array(0) protected _friendly_id => array(0) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validate => NULL protected _filters => array(0) protected _object => array(43) ( "id" => string(2) "11" "year" => string(4) "2024" "title_en" => string(25) "Ajyal Film Festival 2024" "title_ar" => string(47) "مهرجان أجيال السينمائي 2024" "datakal_edition_number" => string(2) "71" "short_description_en" => string(0) "" "short_description_ar" => string(0) "" "image_en_file_name" => string(31) "ajyal_web_banner_updated_en.jpg" "image_en_original_name" => string(29) "AjyalWebBanner-Updated-En.jpg" "image_en_file_type" => string(10) "image/jpeg" "image_en_file_size" => string(6) "145130" "image_ar_file_name" => string(31) "ajyal_web_banner_updated_ar.jpg" "image_ar_original_name" => string(29) "AjyalWebBanner-Updated-Ar.jpg" "image_ar_file_type" => string(10) "image/jpeg" "image_ar_file_size" => string(6) "114974" "films_xml" => string(77) "https://xml.dohafilminstitute.com/xml?sql=xml_a17_films_all+@IDE=71&root=root" "events_xml" => string(78) "https://xml.dohafilminstitute.com/xml?sql=xml_a17_events_all+@IDE=71&root=root" "panels_xml" => NULL "starts_at" => string(19) "2024-10-01 00:00:00" "ends_at" => string(19) "2024-12-28 00:00:00" "published" => string(1) "1" "published_at" => NULL "updated_at" => string(19) "2024-10-28 11:54:32" "created_at" => string(19) "2024-10-28 10:57:19" "sponsors" => NULL "awards_image_file_name" => NULL "awards_image_original_name" => NULL "awards_image_file_type" => NULL "awards_image_file_size" => NULL "jury_intro_en" => NULL "jury_intro_ar" => NULL "awards_intro_en" => NULL "awards_intro_ar" => NULL "winners_intro_en" => NULL "winners_intro_ar" => NULL "winners_image_caption_en" => NULL "winners_image_caption_ar" => NULL "winners_image_file_name" => NULL "winners_image_original_name" => NULL "winners_image_file_type" => NULL "winners_image_file_size" => NULL "awards_image_caption_en" => NULL "awards_image_caption_ar" => NULL ) protected _changed => array(0) protected _related => array(0) protected _loaded => bool TRUE protected _saved => bool TRUE protected _sorting => array(1) ( "id" => string(3) "ASC" ) protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(20) "filmfestival_edition" protected _object_plural => string(21) "filmfestival_editions" protected _table_name => string(21) "filmfestival_editions" protected _table_columns => array(43) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "year" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "year" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_en" => array(12) ( "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 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "title_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "title_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "datakal_edition_number" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(22) "datakal_edition_number" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_description_en" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(20) "short_description_en" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "short_description_ar" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(20) "short_description_ar" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_en_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "image_en_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_en_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_en_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "image_en_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_ar_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "image_ar_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(18) "image_ar_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image_ar_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(18) "image_ar_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "films_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "films_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "events_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "events_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "panels_xml" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "panels_xml" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "starts_at" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "starts_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "ends_at" => array(10) ( "type" => string(6) "string" "column_name" => string(7) "ends_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 20 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "published" => array(13) ( "type" => string(3) "int" "min" => string(4) "-128" "max" => string(3) "127" "column_name" => string(9) "published" "column_default" => string(1) "0" "data_type" => string(7) "tinyint" "is_nullable" => bool FALSE "ordinal_position" => integer 21 "display" => string(1) "1" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "published_at" => array(10) ( "type" => string(6) "string" "column_name" => string(12) "published_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 22 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "updated_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "updated_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 23 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "created_at" => array(10) ( "type" => string(6) "string" "column_name" => string(10) "created_at" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 24 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sponsors" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(8) "sponsors" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 25 "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "awards_image_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 26 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(26) "awards_image_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 27 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(22) "awards_image_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 28 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(22) "awards_image_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 29 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "jury_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "jury_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 30 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "jury_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(13) "jury_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 31 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "awards_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 32 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "awards_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 33 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_intro_en" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "winners_intro_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 34 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_intro_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(16) "winners_intro_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 35 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_caption_en" => array(12) ( "type" => string(6) "string" "column_name" => string(24) "winners_image_caption_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 36 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_caption_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(24) "winners_image_caption_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 37 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_name" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "winners_image_file_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 38 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_original_name" => array(12) ( "type" => string(6) "string" "column_name" => string(27) "winners_image_original_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 39 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_type" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "winners_image_file_type" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 40 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "winners_image_file_size" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(23) "winners_image_file_size" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 41 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_caption_en" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "awards_image_caption_en" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 42 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "awards_image_caption_ar" => array(12) ( "type" => string(6) "string" "column_name" => string(23) "awards_image_caption_ar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 43 "character_maximum_length" => string(3) "255" "collation_name" => string(8) "utf8_bin" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _primary_key => string(2) "id" protected _primary_val => string(4) "name" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)
protected _page_title => string(35) "Archive — Ajyal Film Festival" protected _site_title => string(19) "Doha Film Institute" protected _meta_description => string(27) "Archive Ajyal Film Festival" protected _meta_keywords => string(109) "doha, film, institute, qumra, ajyal, production, festival, screening, education, film talk, videos, financing" protected _meta_robots => string(5) "index" protected _body_css_class => string(12) "filmfestival" protected _main_css_class => string(12) "filmfestival" protected _current_menu => string(12) "filmfestival" protected layout => string(15) "layouts/default" protected current_user => NULL protected _is_qatar => integer 0 protected _ignore_redirections => bool FALSE protected template => string(27) "filmfestival/archive/awards" protected session => object Session_Native(5){ protected _connection_id => string(40) "61bd36e40efd6f989d80fd91d9ac44133e6ae23f" protected _identifier => string(1) "`" public last_query => string(112) "SELECT `filmfestival_menuitems`.* FROM `filmfestival_menuitems` WHERE `parent_id` = '16' ORDER BY `position` ASC" protected _instance => string(7) "default" protected _connection => object mysqli(19)
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 _preload_data => array(0) }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(5) ( "hostname" => string(40) "dfi-db-eu-north.mysql.database.azure.com" "database" => string(13) "dfi_web-stage" "persistent" => bool TRUE "port" => string(4) "3306" "socket" => NULL ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(2) ( "lang" => string(2) "en" "last_active" => integer 1734796340 ) protected _destroyed => bool FALSE }
protected _before_filter => NULL public request => object Request(9){ public route => object Route(4)
public view => object View(2){ protected _uri => string(54) "(<language>/)filmfestival/archive/<edition>(/<action>)" protected _regex => array(1) ( "language" => string(2) "ar" ) protected _defaults => array(3) ( "directory" => string(12) "filmfestival" "controller" => string(7) "archive" "action" => string(5) "index" ) protected _route_regex => string(104) "#^(?:(?P<language>ar)/)?filmfestival/archive/(?P<edition>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++))?$#uD" }
public status => integer 200 public response => string(0) "" public headers => array(1) ( "Content-Type" => string(24) "text/html; charset=utf-8" ) public directory => string(12) "filmfestival" public controller => string(7) "archive" public action => string(6) "awards" public uri => string(32) "filmfestival/archive/2020/awards" protected _params => array(2) ( "language" => string(0) "" "edition" => string(4) "2020" ) }{ protected _file => string(51) "/var/www/html/application/views/layouts/default.php" protected _data => array(1) ( "content" => object View(2)
}{ protected _file => string(63) "/var/www/html/application/views/filmfestival/archive/awards.php" protected _data => array(0) }
) }1044 1045 // Execute the main action with the parameters 1046 $class->getMethod('action_'.$action)->invokeArgs($controller, $this->_params); 1047 1048 // Execute the "after action" method 1049 $class->getMethod('after')->invoke($controller); 1050 } 1051 catch (Exception $e) 1052 { 1053 // Restore the previous request 1054 Request::$current = $previous;
-
APPPATH/bootstrap.php [ 127 ] » Kohana_Request->execute()
122 $request = Request::factory('errors/500')->execute(); 123 } 124 } else { 125 // Don't catch errors. 126 $request = Request::instance(); 127 $request->execute(); 128 } 129 130 echo $request->send_headers()->response; 131
-
DOCROOT/index.php [ 137 ] » require(arguments)
0
string(39) "/var/www/html/application/bootstrap.php"
132 // Load empty core extension 133 require SYSPATH.'classes/kohana'.EXT; 134 } 135 136 // Bootstrap the application 137 require APPPATH.'bootstrap'.EXT;