khanat-code-old/code/web/public_php/ams/func/deactivate_plugin.php

44 lines
1.4 KiB
PHP
Raw Normal View History

2014-06-15 04:15:00 +00:00
<?php
/**
* This function is used in deactivating plugins.
* This can be done by providing id using $_GET global variable of the plugin which
* we want to activate. After getting id we update the respective plugin with status
* deactivate which here means '0'.
2014-06-15 04:15:00 +00:00
*
* @author Shubham Meena, mentored by Matthew Lagoe
*/
function deactivate_plugin() {
// if logged in
if ( WebUsers :: isLoggedIn() ) {
if ( isset( $_GET['id'] ) )
{
// id of plugin to deactivate
2014-06-15 04:15:00 +00:00
$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 )
{
// if result is successfull it redirects and shows success message
2014-06-15 04:15:00 +00:00
header( "Location: index.php?page=plugins&result=5" );
exit;
}
else
{
// if result is unsuccessfull it redirects and shows success message
2014-06-15 04:15:00 +00:00
header( "Location: index.php?page=plugins&result=6" );
exit;
}
}
else
{
//if $_GET variable is not set it redirects and shows error
2014-06-15 04:15:00 +00:00
header( "Location: index.php?page=plugins&result=6" );
exit;
}
}
}