source: extensions/GooglePlusOne/admin.php @ 14919

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

Create GooglePlusOne (Google+1) extension
(based on TweetThis)

File size: 896 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4global $conf, $template, $page;
5
6load_language('plugin.lang', GPLUS1_PATH);
7$conf['GooglePlusOne'] = explode(',', $conf['GooglePlusOne']);
8
9if (isset($_POST['submit']))
10{
11  $conf['GooglePlusOne'] = array(
12    $_POST['button_size'],
13    $_POST['position'],
14    );
15 
16  conf_update_param('GooglePlusOne', implode(',', $conf['GooglePlusOne']));
17  array_push($page['infos'], l10n('Information data registered in database'));
18 
19  // the prefilter changes, we must delete compiled templatess
20  $template->delete_compiled_templates();
21}
22
23$template->assign(array(
24  'button_size' => $conf['GooglePlusOne'][0],
25  'position' => $conf['GooglePlusOne'][1],
26  'GPLUS1_PATH' => GPLUS1_PATH,
27));
28
29$template->set_filename('gplus1_content', dirname(__FILE__).'/admin.tpl');
30$template->assign_var_from_handle('ADMIN_CONTENT', 'gplus1_content');
31
32?>
Note: See TracBrowser for help on using the repository browser.