deactivating a plugin in ams

--HG--
branch : Gsoc14-ryzomAppImprovements
hg/feature/cdb-packed
shubham_meena 11 years ago
parent 2f81e3c1b9
commit cebfde66f7

@ -0,0 +1,37 @@
<?php
/**
* This function is used in deactivating plugins.
*
* @author Shubham Meena, mentored by Matthew Lagoe
*/
function deactivate_plugin() {
// if logged in
if ( WebUsers :: isLoggedIn() ) {
if ( isset( $_GET['id'] ) )
{
// id of plugin to delete
$id = filter_var( $_GET['id'], FILTER_SANITIZE_FULL_SPECIAL_CHARS );
$db = new DBLayer( 'lib' );
$result = $db -> update( "plugins", array( 'Status' => '0' ), "Id = $id" );
if ( $result )
{
header( "Location: index.php?page=plugins&result=5" );
exit;
}
else
{
header( "Location: index.php?page=plugins&result=6" );
exit;
}
}
else
{
header( "Location: index.php?page=plugins&result=6" );
exit;
}
}
}
Loading…
Cancel
Save