Last change
on this file since 32582 was
8034,
checked in by patdenice, 14 years ago
|
Display corrected in IE8.
Add theme interface select in admin pannel.
|
File size:
1.0 KB
|
Rev | Line | |
---|
[8030] | 1 | <?php |
---|
| 2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 3 | |
---|
| 4 | load_language('plugin.lang', CAPTCHA_PATH); |
---|
| 5 | include(CAPTCHA_PATH.'recaptchalib.php'); |
---|
| 6 | |
---|
| 7 | if ( isset($_POST['submit']) and !is_adviser() ) |
---|
| 8 | { |
---|
[8034] | 9 | foreach (array('captcha_publickey', 'captcha_privatekey', 'captcha_theme') as $field) |
---|
| 10 | { |
---|
| 11 | $conf[$field] = trim($_POST[$field]); |
---|
[8030] | 12 | |
---|
[8034] | 13 | $query = ' |
---|
[8030] | 14 | UPDATE '.CONFIG_TABLE.' |
---|
[8034] | 15 | SET value="'.$conf[$field].'" |
---|
| 16 | WHERE param="'.$field.'" |
---|
[8030] | 17 | LIMIT 1'; |
---|
[8034] | 18 | pwg_query($query); |
---|
| 19 | } |
---|
[8030] | 20 | |
---|
| 21 | array_push($page['infos'], l10n('Information data registered in database')); |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | $template->set_filename('plugin_admin_content', dirname(__FILE__).'/admin.tpl'); |
---|
| 25 | |
---|
| 26 | $template->assign(array( |
---|
| 27 | 'CAPTCHA_PUBLICKEY' => $conf['captcha_publickey'], |
---|
| 28 | 'CAPTCHA_PRIVATEKEY' => $conf['captcha_privatekey'], |
---|
[8034] | 29 | 'reCAPTCHA_URL' => recaptcha_get_signup_url(urlencode($_SERVER['SERVER_NAME']), 'Piwigo'), |
---|
| 30 | 'captcha_theme_options' => array('red', 'white', 'blackglass'), |
---|
| 31 | 'captcha_theme_selected' => $conf['captcha_theme'], |
---|
[8030] | 32 | ) |
---|
| 33 | ); |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | $template->assign_var_from_handle( 'ADMIN_CONTENT', 'plugin_admin_content'); |
---|
| 37 | |
---|
| 38 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.