source: extensions/TweetThis/maintain.inc.php @ 11419

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

first commit

File size: 298 bytes
Line 
1<?php
2function plugin_install()
3{
4  global $conf;
5 
6  pwg_query('INSERT INTO '.CONFIG_TABLE.' (param,value,comment) VALUES ("TweetThis","twitter-a,toolbar","TweetButton config");');
7}
8
9function plugin_uninstall()
10{
11  pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="TweetThis" LIMIT 1');
12}
13
14?>
Note: See TracBrowser for help on using the repository browser.