source: extensions/Fotorama/admin.php @ 29615

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

Replace picture page

File size: 1.5 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    );
19  if (isset($_POST['allowfullscreen']))
20    $conf['Fotorama']['allowfullscreen'] = $_POST['allowfullscreen'];
21  if (isset($_POST['fit']))
22    $conf['Fotorama']['fit'] = $_POST['fit'];
23  if (isset($_POST['transition']))
24    $conf['Fotorama']['transition'] = $_POST['transition'];
25  if (isset($_POST['nav']))
26    $conf['Fotorama']['nav'] = $_POST['nav'];
27  if (isset($_POST['fullscreen_nav']))
28    $conf['Fotorama']['fullscreen_nav'] = $_POST['fullscreen_nav'];
29  if (isset($_POST['thumbheight']))
30    $conf['Fotorama']['thumbheight'] = $_POST['thumbheight'];
31
32  conf_update_param('Fotorama', serialize($conf['Fotorama']));
33  $page['infos'][] = l10n('Information data registered in database');
34}
35
36$template->assign(array(
37  'Fotorama' => $conf['Fotorama'],
38  ));
39
40$template->set_filename('admintools_content', realpath(FOTORAMA_PATH . 'template/admin.tpl'));
41$template->assign_var_from_handle('ADMIN_CONTENT', 'admintools_content');
42
43?>
Note: See TracBrowser for help on using the repository browser.