| Server IP : 91.108.98.93 / Your IP :
216.73.216.109 [
Web Server : LiteSpeed System : Linux nl-srv-web1124.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u964240598 ( 964240598) PHP Version : 8.4.19 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u964240598/domains/hofam.org/public_html/churchapp/application/views/inbox/ |
Upload File : |
<section class="content">
<!-- Page content-->
<div class="container-fluid">
<div class="block-header">
<h2>Inbox Messages</h2>
</div>
<!-- Exportable Table -->
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="body">
<?php
$this->load->helper('form');
$error = $this->session->flashdata('error');
if($error)
{
?>
<div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<?php echo $error; ?>
</div>
<?php }
$success = $this->session->flashdata('success');
if($success)
{
?>
<div class="alert alert-success alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<?php echo $success; ?>
</div>
<?php } ?>
<div style="overflow-x:auto;">
<table id="categories-table" class="table table-responsive table-bordered table-striped table-hover exportable">
<thead>
<tr>
<th>Id</th>
<th>Title</th>
<th>Date</th>
<th class="text-center">Actions</th>
</tr>
</thead>
<tbody>
<?php
$count=1;
forEach($inbox as $record){
?>
<tr>
<td><?php echo $count; ?></td>
<td><?php echo $record->title; ?></td>
<td><?php echo date("D M j Y G:i:s", $record->date); ?></td>
<td class="text-center">
<div class="btn-group btn-group-sm" style="float: none;">
<a href="<?php echo site_url().'editInbox/'.$record->id; ?>" type="button" class="btn btn-primary btn-lg m-l-15 waves-effect" style="float: none;">
<i style="margin-bottom:5px;" class="material-icons list-icon" data-id="<?php echo $record->id; ?>">create</i>
</a>
<button onclick="delete_item(event)" data-type="inbox" data-id="<?php echo $record->id; ?>" type="button" class="btn btn-danger btn-lg m-l-15 waves-effect" style="float: none;">
<i style="color:white;margin-bottom:5px;" class="material-icons list-icon" data-type="inbox" data-id="<?php echo $record->id; ?>">delete</i>
</button>
</div>
</td>
</tr>
<?php $count++;}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
Anon7 - 2022
AnonSec Team
