D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
skyconb
/
adminyacine
/
Filename :
notification.php
back
Copy
<?php include_once('includes/header.php'); ?> <?php error_reporting(0); if (isset($_REQUEST['keyword']) && $_REQUEST['keyword']<>"") { $keyword = $_REQUEST['keyword']; $reload = "notification.php"; $sql = "SELECT * FROM tbl_fcm_template WHERE title LIKE '%$keyword%'"; $result = $connect->query($sql); } else { $reload = "notification.php"; $sql = "SELECT * FROM tbl_fcm_template ORDER BY id DESC"; $result = $connect->query($sql); } $rpp = $postPerPage; $page = intval($_GET["page"]); if($page <= 0) $page = 1; $tcount = mysqli_num_rows($result); $tpages = ($tcount) ? ceil($tcount / $rpp) : 1; $count = 0; $i = ($page-1) * $rpp; $no_urut = ($page-1) * $rpp; ?> <section class="content"> <ol class="breadcrumb"> <li><a href="dashboard.php">Dashboard</a></li> <li class="active">Manage Notification</a></li> </ol> <div class="container-fluid"> <div class="row clearfix"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="card corner-radius"> <div class="header"> <h2>MANAGE NOTIFICATION</h2> <div class="header-dropdown m-r--5"> <a href="notification-add.php"><button type="button" class="button button-rounded btn-offset waves-effect waves-float">ADD NEW NOTIFICATION</button></a> </div> </div> <div style="margin-top: -10px;" class="body table-responsive"> <?php if(isset($_SESSION['msg'])) { ?> <div class='alert alert-info alert-dismissible corner-radius bottom-offset' role='alert'> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span> </button> <?php echo $_SESSION['msg']; ?> </div> <?php unset($_SESSION['msg']); } ?> <form method="get" id="form_validation"> <table class='table'> <tr> <td> <div class="form-group form-float"> <div class="form-line"> <input type="text" class="form-control" name="keyword" placeholder="Search..." required> </div> </div> </td> <td width="1%"><a href="notification.php"><button type="button" class="button button-rounded waves-effect waves-float">RESET</button></a></td> <td width="1%"><button type="submit" class="btn bg-blue btn-circle waves-effect waves-circle waves-float"><i class="material-icons">search</i></button></td> </tr> </table> </form> <?php if ($tcount == 0) { ?> <p align="center" style="font-size: 110%;">There are no notification templates.</p> <?php } else { ?> <table class='table table-hover table-striped table-offset'> <thead> <tr> <th width="15%">Title</th> <th width="10%">Image</th> <th width="30%">Message</th> <th width="30%">Url</th> <th width="15%">Action</th> </tr> </thead> <?php while(($count < $rpp) && ($i < $tcount)) { mysqli_data_seek($result, $i); $data = mysqli_fetch_array($result); ?> <tr> <td style="vertical-align: middle;"><?php echo $data['title'];?></td> <td style="vertical-align: middle;"><img style="object-fit:cover;" src="upload/notification/<?php echo $data['image']; ?>" width="72" height="48"/></td> <td style="vertical-align: middle;"><?php echo $data['message'];?></td> <td style="vertical-align: middle;"> <?php if ($data['link'] == '') { ?> none <?php } else { ?> <?php $value = $data['link']; if (strlen($value) > 50) $value = substr($value, 0, 47) . '...'; echo $value; ?> <?php } ?> </td> <td style="vertical-align: middle;"> <a href="notification-send.php?id=<?php echo $data['id'];?>"> <i class="material-icons">notifications_active</i> </a> <a href="notification-edit.php?id=<?php echo $data['id'];?>"> <i class="material-icons">mode_edit</i> </a> <a href="notification-delete.php?id=<?php echo $data['id'];?>" onclick="return confirm('Are you sure want to delete this notification?')"> <i class="material-icons">delete</i> </a> </td> </tr> <?php $i++; $count++; } ?> </table> <?php } ?> <?php if ($tcount > $postPerPage) { echo pagination($reload, $page, $keyword, $tpages); } ?> </div> </div> </div> </div> </div> </section> <?php include_once('includes/footer.php'); ?>