source: extensions/SocialButtons/admin.php @ 25178

Last change on this file since 25178 was 25178, checked in by mistic100, 10 years ago

add linkedin

File size: 2.2 KB
Line 
1<?php
2if (!defined('SOCIALBUTT_PATH')) die('Hacking attempt!');
3
4global $conf, $template, $page;
5
6load_language('plugin.lang', SOCIALBUTT_PATH);
7
8
9if (isset($_POST['submit']))
10{
11  $conf['SocialButtons'] = array(
12    'position' => $_POST['position'],
13    'on_index' => get_boolean($_POST['on_index']),
14    'img_size' => $_POST['img_size'],
15    'light' => isset($_POST['light']),
16    'twitter' => array(
17      'enabled' => isset($_POST['twitter']['enabled']),
18      'size' => $_POST['twitter']['size'],
19      'count' => $_POST['twitter']['count'],
20      'via' => trim($_POST['twitter']['via']),
21      ),
22    'google' => array(
23      'enabled' => isset($_POST['google']['enabled']),
24      'size' => $_POST['google']['size'],
25      'annotation' => $_POST['google']['annotation'],
26      ),
27    'tumblr' => array(
28      'enabled' => isset($_POST['tumblr']['enabled']),
29      'type' => $_POST['tumblr']['type'],
30      ),
31    'facebook' => array(
32      'enabled' => isset($_POST['facebook']['enabled']),
33      'color' => $_POST['facebook']['color'],
34      'layout' => $_POST['facebook']['layout'],
35      ),
36    'pinterest' => array(
37      'enabled' => isset($_POST['pinterest']['enabled']),
38      'layout' => $_POST['pinterest']['layout'],
39      ),
40    'reddit' => array(
41      'enabled' => isset($_POST['reddit']['enabled']),
42      'type' => $_POST['reddit']['type'],
43      'community' => $_POST['reddit']['community'],
44      ),
45    'linkedin' => array(
46      'enabled' => isset($_POST['linkedin']['enabled']),
47      'counter' => $_POST['linkedin']['counter'],
48      ),
49    );
50 
51  conf_update_param('SocialButtons', serialize($conf['SocialButtons']));
52  array_push($page['infos'], l10n('Information data registered in database'));
53 
54  // the prefilter changes, we must delete compiled templatess
55  $template->delete_compiled_templates();
56}
57
58
59$template->assign($conf['SocialButtons']);
60$template->assign(array(
61  'SOCIALBUTT_PATH' => SOCIALBUTT_PATH,
62  'img_sizes' => array_merge(ImageStdParams::get_all_types(), array('Original')),
63  ));
64
65$template->set_filename('socialbutt_content', realpath(SOCIALBUTT_PATH . 'template/admin.tpl'));
66$template->assign_var_from_handle('ADMIN_CONTENT', 'socialbutt_content');
67
68?>
Note: See TracBrowser for help on using the repository browser.