| Current Path : /var/www/element/data/www/vsl-gates.ru/manager/processors/ |
| Current File : /var/www/element/data/www/vsl-gates.ru/manager/processors/delete_module.processor.php |
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODx Content Manager instead of accessing this file directly.");
if(!$modx->hasPermission('delete_module')) {
$e->setError(3);
$e->dumpError();
}
?>
<?php
$id=intval($_GET['id']);
// invoke OnBeforeModFormDelete event
$modx->invokeEvent("OnBeforeModFormDelete",
array(
"id" => $id
));
//ok, delete the module.
$sql = "DELETE FROM ".$modx->getFullTableName("site_modules")." WHERE id=".$id.";";
$rs = mysql_query($sql);
if(!$rs) {
echo "Something went wrong while trying to delete the module...";
exit;
}
else {
//ok, delete the module dependencies.
$sql = "DELETE FROM ".$modx->getFullTableName("site_module_depobj")." WHERE module='".$id."';";
$rs = mysql_query($sql);
//ok, delete the module user group access.
$sql = "DELETE FROM ".$modx->getFullTableName("site_module_access")." WHERE module='".$id."';";
$rs = mysql_query($sql);
// invoke OnModFormDelete event
$modx->invokeEvent("OnModFormDelete",
array(
"id" => $id
));
// empty cache
include_once "cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath("../assets/cache/");
$sync->setReport(false);
$sync->emptyCache(); // first empty the cache
// finished emptying cache - redirect
$header="Location: index.php?a=106&r=2";
header($header);
}
?>