1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00
php-e107/e107_plugins/pm/pm_setup.php

27 lines
539 B
PHP
Raw Normal View History

2009-10-20 03:58:47 +00:00
<?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.2 $
* $Date: 2009-10-21 12:53:00 $
2009-10-20 03:58:47 +00:00
* $Author: e107coders $
*
*/
class pm_setup
{
function uninstall_post()
2009-10-20 03:58:47 +00:00
{
$sql = e107::getDb();
$sql->db_Delete("core", "e107_name = 'pm_prefs'");
$sql->db_Delete("menus", "menu_name = 'private_msg_menu'");
}
}