khanat-opennel-code/code/web/public_php/ams/func/activate_plugin.php
shubham_meena 2a2c2b1d67 Merged in Gsoc14-ryzomAppImprovements (pull request #1)
Merging Gsoc 14 branch with default
2014-08-15 01:05:39 +05:30

35 lines
989 B
PHP

<?php
/**
* This function is used in activating plugins.
*
* @author Shubham Meena, mentored by Matthew Lagoe
*/
function activate_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' => '1' ), "Id = $id" );
if ( $result )
{
header( "Location: index.php?page=plugins&result=3" );
exit;
}
else
{
header( "Location: index.php?page=plugins&result=4" );
exit;
}
}
else
{
header( "Location: index.php?page=plugins&result=4" );
exit;
}
}
}