source: extensions/TweetThis/admin.php @ 11425

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

delete compiled templates on config save

File size: 865 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4global $conf, $template, $page;
5
6load_language('plugin.lang', TWEET_PATH);
7$conf['TweetThis'] = explode(',', $conf['TweetThis']);
8
9if (isset($_POST['submit']))
10{
11  $conf['TweetThis'] = array(
12    $_POST['button_style'],
13    $_POST['position'],
14    );
15 
16  conf_update_param('TweetThis', implode(',', $conf['TweetThis']));
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_style' => $conf['TweetThis'][0],
25  'position' => $conf['TweetThis'][1],
26  'TWEET_PATH' => TWEET_PATH,
27));
28
29$template->set_filename('tweet_content', dirname(__FILE__).'/admin.tpl');
30$template->assign_var_from_handle('ADMIN_CONTENT', 'tweet_content');
31
32?>
Note: See TracBrowser for help on using the repository browser.