2a2c2b1d67
Merging Gsoc 14 branch with default
37 lines
1,019 B
PHP
37 lines
1,019 B
PHP
<?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;
|
|
}
|
|
}
|
|
}
|