APPPATH/classes/Front/Resizer.php [ 105 ]
100 }
101
102 static function _rawResize($In, $Out, $Width, $Height)
103 {
104 if(class_exists('Imagick')) {
105 $im = new Imagick($In);
106
107 //$im->cropThumbnailImage($Width, $Height);
108 $im->thumbnailImage($Width, $Height);
109
110 $im->setImageFormat('jpeg');
-
APPPATH/classes/Front/Resizer.php [ 105 ] » Imagick->__construct(arguments)
0string(53) "/home/wificamp-production/application/application/../"100 } 101 102 static function _rawResize($In, $Out, $Width, $Height) 103 { 104 if(class_exists('Imagick')) { 105 $im = new Imagick($In); 106 107 //$im->cropThumbnailImage($Width, $Height); 108 $im->thumbnailImage($Width, $Height); 109 110 $im->setImageFormat('jpeg'); -
APPPATH/classes/Front/Resizer.php [ 56 ] » Front_Resizer::_rawResize(arguments)
0string(53) "/home/wificamp-production/application/application/../"1string(117) "/home/wificamp-production/application/application/../images/thumbs/thumb_d41d8cd98f00b204e9800998ecf8427e_422-300.jpg"2integer 422
3integer 300
51 $File = $File->resize($Width, null); 52 } 53 $File->crop($Width, $Height)->save(APPPATH.'../images/thumbs/thumb_'.$MD5Img.'_'.$Width.'-'.$Height.'.jpg', 100); 54 */ 55 56 Front_Resizer::_rawResize(APPPATH.'../'.$Image, APPPATH.'../images/thumbs/thumb_'.$MD5Img.'_'.$Width.'-'.$Height.'.jpg', $Width, $Height); 57 58 return 'images/thumbs/thumb_'.$MD5Img.'_'.$Width.'-'.$Height.'.jpg'; 59 } else { 60 return 'images/thumbs/thumb_'.$MD5Img.'_'.$Width.'-'.$Height.'.jpg'; 61 } -
APPPATH/views/web/kampeerwinkel/productView.php [ 5 ] » Front_Resizer::getUrl(arguments)
0NULL
1integer 422
2integer 300
3bool TRUE
1 <li class="span4"> 2 <a href="<?=$url;?>"> 3 <div class="thumbnail thumbproduct"> 4 <div class="thumb_img"> 5 <img src="<?=Front_Resizer::getUrl($image, 211, 150, true);?>" alt="" width="100" height="70" border="0" /> 6 </div> 7 8 <div class="product-label"> 9 <!-- <p class="title"><?=$name;?></p> --> 10 <center><h3><?=$name;?></h3></center> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(89) "/home/wificamp-production/application/application/views/web/kampeerwinkel/productView.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(89) "/home/wificamp-production/application/application/views/web/kampeerwinkel/productView.php"1array(4) ( "image" => NULL "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "price" => string(5) "49.95" "url" => string(73) "kampeerwinkel/product/wandelen/bergstein-bergstein-winterboot-polar-mt-32" )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
APPPATH/views/web/kampeerwinkel/category.php [ 48 ] » Kohana_View->__toString()
43 <div class="row-fluid"> 44 <?php 45 $i = 0; 46 foreach($_Products AS $Key => $Product) 47 { 48 echo $Product->renderThumb(); 49 50 $i++; 51 if($i == 3) 52 { 53 echo '</div><br /><div class="row-fluid">'; -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(86) "/home/wificamp-production/application/application/views/web/kampeerwinkel/category.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(86) "/home/wificamp-production/application/application/views/web/kampeerwinkel/category.php"1array(5) ( "_message" => NULL "_Categories" => object Database_MySQLi_Result(7)
{ protected _internal_row => integer 26 protected _query => string(170) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _result => object mysqli_result(5)"_Category" => object Model_Campstore_Category(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 26 protected _current_row => integer 26 protected _as_object => string(24) "Model_Campstore_Category" protected _object_params => NULL }{ protected _table_name => string(20) "campstore_categories" protected _has_many => array(1) ( "products" => array(4) ( "foreign_key" => string(3) "cId" "through" => string(14) "campstore_link" "model" => string(17) "Campstore_Product" "far_key" => string(3) "pId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(18) "campstore_category" protected _object_plural => string(20) "campstore_categories" protected _table_columns => array(3) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"_Products" => array(18) ( 0 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(18) "campstore_category" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "25" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)1 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "98" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)2 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)3 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "442" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)4 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "182" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)5 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "284" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)6 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "190" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)7 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "286" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)8 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "127" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)9 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "132" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)10 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "267" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)11 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "287" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)12 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "248" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)13 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "288" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)14 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "203" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)15 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "275" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)16 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "297" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)17 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "314" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) "_Pagination" => object View(2){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _file => string(82) "/home/wificamp-production/application/application/views/web/general/pagination.php" protected _data => array(5) ( "PassAsGet" => bool FALSE "showPages" => array(7) ( 0 => integer 1 1 => integer 2 2 => integer 3 3 => integer 4 4 => integer 5 5 => integer 6 6 => integer 7 ) "appendUrl" => string(22) "kampeerwinkel/wandelen" "currentPage" => string(1) "1" "totalPages" => float 20 ) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
APPPATH/views/web/template.php [ 92 ] » Kohana_View->__toString()
87 </div> 88 89 <?php 90 } 91 ?> 92 <?=$content;?> 93 </div> 94 95 <div id="push"></div> 96 </div> 97 <div id="footer"> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(72) "/home/wificamp-production/application/application/views/web/template.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(72) "/home/wificamp-production/application/application/views/web/template.php"1array(5) ( "keywords" => string(133) "kampeerwinkel, campingwinkel, kampeerartikelen, kampeeraccessoires, kampeerbenodigdheden, tenten, slaapzakken, campingstoelen, t …" "description" => string(131) "De online kampeerwinkel telt ruim 1500 kampeerartikelen en andere kampeerbenodigdheden. Van tenten, kampeermeubels tot slaapzakk …" "title" => string(68) "Online kampeerwinkel voor al uw kampeerbenodigdheden - WiFi Campings" "content" => object View(2)
{ protected _file => string(86) "/home/wificamp-production/application/application/views/web/kampeerwinkel/category.php" protected _data => array(5) ( "_message" => NULL "_Categories" => object Database_MySQLi_Result(7)"urlBase" => string(28) "https://www.wificampings.nl/" ){ protected _internal_row => integer 26 protected _query => string(170) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _result => object mysqli_result(5)"_Category" => object Model_Campstore_Category(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 26 protected _current_row => integer 26 protected _as_object => string(24) "Model_Campstore_Category" protected _object_params => NULL }{ protected _table_name => string(20) "campstore_categories" protected _has_many => array(1) ( "products" => array(4) ( "foreign_key" => string(3) "cId" "through" => string(14) "campstore_link" "model" => string(17) "Campstore_Product" "far_key" => string(3) "pId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(18) "campstore_category" protected _object_plural => string(20) "campstore_categories" protected _table_columns => array(3) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"_Products" => array(18) ( 0 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(18) "campstore_category" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "25" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)1 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "98" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)2 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)3 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "442" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)4 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "182" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)5 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "284" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)6 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "190" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)7 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "286" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)8 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "127" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)9 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "132" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)10 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "267" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)11 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "287" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)12 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "248" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)13 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "288" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)14 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "203" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)15 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "275" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)16 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "297" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)17 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "314" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) "_Pagination" => object View(2){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _file => string(82) "/home/wificamp-production/application/application/views/web/general/pagination.php" protected _data => array(5) ( "PassAsGet" => bool FALSE "showPages" => array(7) ( 0 => integer 1 1 => integer 2 2 => integer 3 3 => integer 4 4 => integer 5 5 => integer 6 6 => integer 7 ) "appendUrl" => string(22) "kampeerwinkel/wandelen" "currentPage" => string(1) "1" "totalPages" => float 20 ) }) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
APPPATH/classes/Controller/Base/Template.php [ 207 ] » Kohana_Controller_Template->after()
202 $this -> template -> content = $view; 203 204 // Implemented from CMS-Backend 205 $this->template->urlBase = URL::base(true); 206 207 parent::after(); 208 } 209 } -
APPPATH/classes/Controller/Web/Template.php [ 58 ] » Controller_Base_Template->after()
53 public function after($runParent = true) 54 { 55 Session::instance()->set('user_data', json_encode($this->userSettings)); 56 57 if($runParent === true) 58 parent::after(); 59 } 60 } -
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Web_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Web_Kampeerwinkel(8)
{ public showItems => integer 18 public template => object View(2){ protected _file => string(72) "/home/wificamp-production/application/application/views/web/template.php" protected _data => array(5) ( "keywords" => string(133) "kampeerwinkel, campingwinkel, kampeerartikelen, kampeeraccessoires, kampeerbenodigdheden, tenten, slaapzakken, campingstoelen, t …" "description" => string(131) "De online kampeerwinkel telt ruim 1500 kampeerartikelen en andere kampeerbenodigdheden. Van tenten, kampeermeubels tot slaapzakk …" "title" => string(68) "Online kampeerwinkel voor al uw kampeerbenodigdheden - WiFi Campings" "content" => object View(2)public userSettings => array(2) ( "radius_km" => integer 20 "searchoptions" => array(7) ( "name" => string(0) "" "type" => array(0) "facility" => array(0) "countryid" => NULL "stateid" => NULL "directbooking" => NULL "freewifi" => NULL ) ) public layVars => array(5) ( "_message" => NULL "_Categories" => object Database_MySQLi_Result(7){ protected _file => string(86) "/home/wificamp-production/application/application/views/web/kampeerwinkel/category.php" protected _data => array(5) ( "_message" => NULL "_Categories" => object Database_MySQLi_Result(7)"urlBase" => string(28) "https://www.wificampings.nl/" ) }{ protected _internal_row => integer 26 protected _query => string(170) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _result => object mysqli_result(5)"_Category" => object Model_Campstore_Category(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 26 protected _current_row => integer 26 protected _as_object => string(24) "Model_Campstore_Category" protected _object_params => NULL }{ protected _table_name => string(20) "campstore_categories" protected _has_many => array(1) ( "products" => array(4) ( "foreign_key" => string(3) "cId" "through" => string(14) "campstore_link" "model" => string(17) "Campstore_Product" "far_key" => string(3) "pId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(18) "campstore_category" protected _object_plural => string(20) "campstore_categories" protected _table_columns => array(3) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"_Products" => array(18) ( 0 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(18) "campstore_category" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "25" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)1 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "98" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)2 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)3 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "442" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)4 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "182" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)5 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "284" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)6 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "190" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)7 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "286" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)8 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "127" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)9 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "132" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)10 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "267" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)11 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "287" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)12 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "248" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)13 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "288" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)14 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "203" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)15 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "275" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)16 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "297" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)17 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "314" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) "_Pagination" => object View(2){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _file => string(82) "/home/wificamp-production/application/application/views/web/general/pagination.php" protected _data => array(5) ( "PassAsGet" => bool FALSE "showPages" => array(7) ( 0 => integer 1 1 => integer 2 2 => integer 3 3 => integer 4 4 => integer 5 5 => integer 6 6 => integer 7 ) "appendUrl" => string(22) "kampeerwinkel/wandelen" "currentPage" => string(1) "1" "totalPages" => float 20 ) }) }{ protected _internal_row => integer 26 protected _query => string(170) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _result => object mysqli_result(5)"_Category" => object Model_Campstore_Category(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 26 protected _current_row => integer 26 protected _as_object => string(24) "Model_Campstore_Category" protected _object_params => NULL }{ protected _table_name => string(20) "campstore_categories" protected _has_many => array(1) ( "products" => array(4) ( "foreign_key" => string(3) "cId" "through" => string(14) "campstore_link" "model" => string(17) "Campstore_Product" "far_key" => string(3) "pId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _changed => array(0) protected _original_values => array(3) ( "id" => string(1) "1" "name" => string(8) "Wandelen" "slug" => string(8) "wandelen" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(18) "campstore_category" protected _object_plural => string(20) "campstore_categories" protected _table_columns => array(3) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "1" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)"_Products" => array(18) ( 0 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(18) "campstore_category" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "25" "fId" => string(7) "4273161" "name" => string(44) "Lowa - Renegade Evo Small Wandelschoen Heren" "slug" => string(42) "lowa-renegade-evo-small-wandelschoen-heren" "description" => string(404) "Na het ongelofelijke succes van de Renegade is hier de Renegade Evo GTX Mid. Maar wat is nu dan het verschil? Er zijn meerdere d …" "link" => string(167) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-evo-small-wande …" "price" => string(6) "229.95" "image" => string(108) "https://www.kampeerwereld.nl/media/46/0c/ef/1738869871/119016_lowa-renegade-evo-small-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "25" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)1 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(2) "98" "fId" => string(7) "4273111" "name" => string(40) "Lowa - Maddox Pro GTX Wandelschoen Heren" "slug" => string(38) "lowa-maddox-pro-gtx-wandelschoen-heren" "description" => string(401) "Ben je opzoek naar een lage wandelschoen die je zowel op de Veluwe als in het lichtgebergte kan dragen? Dan is deze Maddox Pro G …" "link" => string(163) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-maddox-pro-gtx-wandelsch …" "price" => string(6) "179.95" "image" => string(104) "https://www.kampeerwereld.nl/media/70/b3/89/1738869834/119025_lowa-maddox-pro-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "98" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)2 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "161" "fId" => string(7) "4276005" "name" => string(39) "Meindl - Nauders GTX Wandelschoen Heren" "slug" => string(37) "meindl-nauders-gtx-wandelschoen-heren" "description" => string(393) "Wil je de wereld met een backpack verkennen? Dan is het belangrijk om goede stevige wandelschoenen te dragen. Zo zijn de Nauders …" "link" => string(158) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-nauders-gtx-wandelscho …" "price" => string(6) "309.90" "image" => string(103) "https://www.kampeerwereld.nl/media/f1/65/59/1738871149/118773_meindl-nauders-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "161" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)3 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "442" "fId" => string(6) "179571" "name" => string(47) "Bergstein - Bergstein, Winterboot, Polar mt. 32" "slug" => string(42) "bergstein-bergstein-winterboot-polar-mt-32" "description" => string(0) "" "link" => string(138) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fbergsteinwinterbootpolar-mt32 …" "price" => string(5) "49.95" "image" => NULL "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "442" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)4 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "182" "fId" => string(7) "4244377" "name" => string(42) "Lowa - Renegade GTX Mid Wandelschoen Dames" "slug" => string(40) "lowa-renegade-gtx-mid-wandelschoen-dames" "description" => string(397) "Een echte allround wandelschoen De Renegade GTX Mid Women's is een damesschoen en de meest verkochte wandelschoen van Lowa. Het …" "link" => string(169) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Flowa-renegade-gtx-mid-wandels …" "price" => string(6) "219.95" "image" => string(105) "https://www.kampeerwereld.nl/media/2e/85/e9/1738856973/85048_lowa-renegade-gtx-mid-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "182" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)5 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "284" "fId" => string(7) "4269236" "name" => string(46) "XERO shoes - Z-Trail EV Barefoot Sandaal Heren" "slug" => string(44) "xero-shoes-z-trail-ev-barefoot-sandaal-heren" "description" => string(401) "Barefoot sandalen Barefoot sandalen, ook wel minimalistische sandalen genoemd, zijn ontworpen om een ervaring te bieden die lijk …" "link" => string(165) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fxero-shoes-z-trail-ev-barefoo …" "price" => string(5) "90.00" "image" => string(110) "https://www.kampeerwereld.nl/media/c4/e9/ca/1738867006/107410_xero-shoes-z-trail-ev-barefoot-sandaal-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "284" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)6 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "190" "fId" => string(6) "171693" "name" => string(34) "Teva - Tirra Leather Sandaal Dames" "slug" => string(32) "teva-tirra-leather-sandaal-dames" "description" => string(401) "Deze Teva Tirra Leather is speciaal ontwikkeld voor dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-leather-sandaal-da …" "price" => string(6) "100.00" "image" => string(97) "https://www.kampeerwereld.nl/media/c4/cb/b0/1738853520/27765_teva-tirra-leather-dames-sandaal.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "190" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)7 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "286" "fId" => string(7) "4271874" "name" => string(32) "Antarctica - 8709 Snowboot Dames" "slug" => string(30) "antarctica-8709-snowboot-dames" "description" => string(396) "Hoge snowboots voor dames die ideaal zijn voor de koude winterse dagen. De trendy snowboot van Antarctica heeft een handige vete …" "link" => string(153) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fantarctica-8709-snowboot-dame …" "price" => string(6) "119.95" "image" => string(96) "https://www.kampeerwereld.nl/media/35/e3/ef/1738868989/113764_antarctica-8709-snowboot-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "286" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)8 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "127" "fId" => string(7) "4262013" "name" => string(48) "Hanwag - Banks Low Bunion GTX Wandelschoen Dames" "slug" => string(46) "hanwag-banks-low-bunion-gtx-wandelschoen-dames" "description" => string(397) "Veelzijdige wandelschoen Of je nou een 4-daagse gaat lopen of een wandeltocht door de heuvels maakt. De Banks Low Bunion GTX is …" "link" => string(177) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fhanwag-banks-low-bunion-gtx-w …" "price" => string(6) "224.95" "image" => string(112) "https://www.kampeerwereld.nl/media/72/63/c1/1738861014/102308_hanwag-banks-low-bunion-gtx-wandelschoen-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "127" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)9 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "132" "fId" => string(7) "4280432" "name" => string(48) "ON - Cloudrock Mid Waterproof Wandelschoen Heren" "slug" => string(46) "on-cloudrock-mid-waterproof-wandelschoen-heren" "description" => string(401) "Deze sportieve Cloudrock Mid Waterproof is een echte allrounder! Je kunt hem gewoon voor je dagelijkse wandelingen gebruiken, ma …" "link" => string(161) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fon-cloudrock-mid-wp-m-black-b …" "price" => string(6) "230.00" "image" => string(81) "https://www.kampeerwereld.nl/media/f5/0b/23/1742471872/173418_990_03-87b2be42.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "132" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)10 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "267" "fId" => string(7) "4253492" "name" => string(24) "Grisport - Norwich Laars" "slug" => string(22) "grisport-norwich-laars" "description" => string(388) "Deze stevige Norwich laarzen van Grisport zijn ideaal om je voeten warm te houden deze winter. De boots hebben veel grip op elke …" "link" => string(148) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fgrisport-norwich-laarsgri-nor …" "price" => string(6) "189.95" "image" => string(92) "https://www.kampeerwereld.nl/media/a1/2f/13/1738858366/91414_grisport-norwich-mt37-black.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "267" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)11 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "287" "fId" => string(7) "4274739" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(160) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "55.00" "image" => string(104) "https://www.kampeerwereld.nl/media/83/54/e5/1738870467/115428_teva-k-hurricane-xlt-2-glow-multi-mt11.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "287" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)12 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "248" "fId" => string(7) "4274688" "name" => string(34) "Teva - Hurricane XLT2 Sandaal Kids" "slug" => string(32) "teva-hurricane-xlt2-sandaal-kids" "description" => string(399) "De Teva Hurricane XLT2 is een kindersandaal die je kunt gebruiken voor lichte- en dagwandelingen. Hij heeft sneldrogende banden …" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-hurricane-xlt2-sandaal-k …" "price" => string(5) "50.00" "image" => string(98) "https://www.kampeerwereld.nl/media/93/27/43/1738870417/115464_teva-hurricane-xlt2-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "248" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)13 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "288" "fId" => string(7) "4247955" "name" => string(30) "Ipanema - Fashion Sandaal Kids" "slug" => string(28) "ipanema-fashion-sandaal-kids" "description" => string(0) "" "link" => string(157) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-fashion-sandaal-kids- …" "price" => string(5) "29.99" "image" => string(93) "https://www.kampeerwereld.nl/media/c2/01/cb/1738857520/84763_ipanema-fashion-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "288" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)14 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "203" "fId" => string(7) "4274581" "name" => string(36) "Teva - Toachi Hydratrek Sandaal Kids" "slug" => string(34) "teva-toachi-hydratrek-sandaal-kids" "description" => string(397) "Met de Toachi Hydratrek sta je stevig in je schoenen bij elk avontuur! De zool van deze kindersandalen biedt extra grip op nat t …" "link" => string(162) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-toachi-hydratrek-sandaal …" "price" => string(5) "70.00" "image" => string(100) "https://www.kampeerwereld.nl/media/95/bc/71/1738870285/115564_teva-toachi-hydratrek-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "203" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)15 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "275" "fId" => string(7) "4274680" "name" => string(25) "Teva - Tirra Sandaal Kids" "slug" => string(23) "teva-tirra-sandaal-kids" "description" => string(394) "Deze Teva Tirra Sandaal is speciaal ontwikkeld voor Dames, er is rekening gehouden met de pasvorm en het uiterlijk. Naast het st …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fteva-tirra-sandaal-kids-10193 …" "price" => string(5) "60.00" "image" => string(89) "https://www.kampeerwereld.nl/media/c1/55/4b/1738870398/115476_teva-tirra-sandaal-kids.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "275" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)16 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "297" "fId" => string(7) "4247202" "name" => string(38) "Meindl - Caribe GTX Wandelschoen Heren" "slug" => string(36) "meindl-caribe-gtx-wandelschoen-heren" "description" => string(398) "Sportieve Meindl wandelschoen voor lange wandelingen Speciaal voor mensen die net even wat anders willen dan de standaard lage w …" "link" => string(156) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fmeindl-caribe-gtx-wandelschoe …" "price" => string(6) "179.90" "image" => string(101) "https://www.kampeerwereld.nl/media/b6/b7/g0/1738857399/84634_meindl-caribe-gtx-wandelschoen-heren.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "297" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)17 => object Model_Campstore_Product(34){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _table_name => string(18) "campstore_products" protected _has_many => array(1) ( "categories" => array(4) ( "foreign_key" => string(3) "pId" "through" => string(14) "campstore_link" "model" => string(18) "Campstore_Category" "far_key" => string(3) "cId" ) ) protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _changed => array(0) protected _original_values => array(9) ( "id" => string(3) "314" "fId" => string(7) "4275277" "name" => string(29) "Ipanema - Sense Slipper Dames" "slug" => string(27) "ipanema-sense-slipper-dames" "description" => string(0) "" "link" => string(159) "https://www.kampeerwereld.nl/kampeer/?tt=14070_912905_9780_&r=https%3A%2F%2Fwww.kampeerwereld.nl%2Fipanema-sense-slipper-dames-i …" "price" => string(5) "28.99" "image" => string(93) "https://www.kampeerwereld.nl/media/87/ba/30/1738870811/116954_ipanema-sense-slipper-dames.jpg" "purge" => string(1) "0" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(17) "campstore_product" protected _object_plural => string(18) "campstore_products" protected _table_columns => array(9) ( "id" => array(12) ( "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 "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "fId" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "fId" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "slug" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "slug" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "200" "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "description" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(11) "description" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "link" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "link" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "price" => array(13) ( "type" => string(5) "float" "exact" => bool TRUE "column_name" => string(5) "price" "column_default" => NULL "data_type" => string(7) "decimal" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "numeric_precision" => string(2) "10" "numeric_scale" => string(1) "2" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "image" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(5) "image" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "collation_name" => string(17) "latin1_swedish_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "purge" => array(12) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "purge" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "314" protected _table_names_plural => bool TRUE protected _reload_on_wakeup => bool TRUE protected _db => object Database_MySQLi(6)) "_Pagination" => object View(2){ protected _connection_id => string(40) "983ae8e2dfe089e6c0324a4cd507d7c329b6fca5" protected _identifier => string(1) "`" public last_query => string(293) "SELECT `campstore_category`.`id` AS `id`, `campstore_category`.`name` AS `name`, `campstore_category`.`slug` AS `slug` FROM `cam …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(17) "campstore_product" }{ 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(9) "127.0.0.1" "database" => string(19) "wificamp-production" "port" => NULL "socket" => NULL "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool FALSE ) }{ protected _file => string(82) "/home/wificamp-production/application/application/views/web/general/pagination.php" protected _data => array(5) ( "PassAsGet" => bool FALSE "showPages" => array(7) ( 0 => integer 1 1 => integer 2 2 => integer 3 3 => integer 4 4 => integer 5 5 => integer 6 6 => integer 7 ) "appendUrl" => string(22) "kampeerwinkel/wandelen" "currentPage" => string(1) "1" "totalPages" => float 20 ) }) public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(40) "kampeerwinkel/<category>(/pagina-<page>)" protected _regex => array(0) protected _defaults => array(6) ( "directory" => string(3) "web" "controller" => string(13) "kampeerwinkel" "action" => string(8) "category" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _route_regex => string(81) "#^kampeerwinkel/(?P<category>[^/.,;?\n]++)(?:/pagina-(?P<page>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(3) "Web" protected _controller => string(13) "Kampeerwinkel" protected _action => string(8) "category" protected _uri => string(22) "kampeerwinkel/wandelen" protected _external => bool FALSE protected _params => array(4) ( "category" => string(8) "wandelen" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)public viewPage => string(26) "web/kampeerwinkel/category" }{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(40) "kampeerwinkel/<category>(/pagina-<page>)" protected _regex => array(0) protected _defaults => array(6) ( "directory" => string(3) "web" "controller" => string(13) "kampeerwinkel" "action" => string(8) "category" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _route_regex => string(81) "#^kampeerwinkel/(?P<category>[^/.,;?\n]++)(?:/pagina-(?P<page>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(3) "Web" protected _controller => string(13) "Kampeerwinkel" protected _action => string(8) "category" protected _uri => string(22) "kampeerwinkel/wandelen" protected _external => bool FALSE protected _params => array(4) ( "category" => string(8) "wandelen" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(40) "kampeerwinkel/<category>(/pagina-<page>)" protected _regex => array(0) protected _defaults => array(6) ( "directory" => string(3) "web" "controller" => string(13) "kampeerwinkel" "action" => string(8) "category" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _route_regex => string(81) "#^kampeerwinkel/(?P<category>[^/.,;?\n]++)(?:/pagina-(?P<page>[^/.,;?\n]++))?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(3) "Web" protected _controller => string(13) "Kampeerwinkel" protected _action => string(8) "category" protected _uri => string(22) "kampeerwinkel/wandelen" protected _external => bool FALSE protected _params => array(4) ( "category" => string(8) "wandelen" "id" => string(0) "" "slug" => string(0) "" "page" => string(1) "1" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 140 ] » Kohana_Request->execute()
135 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 136 * If no source is specified, the URI will be automatically detected. 137 */ 138 139 echo Request::factory(TRUE, array(), FALSE) 140 ->execute() 141 ->send_headers(TRUE) 142 ->body(); 143 }
