source: extensions/GooglePlusOne/maintain.inc.php @ 17737

Last change on this file since 17737 was 15994, checked in by mistic100, 12 years ago

fix possible warnings when activating
clean index.php

File size: 715 bytes
Line 
1<?php
2function plugin_install()
3{
4  $google_conf = array(
5    'size' => 'medium',
6    'position' => 'toolbar',
7    'annotation' => 'bubble',
8    );
9     
10  conf_update_param('GooglePlusOne', serialize($google_conf));
11}
12
13function plugin_activate()
14{
15  global $conf;
16 
17  if (@unserialize($conf['GooglePlusOne']) === false)
18  {
19    $google_conf = explode(',', $conf['GooglePlusOne']);
20    $google_conf = array(
21      'size' => $tweet_conf[0],
22      'position' => $tweet_conf[1],
23      'annotation' => 'bubble',
24      );
25     
26    conf_update_param('GooglePlusOne', serialize($google_conf));
27  }
28}
29
30function plugin_uninstall()
31{
32  pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="GooglePlusOne" LIMIT 1;');
33}
34
35?>
Note: See TracBrowser for help on using the repository browser.