
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include '../includes/settings/constant.php';
require_once '../includes/settings/PDODB.php';
include '../includes/modules/functions.php';
$function = new FUNCTIONS();
if (!empty($_SESSION['adminId']) && !empty($_SESSION['admin_role_id'])) {
if($_SESSION['admin_role_id']==1){
//header("Location: index.php");
}elseif($_SESSION['admin_role_id']==2){
header("Location: ../dashboard/index.php");
}
}else{
header("Location: ../index.php");
exit();
}
$discountperiod = $function->getDiscountPeriod($id=NULL,$date_to=NULL,$date_from=NULL);
//print_r($discountperiod); exit;
if(isset($_POST['acsearch'])){
//print_r($_POST); exit;
$date_from = !empty($_POST['date_from'])?$_POST['date_from']:"";
$date_to = !empty($_POST['date_to'])?$_POST['date_to']:"";
$date_from =date('Y-m-d', strtotime($date_from));
$date_to =date('Y-m-d', strtotime($date_to));
$pdodb = PDODB::getInstance();
$sql = "UPDATE discount_period SET date_from = '".$date_from."', date_to = '".$date_to."'";
$result = $pdodb->query($sql);
PDODB::closeInstance();
if(!empty($result)){
echo '<script type="text/javascript">location.replace("index.php");</script>';
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RWA | Sector 40</title>
<?php include_once '../layout/style.php'; ?>
</head>
<body>
<div id="wrapper">
<?php include_once '../layout/side-bar.php'; ?>
<div id="page-wrapper" class="gray-bg">
<?php include_once '../layout/header.php'; ?>
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-sm-12">
<h2>Dashboard</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-content">
<form method="POST" action="">
<div class="form-group" id="data_5">
<label class="font-noraml">Range select</label>
<div class="input-daterange input-group" id="datepicker">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
<input type="text" class="input-sm form-control" id="date_to" name="date_to" value="<?=date('m/j/Y', strtotime($discountperiod[0]['date_to']));?>"/>
<span class="input-group-addon">to</span>
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
<input type="text" class="input-sm form-control" id="date_from" name="date_from" value="<?=date('m/j/Y', strtotime($discountperiod[0]['date_from']));?>" />
</div>
<div class="form-group" style="margin-top: 10px;">
<button class="btn btn-sm btn-primary" name="acsearch" id="acsearch">Update</button>
<a href="" class="btn btn-sm btn-primary">Clear</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include_once '../layout/script.php'; ?>
<script type="text/javascript">
$('#data_5 .input-daterange').datepicker({
keyboardNavigation: false,
forceParse: false,
autoclose: true
});
</script>
<script>
function tossterMsgAlert(msg='Welcome',title='') {
toastr.options = {
closeButton: true,
//debug: false,
newestOnTop: false,
//progressBar: false,
positionClass: 'toast-top-center',
preventDuplicates: true,
//onclick: null,
//showDuration: 300,
//hideDuration: 1000,
timeOut: 2000,
//extendedTimeOut: 1000,
//showEasing: 'swing',
//hideEasing: 'linear',
//showMethod: 'fadeIn',
hideMethod: 'fadeOut'
};
toastr.warning(title,msg);
}
</script>
<!-- Page-Level Scripts -->
<script>
$(document).ready(function(){
$('.dataTables-example').DataTable({
dom: '<"html5buttons"B>lTfgitp',
columnDefs: [
{ type: "num-fmt", symbols:"R$" , targets: 4 }
],
buttons: [
{ extend: 'copy'},
{extend: 'csv'},
/*{extend: 'excel', title: 'ExampleFile'},
{extend: 'pdf', title: 'ExampleFile'},*/
/*{extend: 'print',
customize: function (win){
$(win.document.body).addClass('white-bg');
$(win.document.body).css('font-size', '10px');
$(win.document.body).find('table')
.addClass('compact')
.css('font-size', 'inherit');
}
}*/
]
});
});
</script>
</body>
</html>


PK 99