2014-06-13 11:51:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This function is used in deleting plugins.
|
|
|
|
*
|
|
|
|
* It removes the plugin from the codebase.
|
|
|
|
*
|
|
|
|
* @author Shubham Meena, mentored by Matthew Lagoe
|
|
|
|
*/
|
|
|
|
function delete_plugin() {
|
|
|
|
|
|
|
|
// if logged in
|
|
|
|
if ( WebUsers :: isLoggedIn() ) {
|
|
|
|
|
|
|
|
if ( isset( $_GET['id'] ) )
|
|
|
|
{
|
|
|
|
// id of plugin to delete after filtering
|
|
|
|
$id = filter_var( $_GET['id'], FILTER_SANITIZE_FULL_SPECIAL_CHARS );
|
|
|
|
|
|
|
|
$db = new DBLayer( 'lib' );
|
|
|
|
$sth = $db -> selectWithParameter( "FileName", "plugins", array( 'id' => $id ), "Id=:id" );
|
|
|
|
$name = $sth -> fetch();
|
|
|
|
|
|
|
|
if ( is_dir( "$name[FileName]" ) )
|
|
|
|
{
|
|
|
|
// removing plugin directory from the code base
|
2014-07-07 08:26:58 +00:00
|
|
|
if ( Plugincache::rrmdir( "$name[FileName]" ) )
|
2014-06-13 11:51:49 +00:00
|
|
|
{
|
|
|
|
$db -> delete( 'plugins', array( 'id' => $id ), "Id=:id" );
|
|
|
|
|
|
|
|
header( "Location: index.php?page=plugins&result=2" );
|
|
|
|
exit;
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
header( "Location: index.php?page=plugins&result=0" );
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
header( "Location: index.php?page=plugins&result=0" );
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|