source: extensions/SmartAlbums/admin/config.inc.php @ 11392

Last change on this file since 11392 was 11392, checked in by mistic100, 13 years ago

add a list of all SmartAlbums

File size: 462 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4// Enregistrement de la configuration
5if (isset($_POST['submit']))
6{
7        $conf['SmartAlbums']['update_on_upload'] = isset($_POST['update_on_upload']);
8       
9  conf_update_param('SmartAlbums', serialize($conf['SmartAlbums']));
10        array_push($page['infos'], l10n('Information data registered in database'));
11}
12
13$template->assign(array(
14        'update_on_upload' => $conf['SmartAlbums']['update_on_upload'],
15));
16
17?>
Note: See TracBrowser for help on using the repository browser.