1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

Adding setup files

This commit is contained in:
CaMer0n
2009-10-20 03:58:47 +00:00
parent 5656cce43d
commit a9050cc2a3
5 changed files with 224 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
<?php
/*
* e107 website system
*
* Copyright ( c ) 2008-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/pm/pm_setup.php,v $
* $Revision: 1.1 $
* $Date: 2009-10-20 03:58:47 $
* $Author: e107coders $
*
*/
class pm_setup
{
function pm_uninstall_post()
{
$sql = e107::getDb();
$sql->db_Delete("core", "e107_name = 'pm_prefs'");
$sql->db_Delete("menus", "menu_name = 'private_msg_menu'");
}
}