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

Last change on this file since 27153 was 8115, checked in by ddtddt, 13 years ago

[extensions] - PersoAbout - Firs release

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 406 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5function plugin_install()
6{
7   
8       
9        $query = 'INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment) VALUES ("persoAbout","","html displayed on the about page of your galler...");';
10    pwg_query($query);
11
12}
13
14function plugin_uninstall()
15{
16        $q = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="persoAbout" LIMIT 1;';
17    pwg_query($q);
18}
19
20
21?>
Note: See TracBrowser for help on using the repository browser.