mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 01:40:13 +00:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
|
<?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'.
|
||
|
*
|
||
|
* @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
|
||
|
$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
|
||
|
header( "Location: index.php?page=plugins&result=5" );
|
||
|
exit;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// if result is unsuccessfull it redirects and shows success message
|
||
|
header( "Location: index.php?page=plugins&result=6" );
|
||
|
exit;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//if $_GET variable is not set it redirects and shows error
|
||
|
header( "Location: index.php?page=plugins&result=6" );
|
||
|
exit;
|
||
|
}
|
||
|
}
|
||
|
}
|