Current path: home/webdevt/www/dev-uz-avocat/wp-content/plugins/insert-php-code-snippet/admin/
?? Go up: /home/webdevt/www/dev-uz-avocat/wp-content/plugins/insert-php-code-snippet
<?php
if ( ! defined( 'ABSPATH' ) )
exit;
global $wpdb;
$goback=1;
$xyz_ips_snippetId = intval($_GET['snippetId']);
$xyz_ips_message='';
if(isset($_GET['xyz_ips_msg'])){
$xyz_ips_message = intval($_GET['xyz_ips_msg']);
}
if($xyz_ips_message == 1){
?>
<div class="xyz_system_notice_area_style1" id="xyz_system_notice_area">
PHP Snippet updated successfully.
<span id="xyz_system_notice_area_dismiss">Dismiss</span>
</div>
<?php
}
if(isset($_GET['goback']))
$goback= intval($_GET['goback']);
if(isset($_POST) && isset($_POST['updateSubmit'])){
if (! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'ips-pedit_'.$xyz_ips_snippetId )) {
wp_nonce_ays( 'ips-pedit_'.$xyz_ips_snippetId );
exit;
}
$goback=intval($_POST['goback']);
$goback++;
$_POST = stripslashes_deep($_POST);
$_POST = xyz_trim_deep($_POST);
$xyz_ips_snippetId = intval($_GET['snippetId']);
$temp_xyz_ips_title = str_replace(' ', '', $_POST['snippetTitle']);
$temp_xyz_ips_title = str_replace('-', '', $temp_xyz_ips_title);
$xyz_ips_title = str_replace(' ', '-', $_POST['snippetTitle']);
$xyz_ips_content = $_POST['snippetContent'];
if(get_option('xyz_ips_auto_insert')==1){
$xyz_ips_content_start='<?php';
$new_line="\r\n";
$xyz_ips_content_end='?>';
if (stripos($xyz_ips_content, '<?php') !== false)
$tag_start_position=stripos($xyz_ips_content,'<?php');
else
$tag_start_position="-1";
if (stripos($xyz_ips_content, '?>') !== false)
$tag_end_position=stripos($xyz_ips_content,'?>');
else
$tag_end_position="-1";
if(stripos($xyz_ips_content, '<?php') === false && stripos($xyz_ips_content, '?>') === false)
{
$xyz_ips_content=$xyz_ips_content_start.$new_line.$xyz_ips_content;
}
else if(stripos($xyz_ips_content, '<?php') !== false)
{
if($tag_start_position>=0 && $tag_end_position>=0 && $tag_start_position>$tag_end_position)
{
$xyz_ips_content=$xyz_ips_content_start.$new_line.$xyz_ips_content;
}
}
else if(stripos($xyz_ips_content, '<?php') === false)
{
if (stripos($xyz_ips_content, '?>') !== false)
{
$xyz_ips_content=$xyz_ips_content_start.$new_line.$xyz_ips_content;
}
}
}
if($xyz_ips_title != "" && $xyz_ips_content != ""){
if(ctype_alnum($temp_xyz_ips_title)){
$snippet_count = $wpdb->query($wpdb->prepare( 'SELECT * FROM '.$wpdb->prefix.'xyz_ips_short_code WHERE id!=%d AND title=%s LIMIT 0,1',$xyz_ips_snippetId,$xyz_ips_title)) ;
if($snippet_count == 0){
$xyz_shortCode = '[xyz-ips snippet="'.$xyz_ips_title.'"]';
$wpdb->update($wpdb->prefix.'xyz_ips_short_code', array('title'=>$xyz_ips_title,'content'=>$xyz_ips_content,'short_code'=>$xyz_shortCode,), array('id'=>$xyz_ips_snippetId));
header("Location:".admin_url('admin.php?page=insert-php-code-snippet-manage&action=snippet-edit&snippetId='.$xyz_ips_snippetId.'&xyz_ips_msg=1'.'&goback='.$goback));
}
else{
?>
<div class="xyz_system_notice_area_style0" id="xyz_system_notice_area">
PHP Snippet already exists.
<span id="xyz_system_notice_area_dismiss">Dismiss</span>
</div>
<?php
}
}
else{
?>
<div class="xyz_system_notice_area_style0" id="xyz_system_notice_area">
PHP Snippet title can have only alphabets,numbers or hyphen.
<span id="xyz_system_notice_area_dismiss">Dismiss</span>
</div>
<?php
}
}
else{
?>
<div class="xyz_system_notice_area_style0" id="xyz_system_notice_area">
Fill all mandatory fields.
<span id="xyz_system_notice_area_dismiss">Dismiss</span>
</div>
<?php
}
}
global $wpdb;
$snippetDetails = $wpdb->get_results($wpdb->prepare( 'SELECT * FROM '.$wpdb->prefix.'xyz_ips_short_code WHERE id=%d LIMIT 0,1',$xyz_ips_snippetId )) ;
$snippetDetails = $snippetDetails[0];
?>
<div >
<fieldset
style="width: 99%; border: 1px solid #F7F7F7; padding: 10px 0px;">
<legend>
<b>
Edit PHP Snippet
</b>
</legend>
<form name="frmmainForm" id="frmmainForm" method="post">
<?php wp_nonce_field( 'ips-pedit_'.$xyz_ips_snippetId ); ?>
<input type="hidden" id="snippetId" name="snippetId"
value="
<?php if(isset($_POST['snippetId'])){ echo esc_attr($_POST['snippetId']);}else{ echo esc_attr($snippetDetails->id); }?>">
<div>
<input type="hidden" name="goback" value= <?php echo $goback;?>>
<table
style="width: 99%; background-color: #F9F9F9; border: 1px solid #E4E4E4; border-width: 1px;margin: 0 auto">
<tr>
<td>
<br/>
<div id="shortCode">
</div>
<br/>
</td>
</tr>
<tr valign="top">
<td style="border-bottom: none;width:20%;">
Tracking Name
<font color="red">
*
</font>
</td>
<td style="border-bottom: none;width:1px;">
:
</td>
<td>
<input style="width:80%;"
type="text" name="snippetTitle" id="snippetTitle"
value="<?php if(isset($_POST['snippetTitle'])){ echo esc_attr($_POST['snippetTitle']);}else{ echo esc_attr($snippetDetails->title); }?>">
</td>
</tr>
<tr>
<td style="border-bottom: none;width:20%; ">
<?php
if(get_option('xyz_ips_auto_insert')==1){
?>
PHP code
<?php
}
else{
?>
PHP code (without <?php ?>)
<?php
}
?>
<font color="red">
*
</font>
</td>
<td style="border-bottom: none;width:1px;">
:
</td>
<td >
<textarea name="snippetContent" style="width:80%;height:150px;"><?php if(isset($_POST['snippetContent'])){ echo esc_textarea($_POST['snippetContent']);}else{ echo esc_textarea($snippetDetails->content); }?></textarea>
</td>
</tr>
<tr>
<td>
</td>
<td>
<input class="button-primary" style="cursor: pointer;" type="button" name="back" onclick=" window.history.go(-<?php echo $goback;?>);" value="Back" >
</td>
<td>
<input class="button-primary" style="cursor: pointer;"
type="submit" name="updateSubmit" value="Update">
</td>
</tr>
<tr>
<td>
<br/>
</td>
</tr>
</table>
</div>
</form>
</fieldset>
</div>