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

Last change on this file since 27153 was 19365, checked in by mistic100, 11 years ago

remove old code

File size: 338 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_uninstall()
14{
15  pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="GooglePlusOne" LIMIT 1;');
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.