source: extensions/Panoramas/AS_Panorama_default.php @ 19476

Last change on this file since 19476 was 19460, checked in by Klarsfeld, 11 years ago

Upgrade for Piwigo 2.4.5
Only languages en-UK and fr-FR upgraded

File size: 622 bytes
Line 
1<?php
2  $default = array(
3        'viewport_width' => 100,
4        'viewport_height' => 500,
5        'min_viewport_width' => 720,
6        'max_viewport_width' => 1500,
7        'speed' => 45,
8        'direction' => 'left',
9        'control_display' => 'auto',
10        'start_position' => 50,
11        'auto_start' => 1,
12        'mode_360' => 0,
13        'loop_180' => 1,
14        'Dir' => ASP_DIR,
15        'Path' => ASP_PATH,
16        'Ver' => ASP_VER,
17        'in_mode_360' => '_360',
18        'in_mode_180' => '_180',
19        'In_name_display_removal' => 1,
20  );
21  if (!isset($conf['AS_panorama'])) $conf['AS_panorama'] = $default;
22  else $conf['AS_panorama'] = array_merge( $default, unserialize($conf['AS_panorama']));
23?>
Note: See TracBrowser for help on using the repository browser.