Files
2022-06-30 05:46:02 -04:00

358 lines
15 KiB
PHP
Executable File

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2020*/
?>
<div class="tab-content mx-4" id="nav-tabContent">
<br>
<div class="clear"></div>
<?php if (strlen($error) > 0) : ?>
<div class="row">
<div class="col-md-12">
<div class="alert alert-danger" role="alert">
<?php echo $error; ?>
</div>
</div>
</div>
<?php endif; ?>
<?php if (strlen($success) > 0) : ?>
<div class="row">
<div class="col-md-12">
<div class="alert alert-success" role="success">
<?php echo $success; ?>
</div>
</div>
</div>
<?php endif; ?>
<section>
<div class="row filter-section">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="card" id="test_image_filter_listing">
<div class="card-body">
<h5 class="primaryHeading2 text-md-left">
<?php echo $view_model->get_heading();?> Search
</h5>
<?= form_open('/admin/test_image/0', ['method' => 'get']) ?>
<div class="row">
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12">
<div class="form-group">
<label for="Created At">Created At </label>
<input type="date" class="form-control" id="created_at" name="created_at" value="<?php echo $this->_data['view_model']->get_created_at();?>"/>
</div>
</div>
<input type="hidden" name="order_by" value="<?php echo $view_model->get_order_by();?>"/>
<input type="hidden" name="direction" value="<?php echo $view_model->get_sort();?>"/>
<div style="width:100%;height:10px;display:block;float:none;"></div>
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12">
<div class="form-group">
<input type="hidden" id="form_per_page" value="<?php echo $this->_data['view_model']->get_per_page() ?>" name="per_page_sort">
<input type="submit" name="submit" class="btn btn-primary" value="Search">
<a class="btn btn-danger" name="submit" type="button" href="<?php echo $view_model->get_sort_base_url().'?order_by=id&direction=DESC&per_page_sort='.$this->_data['view_model']->get_per_page(); ?>">Clear Search</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<h5 class="primaryHeading2 d-flex justify-content-between mt-2 my-4">
<?php echo $view_model->get_heading();?>
<span class="add-part d-flex justify-content-md-end text-white "><a class="btn btn-primary btn-sm" target="__blank" href="/admin/test_image/add"><i class="fas fa-plus-circle"></i></a></span>
</h5>
<section class="table-placeholder bg-white mb-5 p-3 pl-4 pr-4 pt-4" style="height:auto;">
<div class="table-responsive">
<div class="row">
<form id="bulk_delete_form" class="col">
<div class="col-xl-12 col-lg-6 col-md-6 col-sm-12 col-12 row">
<div class="form-group col-md-4" style="margin-left: -15px;">
<select id="bulk_option" class="form-control" style="font-size: 14px;">
<option value="">Bulk Actions</option>
<option value="1">Delete</option>
</select>
</div>
<div class="col-md-3" style="margin-left: -18px;">
<input type="submit" name="submit" class="btn btn-primary btn-lg" value="Apply" style="border-radius: 0.25rem;padding: 8px;font-size: 13px;">
</div>
</div>
</form>
<div class="col p-2">
<div class="float-right mr-1"></div>
</div>
<div class="clearfix"></div>
</div>
<input type="hidden" id="per_page" value="<?php echo $this->_data['view_model']->get_per_page(); ?>" >
<input type="hidden" id="per_page" value="<?php echo $this->_data['view_model']->get_per_page(); ?>" >
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="dataTables_length" id="config-table_length">
<small class="d-flex align-items-baseline">Show
<select data-sorturl="<?php echo $view_model->get_sort_base_url(); ?>" id="change_per_page" name="config-table_length" aria-controls="config-table" class="form-control form-control-sm mx-2" style="width: auto;margin-bottom: 10px;">
<?php if(isset($_GET['per_page_sort'])) { ?>
<option value="10" <?php echo ($_GET['per_page_sort'] == '5' && $_GET['per_page_sort']) ? 'selected' : '';?>>5</option>
<option value="10" <?php echo ($_GET['per_page_sort'] == '10' && $_GET['per_page_sort']) ? 'selected' : '';?>>10</option>
<option value="25" <?php echo ($_GET['per_page_sort'] == '25' && $_GET['per_page_sort']) ? 'selected' : '';?>>25</option>
<option value="50" <?php echo ($_GET['per_page_sort'] == '50' && $_GET['per_page_sort']) ? 'selected' : '';?>>50</option>
<option value="100" <?php echo ($_GET['per_page_sort'] == '100' && $_GET['per_page_sort']) ? 'selected' : '';?>>100</option>
<?php } else { ?>
<option value="10" <?php echo ($this->_data['view_model']->get_per_page() == '10' && $this->_data['view_model']->get_per_page()) ? 'selected' : '';?>>10</option>
<option value="25" <?php echo ($this->_data['view_model']->get_per_page() == '25' && $this->_data['view_model']->get_per_page()) ? 'selected' : '';?>>25</option>
<option value="50" <?php echo ($this->_data['view_model']->get_per_page() == '50' && $this->_data['view_model']->get_per_page()) ? 'selected' : '';?>>50</option>
<option value="100" <?php echo ($this->_data['view_model']->get_per_page() == '100' && $this->_data['view_model']->get_per_page()) ? 'selected' : '';?>>100</option>
<?php } ?>
</select>
entries</small>
</div>
</div>
</div>
<table class="display nowrap table table-hover table-striped table-bordered w-100 table-compact mb-0 mkd-table-container">
<thead class=''>
<th scope="col" class="paragraphText text-left"><input type="checkbox" id="page_no" name="page_no" value="<?php echo $this->_data['view_model']->get_page(); ?>" ></th>
<?php
$order_by = $view_model->get_order_by();
$direction = $view_model->get_sort();
$model_base_url = $view_model->get_sort_base_url();
$field_column = $view_model->get_field_column();
$clean_mode = $view_model->get_format_layout();
$query_string = $view_model->get_query_parameter();
$per_page = $this->_data['view_model']->get_per_page();
$format_mode = '';
if ($clean_mode) {
$format_mode = '&layout_clean_mode=1';
}
foreach ($view_model->get_column() as $key => $data) {
$data_field = $field_column[$key];
if (strlen($order_by) < 1 || $data_field == '')
{
echo "<th scope='col' class='paragraphText text-center'>{$data}</th>";
}
else
{
if ($order_by === $data_field)
{
if ($direction == 'ASC')
{
echo "<th scope='col' class='paragraphText text-center theme-sort sort-asc'><a href='{$model_base_url}?order_by={$data_field}{$format_mode}&direction=DESC{$query_string}'>{$data}</a></th>";
}
else
{
echo "<th scope='col' class='paragraphText text-center theme-sort sort-desc'><a href='{$model_base_url}?order_by={$data_field}{$format_mode}&direction=ASC{$query_string}'>{$data}</a></th>";
}
}
else
{
echo "<th scope='col' class='paragraphText text-center theme-sort'><a href='{$model_base_url}?order_by={$data_field}{$format_mode}&direction=ASC{$query_string}'>{$data}</a></th>";
}
}
} ?>
</thead>
<tbody class="tbody-light">
<?php $i=1; foreach ($view_model->get_list() as $data) { ?>
<?php
echo '<tr>';
echo "<td><input type='checkbox' class='row_item_checkbbox' id='sn_{$i}' name='item_id' value='{$data->id}' ></td>";
echo '<td style=\'max-width: 100px;\'>';
echo '<a class="btn-link link-underline text-underline" target="__blank" href="/admin/test_image/edit/' . $data->id . '">Edit</a>';
echo '</td>'; echo "<td>{$data->id}</td>";
echo "<td>" . date('F d Y', strtotime($data->created_at)) . "</td>";
echo '</tr>';
?>
<?php $i++; } ?>
</tbody>
</table>
<small><?php echo $view_model->get_total_rows();?> results found</small>
<span class="pagination_custom">
<?php echo $view_model->get_links(); ?>
</span>
</div>
</section>
</div>
<?php
if ($layout_clean_mode) {
echo '<style>#content{padding:0px !important;}</style>';
echo '<style>.filter-section {display: none !important;}</style>';
echo '<style>#tab-content{padding:0px !important; margin:0px !important;}</style>';
}
?>
<!-- delete modal -->
<div class="modal fade" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="deleteModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="deleteModalLabel">Delete <?php echo $view_model->get_heading();?></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<p>Are you sure you want to delete?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary text-white close_btn" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-danger delete_confirm_btn">Confirm</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script>
$(document).ready(function() {
$(".remove_link").click(function(e) {
// console.log('remove btn clicked');
e.preventDefault();
$('#deleteModal').modal('show');
var id = e.currentTarget.getAttribute('data-id');
if (id != 0 || id != '') {
$(".delete_confirm_btn").click(function(e) {
e.preventDefault();
$('.delete_confirm_btn').prop('disabled',true);
$('.close_btn').prop('disabled',true);
// toastr.info(id);
// return false;
$.ajax({
url: '/v1/api/admin/test_image/delete',
type: "POST",
data: { id: id },
dataType: 'JSON',
success: function (response) {
if (response.success) {
toastr.options.timeOut = 1500;
toastr.options.fadeOut = 1500;
toastr.options.onHidden = function() {
location.reload();
}
toastr.success(response.msg);
}
if (response.error) {
toastr.options.timeOut = 1500;
toastr.options.fadeOut = 1500;
toastr.options.onHidden = function() {
location.reload();
}
toastr.error(response.msg);
}
},
});
return false;
});
} else {
toastr.error('Data not found.');
return false;
}
});
});
</script>
<script type="text/javascript">
jQuery("#page_no").change(function()
{
checked = jQuery("#page_no").is(":checked");
setCheckboxes(checked);
});
function setCheckboxes(checked)
{
per_page = jQuery("#per_page").val();
if(checked)
{
page_no = jQuery("#page_no").val();
// alert(page_no);
if(page_no == "")
{
page_no = 0;
}
page_no = parseInt(page_no);
page_limit = page_no + per_page;
for(i=page_no+1; i<= page_limit; i++)
{
jQuery("#sn_"+i).prop("checked", true);
}
}else{
page_no = jQuery("#page_no").val();
if(page_no == "")
{
page_no = 0;
}
page_limit = page_no + per_page;
for(i=page_no; i<= page_limit; i++)
{
jQuery("#sn_"+i).prop("checked", false);
}
}
}
jQuery("#bulk_delete_form").submit(function(e)
{
e.preventDefault();
bulk_option = jQuery("#bulk_option").val();
if(bulk_option == "1")
{
deleteChecked()
}
else
{
alert("Please select delete option."); return false;
}
})
function deleteChecked() {
var bulk_items = [];
$.each($("input[name='item_id']:checked"), function(){
bulk_items.push($(this).val());
});
if(bulk_items == ""){
alert("Check at least one data."); return false;
}
var x = confirm("Are you sure you want to delete?");
if (x)
{
$.ajax({
url: "/v1/api/admin/test_image/bulk_delete",
type: "post",
data: { bulk_items: bulk_items },
success: function (result) {
location.reload();
alert("Checked Items Deleted Successfully!");
},
error: function (err) {
alert("error");
}
});
}
else
{
return false;
}
}
</script>