1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| <?php
return array ( 'root' => 'content', 'start_path' => 'content/Photo', 'load_images' => true, 'load_files_proxy_php' => true, 'load_images_max_filesize' => 100000000, 'load_svg_max_filesize' => 10000000, 'image_resize_enabled' => true, 'image_resize_cache' => true, 'image_resize_dimensions' => 320, 'image_resize_dimensions_retina' => 480, 'image_resize_quality' => 85, 'image_resize_function' => 'imagecopyresampled', 'image_resize_sharpen' => true, 'image_resize_memory_limit' => 128, 'menu_enabled' => true, 'menu_show' => false, 'menu_max_depth' => 5, 'menu_sort' => 'name_asc', 'menu_cache_validate' => true, 'menu_load_all' => false, 'layout' => 'rows', 'image_cover' => true, 'sort' => 'name_asc', 'sort_dirs_first' => true, 'breadcrumbs' => true, );
|