mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
38 lines
1,019 B
PHP
38 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;
|
||
|
}
|
||
|
}
|
||
|
}
|