1 | <?php |
---|
2 | |
---|
3 | defined('FOTORAMA_PATH') or die('Hacking attempt!'); |
---|
4 | |
---|
5 | global $conf, $template, $page; |
---|
6 | |
---|
7 | if (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 | ); |
---|
16 | if (isset($_POST['allowfullscreen'])) |
---|
17 | $conf['Fotorama']['allowfullscreen'] = $_POST['allowfullscreen']; |
---|
18 | if (isset($_POST['fit'])) |
---|
19 | $conf['Fotorama']['fit'] = $_POST['fit']; |
---|
20 | if (isset($_POST['transition'])) |
---|
21 | $conf['Fotorama']['transition'] = $_POST['transition']; |
---|
22 | if (isset($_POST['nav'])) |
---|
23 | $conf['Fotorama']['nav'] = $_POST['nav']; |
---|
24 | if (isset($_POST['fullscreen_nav'])) |
---|
25 | $conf['Fotorama']['fullscreen_nav'] = $_POST['fullscreen_nav']; |
---|
26 | |
---|
27 | conf_update_param('Fotorama', serialize($conf['Fotorama'])); |
---|
28 | $page['infos'][] = l10n('Information data registered in database'); |
---|
29 | } |
---|
30 | |
---|
31 | $template->assign(array( |
---|
32 | 'Fotorama' => $conf['Fotorama'], |
---|
33 | )); |
---|
34 | |
---|
35 | $template->set_filename('admintools_content', realpath(FOTORAMA_PATH . 'template/admin.tpl')); |
---|
36 | $template->assign_var_from_handle('ADMIN_CONTENT', 'admintools_content'); |
---|
37 | |
---|
38 | ?> |
---|