source: extensions/ContactForm/admin/config.php @ 23205

Last change on this file since 23205 was 23205, checked in by mistic100, 11 years ago

new "clear" theme + config

File size: 1.5 KB
Line 
1<?php
2if (!defined('CONTACT_FORM_PATH')) die('Hacking attempt!');
3
4// save config
5if (isset($_POST['save_config']))
6{
7  $conf['ContactForm'] = array(
8    'cf_must_initialize' =>   false,
9    'cf_menu_link' =>         isset($_POST['cf_menu_link']),
10    'cf_subject_prefix' =>    trim($_POST['cf_subject_prefix']),
11    'cf_default_subject' =>   trim($_POST['cf_default_subject']),
12    'cf_allow_guest' =>       isset($_POST['cf_allow_guest']),
13    'cf_mandatory_mail' =>    isset($_POST['cf_mandatory_mail']),
14    'cf_mandatory_name' =>    isset($_POST['cf_mandatory_name']),
15    'cf_mail_type' =>         $_POST['cf_mail_type'],
16    'cf_redirect_url' =>      ($_POST['cf_redirect_url']!='http://') ? $_POST['cf_redirect_url'] : null,
17    'cf_theme' =>             $_POST['cf_theme'],
18    );
19  $conf['ContactForm_before'] = $_POST['cf_before'];
20  $conf['ContactForm_after'] = $_POST['cf_after'];
21 
22  conf_update_param('ContactForm', serialize($conf['ContactForm']));
23  conf_update_param('ContactForm_before', $conf['ContactForm_before']);
24  conf_update_param('ContactForm_after', $conf['ContactForm_after']);
25 
26  array_push($page['infos'], l10n('Information data registered in database'));
27}
28
29
30// display config
31$template->assign($conf['ContactForm']);
32$template->assign(array(
33  'cf_before' => stripslashes($conf['ContactForm_before']),
34  'cf_after' => stripslashes($conf['ContactForm_after']),
35  ));
36
37$template->set_filename('contact_form', realpath(CONTACT_FORM_PATH . 'admin/template/config.tpl'));
38
39?>
Note: See TracBrowser for help on using the repository browser.