source: extensions/Fotorama/admin.php @ 29732

Last change on this file since 29732 was 29732, checked in by JanisV, 10 years ago

Added option for resizing

File size: 1.7 KB
Line 
1<?php
2
3defined('FOTORAMA_PATH') or die('Hacking attempt!');
4
5global $conf, $template, $page;
6
7if (isset($_POST['submit']))
8{
9  $conf['Fotorama'] = array(
10    'shadows' => isset($_POST['shadows']),
11    'only_fullscreen' => isset($_POST['only_fullscreen']),
12    'autoplay' => isset($_POST['autoplay']),
13    'stopautoplayontouch' => isset($_POST['stopautoplayontouch']),
14    'loop' => isset($_POST['loop']),
15    'enable_caption' => isset($_POST['enable_caption']),
16    'replace_picture' => isset($_POST['replace_picture']),
17    'replace_picture_only_users' => isset($_POST['replace_picture_only_users']),
18    'clicktransition_crossfade' => isset($_POST['clicktransition_crossfade']),
19    'close_button' => isset($_POST['close_button']),
20    'resize' => isset($_POST['resize']),
21    );
22  if (isset($_POST['allowfullscreen']))
23    $conf['Fotorama']['allowfullscreen'] = $_POST['allowfullscreen'];
24  if (isset($_POST['fit']))
25    $conf['Fotorama']['fit'] = $_POST['fit'];
26  if (isset($_POST['transition']))
27    $conf['Fotorama']['transition'] = $_POST['transition'];
28  if (isset($_POST['nav']))
29    $conf['Fotorama']['nav'] = $_POST['nav'];
30  if (isset($_POST['fullscreen_nav']))
31    $conf['Fotorama']['fullscreen_nav'] = $_POST['fullscreen_nav'];
32  if (isset($_POST['thumbheight']))
33    $conf['Fotorama']['thumbheight'] = $_POST['thumbheight'];
34
35  conf_update_param('Fotorama', serialize($conf['Fotorama']));
36  $page['infos'][] = l10n('Information data registered in database');
37}
38
39$template->assign(array(
40  'Fotorama' => $conf['Fotorama'],
41  ));
42
43$template->set_filename('admintools_content', realpath(FOTORAMA_PATH . 'template/admin.tpl'));
44$template->assign_var_from_handle('ADMIN_CONTENT', 'admintools_content');
45
46?>
Note: See TracBrowser for help on using the repository browser.