source: extensions/adult_content/admin/admin.php @ 9542

Last change on this file since 9542 was 9542, checked in by flop25, 13 years ago

new system when posting checkbox
testing the auto version

File size: 1.3 KB
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4$ad_c = get_plugin_data('adult_content');
5
6global $conf, $template, $lang, $page;
7global $prefixeTable;
8load_language('plugin.lang', $ad_c->plugin_path);
9$conf_ad_c = explode("," , $conf['ad_c_plugin']);
10
11
12$page['infos'] = array();
13
14if (isset($_POST['option_ad_c']))
15{
16        $newconf_plugin = (isset($_POST['menublock_for_guest'])) ? 'true' : 'false';
17        $newconf_plugin .= (isset($_POST['block_on_index'])) ? ',true' : ',false';
18        //$newconf_plugin = implode ("," , $newconf_plugin);
19        $query = '
20                UPDATE '.CONFIG_TABLE.'
21                SET value="'.$newconf_plugin.'"
22                WHERE param="ad_c_plugin"
23                LIMIT 1';
24        pwg_query($query);
25                               
26        array_push($page['infos'], l10n('ad_c_msg_admin_1'));
27}
28
29load_conf_from_db();
30$conf_ad_c = explode("," , $conf['ad_c_plugin']);
31
32$check='checked="checked"';
33if ($conf_ad_c[0]=='true') { $menublock=$check; } else { $menublock=NULL; } 
34if ($conf_ad_c[1]=='true') { $index=$check; } else { $index=NULL; }
35$disabled='disabled="disabled"';
36        $template->assign(
37                array(
38                  'AD_C_menublock_for_guest' => $menublock,
39                  'AD_C_block_on_index' => $index,
40                  'AD_C_block_on_index_disabled' => $disabled,
41                )
42          );
43
44$template->set_filename('plugin_admin_content', $ad_c->plugin_path.'admin/admin.tpl');
45$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
46?>
Note: See TracBrowser for help on using the repository browser.