| 1 |
<?php |
| 2 |
global $photonic_default_options; |
| 3 |
|
| 4 |
$photonic_default_options = [ |
| 5 |
// Generic - Generic |
| 6 |
'alternative_shortcode' => '', |
| 7 |
'slideshow_library' => 'swipebox', |
| 8 |
'custom_lightbox' => 'strip', |
| 9 |
'custom_lightbox_js' => '', |
| 10 |
'custom_lightbox_css' => '', |
| 11 |
'disable_photonic_lightbox_scripts' => '', |
| 12 |
'disable_photonic_slider_scripts' => '', |
| 13 |
'lightbox_for_all' => '', |
| 14 |
'lightbox_for_videos' => '', |
| 15 |
'always_load_scripts' => '', |
| 16 |
'js_in_header' => '', |
| 17 |
'disable_editor' => '', |
| 18 |
'disable_editor_post_type' => '', |
| 19 |
'disable_flow_editor' => '', |
| 20 |
'disable_flow_editor_global' => '', |
| 21 |
'nested_shortcodes' => '', |
| 22 |
'external_links_in_new_tab' => '', |
| 23 |
'css_in_file' => '', |
| 24 |
|
| 25 |
// Generic - Layouts |
| 26 |
'archive_thumbs' => '', |
| 27 |
'archive_link_more' => '', |
| 28 |
'thumbnail_style' => 'square', |
| 29 |
'standard_thumbnail_effect' => 'none', |
| 30 |
'tile_spacing' => '2', |
| 31 |
'tile_min_height' => '200', |
| 32 |
'justified_thumbnail_effect' => 'none', |
| 33 |
'masonry_tile_spacing' => '2', |
| 34 |
'masonry_min_width' => '200', |
| 35 |
'masonry_thumbnail_effect' => 'none', |
| 36 |
'mosaic_tile_spacing' => '2', |
| 37 |
'mosaic_trigger_width' => '200', |
| 38 |
'mosaic_thumbnail_effect' => 'zoom', |
| 39 |
|
| 40 |
// Generic - Native WP Galleries |
| 41 |
'wp_title_caption' => 'title', |
| 42 |
'wp_thumbnail_title_display' => 'tooltip', |
| 43 |
'wp_disable_title_link' => '', |
| 44 |
|
| 45 |
// Generic - Slideshow |
| 46 |
'slideshow_prevent_autostart' => '', |
| 47 |
'wp_slide_align' => '', |
| 48 |
'wp_slide_adjustment' => 'adapt-height-width', |
| 49 |
|
| 50 |
// Generic - Overlaid Popup Panel |
| 51 |
'enable_popup' => '', |
| 52 |
'popup_panel_width' => '80', |
| 53 |
'flickr_gallery_panel_background' => ["color" => '#111111', "image" => '', "trans" => "0", "position" => "top left", "repeat" => "repeat", "colortype" => "custom"], |
| 54 |
'flickr_set_popup_thumb_border' => photonic_default_border(), |
| 55 |
|
| 56 |
// Generic - Advanced |
| 57 |
'ssl_verify_off' => '', |
| 58 |
'curl_timeout' => '10', |
| 59 |
'script_dev_mode' => '', |
| 60 |
'performance_logging' => '', |
| 61 |
'debug_on' => '', |
| 62 |
'gallery_page' => 'photonic-gallery', |
| 63 |
|
| 64 |
// Flickr |
| 65 |
'flickr_api_key' => '', |
| 66 |
'flickr_api_secret' => '', |
| 67 |
'flickr_allow_oauth' => '', |
| 68 |
'flickr_access_token' => '', |
| 69 |
'flickr_token_secret' => '', |
| 70 |
'flickr_login_box' => 'Some photos that you are trying to see may be visible to logged in users of Flickr only. Please login if you want to see them.', |
| 71 |
'flickr_login_button' => 'Login', |
| 72 |
'flickr_default_user' => '', |
| 73 |
'flickr_media' => 'photos', |
| 74 |
'flickr_thumb_size' => 's', |
| 75 |
'flickr_main_size' => 'z', |
| 76 |
'flickr_tile_size' => 'same', |
| 77 |
'flickr_video_size' => 'Site MP4', |
| 78 |
'flickr_disable_title_link' => '', |
| 79 |
'flickr_title_caption' => 'title', |
| 80 |
|
| 81 |
// Flickr - Collections |
| 82 |
'flickr_hide_empty_collection_details' => '', |
| 83 |
'flickr_hide_collection_thumbnail' => '', |
| 84 |
'flickr_hide_collection_title' => '', |
| 85 |
'flickr_hide_collection_set_count' => '', |
| 86 |
|
| 87 |
// Flickr - Multiple Photosets |
| 88 |
'flickr_collection_set_title_display' => 'tooltip', |
| 89 |
'flickr_hide_collection_set_photos_count_display' => '', |
| 90 |
'flickr_collection_set_per_row_constraint' => 'padding', |
| 91 |
'flickr_collection_set_constrain_by_padding' => '15', |
| 92 |
'flickr_collection_set_constrain_by_count' => '5', |
| 93 |
|
| 94 |
// Flickr - Single Photosets |
| 95 |
'flickr_hide_set_thumbnail' => '', |
| 96 |
'flickr_hide_set_title' => '', |
| 97 |
'flickr_hide_set_photo_count' => '', |
| 98 |
|
| 99 |
// Flickr - Multiple Galleries |
| 100 |
'flickr_gallery_title_display' => 'tooltip', |
| 101 |
'flickr_hide_gallery_photos_count_display' => '', |
| 102 |
'flickr_galleries_per_row_constraint' => 'padding', |
| 103 |
'flickr_galleries_constrain_by_padding' => '15', |
| 104 |
'flickr_galleries_constrain_by_count' => '5', |
| 105 |
|
| 106 |
// Flickr - Single Galleries |
| 107 |
'flickr_hide_gallery_thumbnail' => '', |
| 108 |
'flickr_hide_gallery_title' => '', |
| 109 |
'flickr_hide_gallery_photo_count' => '', |
| 110 |
|
| 111 |
// Flickr - Photos on main page |
| 112 |
'flickr_photo_title_display' => 'tooltip', |
| 113 |
'flickr_photos_per_row_constraint' => 'padding', |
| 114 |
'flickr_photos_constrain_by_padding' => '15', |
| 115 |
'flickr_photos_constrain_by_count' => '5', |
| 116 |
|
| 117 |
// Flickr - Photos in overlay |
| 118 |
'flickr_photo_pop_title_display' => 'tooltip', |
| 119 |
'flickr_photos_pop_per_row_constraint' => 'padding', |
| 120 |
'flickr_photos_pop_constrain_by_padding' => '15', |
| 121 |
'flickr_photos_pop_constrain_by_count' => '5', |
| 122 |
|
| 123 |
// SmugMug |
| 124 |
'smug_api_key' => '', |
| 125 |
'smug_api_secret' => '', |
| 126 |
'smug_allow_oauth' => '', |
| 127 |
'smug_access_token' => '', |
| 128 |
'smug_token_secret' => '', |
| 129 |
'smug_login_box' => 'Some features that you are trying to access may be visible to logged in users of SmugMug only. Please login if you want to see them. Clicking the button below will open a new tab / window, so if popups are disabled, please enable them. After you have authorized this site to access your profile, please <a href="javascript:document.location.reload();">refresh</a> this window.', |
| 130 |
'smug_login_button' => 'Login', |
| 131 |
'smug_default_user' => '', |
| 132 |
'smug_media' => 'photos', |
| 133 |
'smug_thumb_size' => 'Tiny', |
| 134 |
'smug_main_size' => 'Largest', |
| 135 |
'smug_tile_size' => 'same', |
| 136 |
'smug_video_size' => 'Largest', |
| 137 |
'smug_disable_title_link' => '', |
| 138 |
'smug_show_buy_link' => '', |
| 139 |
'smug_title_caption' => 'title-desc', |
| 140 |
|
| 141 |
// SmugMug - Multiple Albums |
| 142 |
'smug_albums_album_title_display' => 'tooltip', |
| 143 |
'smug_hide_albums_album_photos_count_display' => '', |
| 144 |
'smug_hide_password_protected_thumbnail' => '', |
| 145 |
'smug_album_sort_order' => 'Last Updated (Descending)', |
| 146 |
'smug_albums_album_per_row_constraint' => 'padding', |
| 147 |
'smug_albums_album_constrain_by_padding' => '15', |
| 148 |
'smug_albums_album_constrain_by_count' => '5', |
| 149 |
|
| 150 |
// SmugMug - Multiple Photos |
| 151 |
'smug_hide_album_thumbnail' => '', |
| 152 |
'smug_hide_album_title' => '', |
| 153 |
'smug_hide_album_photo_count' => '', |
| 154 |
'smug_photo_title_display' => 'tooltip', |
| 155 |
'smug_photos_per_row_constraint' => 'padding', |
| 156 |
'smug_photos_constrain_by_padding' => '15', |
| 157 |
'smug_photos_constrain_by_count' => '5', |
| 158 |
|
| 159 |
// SmugMug - Multiple Photos in overlay |
| 160 |
'smug_photo_pop_title_display' => 'tooltip', |
| 161 |
'smug_photos_pop_per_row_constraint' => 'padding', |
| 162 |
'smug_photos_pop_constrain_by_padding' => '15', |
| 163 |
'smug_photos_pop_constrain_by_count' => '5', |
| 164 |
|
| 165 |
// Google |
| 166 |
'google_client_id' => '', |
| 167 |
'google_client_secret' => '', |
| 168 |
'google_refresh_token' => '', |
| 169 |
'google_media' => 'photos', |
| 170 |
'google_hide_album_photo_count_display' => '', |
| 171 |
'google_title_caption' => 'title', |
| 172 |
'google_chain_queries' => '', |
| 173 |
|
| 174 |
// Google - Photos |
| 175 |
'google_photo_title_display' => 'tooltip', |
| 176 |
'google_photos_per_row_constraint' => 'padding', |
| 177 |
'google_photos_constrain_by_padding' => '15', |
| 178 |
'google_photos_constrain_by_count' => '5', |
| 179 |
|
| 180 |
// Google - Photos in overlay |
| 181 |
'google_photo_pop_title_display' => 'tooltip', |
| 182 |
'google_photos_pop_per_row_constraint' => 'padding', |
| 183 |
'google_photos_pop_constrain_by_padding' => '15', |
| 184 |
'google_photos_pop_constrain_by_count' => '5', |
| 185 |
|
| 186 |
// Zenfolio |
| 187 |
'zenfolio_default_user' => '', |
| 188 |
'zenfolio_media' => 'photos', |
| 189 |
'zenfolio_disable_title_link' => '', |
| 190 |
'zenfolio_photos_per_row_constraint' => 'padding', |
| 191 |
'zenfolio_photos_constrain_by_padding' => '15', |
| 192 |
'zenfolio_photos_constrain_by_count' => '5', |
| 193 |
'zenfolio_thumb_size' => '1', |
| 194 |
'zenfolio_main_size' => '4', |
| 195 |
'zenfolio_tile_size' => 'same', |
| 196 |
'zenfolio_video_size' => '210', |
| 197 |
'zenfolio_photo_title_display' => 'tooltip', |
| 198 |
'zenfolio_title_caption' => 'title', |
| 199 |
|
| 200 |
// Zenfolio - Groups |
| 201 |
'zenfolio_hide_empty_groups' => '', |
| 202 |
'zenfolio_hide_group_title' => '', |
| 203 |
'zenfolio_link_group_page' => '', |
| 204 |
'zenfolio_hide_group_photo_count' => '', |
| 205 |
'zenfolio_hide_group_group_count' => '', |
| 206 |
'zenfolio_hide_group_set_count' => '', |
| 207 |
|
| 208 |
// Zenfolio - Sets |
| 209 |
'zenfolio_set_title_display' => 'tooltip', |
| 210 |
'zenfolio_hide_set_photos_count_display' => '', |
| 211 |
'zenfolio_hide_password_protected_thumbnail' => '', |
| 212 |
'zenfolio_sets_per_row_constraint' => 'padding', |
| 213 |
'zenfolio_sets_constrain_by_padding' => '15', |
| 214 |
'zenfolio_sets_constrain_by_count' => '5', |
| 215 |
|
| 216 |
// Zenfolio - Single set |
| 217 |
'zenfolio_hide_set_thumbnail' => '', |
| 218 |
'zenfolio_hide_set_title' => '', |
| 219 |
'zenfolio_link_set_page' => '', |
| 220 |
'zenfolio_hide_set_photo_count' => '', |
| 221 |
|
| 222 |
// Instagram |
| 223 |
'instagram_access_token' => '', |
| 224 |
'instagram_media' => 'photos', |
| 225 |
'instagram_disable_title_link' => '', |
| 226 |
'instagram_main_size' => 'standard_resolution', |
| 227 |
'instagram_video_size' => 'standard_resolution', |
| 228 |
'instagram_tile_size' => 'same', |
| 229 |
'instagram_photo_title_display' => 'tooltip', |
| 230 |
'instagram_photos_per_row_constraint' => 'padding', |
| 231 |
'instagram_photos_constrain_by_padding' => '15', |
| 232 |
'instagram_photos_constrain_by_count' => '5', |
| 233 |
|
| 234 |
// Lightbox - common |
| 235 |
'slideshow_mode' => '', |
| 236 |
'slideshow_interval' => '5000', |
| 237 |
'lightbox_no_loop' => '', |
| 238 |
'deep_linking' => 'no-history', |
| 239 |
'social_media' => '', |
| 240 |
|
| 241 |
// Lightbox - Colorbox |
| 242 |
'cbox_theme' => '1', |
| 243 |
'cb_transition_effect' => 'elastic', |
| 244 |
'cb_transition_speed' => '350', |
| 245 |
|
| 246 |
// Lightbox - FancyBox 1 / 2 / 3 |
| 247 |
'fbox_title_position' => 'inside', |
| 248 |
'fb3_transition_effect' => 'fade', |
| 249 |
'fb3_transition_speed' => '366', |
| 250 |
'fb3_disable_zoom' => '', |
| 251 |
'fb3_disable_slideshow' => '', |
| 252 |
'fb3_show_fullscreen' => '', |
| 253 |
'enable_fb3_fullscreen' => '', |
| 254 |
'fb3_enable_download' => '', |
| 255 |
'fb3_hide_thumbs' => '', |
| 256 |
'enable_fb3_thumbnail' => '', |
| 257 |
'fb3_disable_right_click' => '', |
| 258 |
|
| 259 |
// Lightbox - Lightcase |
| 260 |
'lc_transition_effect' => 'scrollHorizontal', |
| 261 |
'lc_transition_speed_in' => '350', |
| 262 |
'lc_transition_speed_out' => '250', |
| 263 |
'lc_enable_shrink' => '', |
| 264 |
|
| 265 |
// Lightbox - LightGallery |
| 266 |
'enable_lg_transitions' => '', |
| 267 |
'lg_transition_effect' => 'lg-slide', |
| 268 |
'lg_transition_speed' => 10, |
| 269 |
'enable_lg_autoplay' => '', |
| 270 |
'enable_lg_fullscreen' => '', |
| 271 |
'enable_lg_thumbnail' => '', |
| 272 |
'enable_lg_zoom' => '', |
| 273 |
'disable_lg_download' => '', |
| 274 |
'lg_hide_bars_delay' => '6000', |
| 275 |
|
| 276 |
// Lightbox - PrettyPhoto |
| 277 |
'pphoto_theme' => 'pp_default', |
| 278 |
'pp_animation_speed' => 'Fast', |
| 279 |
|
| 280 |
// Lightbox - SwipeBox |
| 281 |
'enable_swipebox_mobile_bars' => '', |
| 282 |
'sb_hide_mobile_close' => '', |
| 283 |
'sb_hide_bars_delay' => 0, |
| 284 |
]; |