source: extensions/Panoramas/AS_Panorama_default.php @ 14201

Last change on this file since 14201 was 6530, checked in by vdigital, 14 years ago

Fix Default speed.

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