
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
if ( ! defined( 'ABSPATH' ) )
	 exit;
global $wpdb;

$_POST = stripslashes_deep($_POST);
$_GET = stripslashes_deep($_GET);

$xyz_ips_snippetId = intval($_GET['snippetId']);
$xyz_ips_snippetStatus = intval($_GET['status']);
$xyz_ips_pageno = intval($_GET['pageno']);


if (! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'snipp-stat_'.$xyz_ips_snippetId )) {
	wp_nonce_ays( 'snipp-pstat_'.$xyz_ips_snippetId );
	exit;
} 
else {
if($xyz_ips_snippetId=="" || !is_numeric($xyz_ips_snippetId)){
	header("Location:".admin_url('admin.php?page=insert-php-code-snippet-manage'));
	exit();

}

$snippetCount = $wpdb->query($wpdb->prepare( 'SELECT * FROM '.$wpdb->prefix.'xyz_ips_short_code WHERE id=%d LIMIT 0,1' ,$xyz_ips_snippetId)) ;

if($snippetCount==0){
	header("Location:".admin_url('admin.php?page=insert-php-code-snippet-manage&xyz_ips_msg=2'));
	exit();
}else{
	
	$wpdb->update($wpdb->prefix.'xyz_ips_short_code', array('status'=>$xyz_ips_snippetStatus), array('id'=>$xyz_ips_snippetId));
	header("Location:".admin_url('admin.php?page=insert-php-code-snippet-manage&xyz_ips_msg=4&pagenum='.$xyz_ips_pageno));
	exit();
	}
}
?>