# insert-html-snippet/1.3.1/admin/snippet-status.php

Insert Html Snippet, version 1.3.1. 31 lines.

- Page: https://pluginprobe.com/plugins/insert-html-snippet/1.3.1/code/admin/snippet-status.php
- Raw: https://pluginprobe.com/plugins/insert-html-snippet/1.3.1/raw/admin/snippet-status.php
- Modified: 2019-10-25T09:59:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/insert-html-snippet/1.3.1/code/admin/snippet-status.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) )
	 exit;
global $wpdb;
$_POST = stripslashes_deep($_POST);
$_GET = stripslashes_deep($_GET);
$xyz_ihs_snippetId = intval($_GET['snippetId']);
$xyz_ihs_snippetStatus = intval($_GET['status']);
$xyz_ihs_pageno = intval($_GET['pageno']);


if (! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'ihs-stat_'.$xyz_ihs_snippetId )) {
	wp_nonce_ays( 'ihs-stat_'.$xyz_ihs_snippetId );
	exit;
} 
else {
	if($xyz_ihs_snippetId=="" || !is_numeric($xyz_ihs_snippetId)){
		header("Location:".admin_url('admin.php?page=insert-html-snippet-manage'));
		exit();
	}
	$snippetCount = $wpdb->query($wpdb->prepare( 'SELECT * FROM '.$wpdb->prefix.'xyz_ihs_short_code WHERE id=%d LIMIT 0,1' ,$xyz_ihs_snippetId)) ;
	if($snippetCount==0){
		header("Location:".admin_url('admin.php?page=insert-html-snippet-manage&xyz_ihs_msg=2'));
		exit();
	}else{
		$wpdb->update($wpdb->prefix.'xyz_ihs_short_code', array('status'=>$xyz_ihs_snippetStatus), array('id'=>$xyz_ihs_snippetId));
		header("Location:".admin_url('admin.php?page=insert-html-snippet-manage&xyz_ihs_msg=4&pagenum='.$xyz_ihs_pageno));
		exit();
	}
}
?>
```
