
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();
}
//print_r($to); exit;
if(isset($_POST['btnSendnotification']) && !empty($_POST)){
$error_msg='';
//print_r($_POST); exit;
$title = !empty($_POST['title'])?trim($_POST['title']):"";
$title = htmlentities($title, ENT_QUOTES);
$message = !empty($_POST['message'])?trim($_POST['message']):"";
$message = htmlentities($message, ENT_QUOTES);
$pdodb = PDODB::getInstance();
//echo "cmdm"; exit;
$sql = "INSERT INTO `notifications` SET name='".$title."',message='".$message."', status='unread'";
//print_r($sql); exit;
$result = $pdodb->query($sql);
//print_r($result); exit;
PDODB::closeInstance();
if($result) {
$error_msg= "Notification send successfully.";
}else{
$error_msg= "Not sent";
}
}
?>
<!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 $currentPage = 'send-notification'; 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-6">
<h2>Send Notification</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-title back-change">
<?php if (!empty($error_msg)) { ?>
<div class="alert alert-success" id="alert-success">
<a href="#" class="close" data-dismiss="alert" aria-label="close" title="close">×</a>
<strong><?=$error_msg;?></strong>
</div>
<?php } ?>
</div>
<div class="ibox-content">
<div class="row">
<form method="POST" action="" enctype="multipart/form-data" id="sendMail">
<div class="col-sm-6 b-r">
<div class="form-group"><label>Title</label> <input type="text" name="title" id="title" class="form-control">
</div>
<div class="form-group"><label>Description</label>
<textarea name="message" id="message" class="tinymce"></textarea>
</div>
<div>
<button class="btn btn-sm btn-primary pull-right m-t-n-xs" name="btnSendnotification" id="btnSendnotification" type="submit"><strong>Send</strong></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include_once '../layout/script.php'; ?>
<script type="text/javascript" src="../js/plugins/tinymce/tinymce.min.js"></script>
<script type="text/javascript" src="../js/plugins/tinymce/init-tinymce.js"></script>
<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 type="text/javascript">
$("#sendMail").validate({
rules: {
title: {
required: true
},
message: {
required: true
}
},
messages: {
title: {
required: "Email title"
},
message: {
required: "Please enter the description"
}
},
submitHandler: function(form) {
form.submit();
}
});
</script>
<script>
// Add the following code if you want the name of the file appear on select
$(".custom-file-input").on("change", function() {
var fileName = $(this).val().split("\\").pop();
$(this).siblings(".custom-file-label").addClass("selected").html(fileName);
});
</script>
<script type="text/javascript">
setTimeout(function () {
// Closing the alert
$('#alert-success').alert('close');
}, 5000);
</script>
</body>
</html>


PK 99