File: /home/jairicem/4pfxclusive.ng/themes/default/admin/views/settings/categories.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<script>
$(document).ready(function () {
oTable = $('#CategoryTable').dataTable({
"aaSorting": [[3, "asc"]],
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "<?= lang('all') ?>"]],
"iDisplayLength": <?= $Settings->rows_per_page ?>,
'bProcessing': true, 'bServerSide': true,
'sAjaxSource': '<?= admin_url('system_settings/getCategories') ?>',
'fnServerData': function (sSource, aoData, fnCallback) {
aoData.push({
"name": "<?= $this->security->get_csrf_token_name() ?>",
"value": "<?= $this->security->get_csrf_hash() ?>"
});
$.ajax({'dataType': 'json', 'type': 'POST', 'url': sSource, 'data': aoData, 'success': fnCallback});
},
"aoColumns": [{"bSortable": false, "mRender": checkbox}, {"bSortable": false, "mRender": img_hl}, null, null, null, null, {"bSortable": false}]
});
});
</script>
<?= admin_form_open('system_settings/category_actions', 'id="action-form"') ?>
<div class="box">
<div class="box-header">
<h2 class="blue"><i class="fa-fw fa fa-folder-open"></i><?= lang('categories'); ?></h2>
<div class="box-icon">
<ul class="btn-tasks">
<li class="dropdown">
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<i class="icon fa fa-tasks tip" data-placement="left" title="<?= lang('actions') ?>"></i>
</a>
<ul class="dropdown-menu pull-right tasks-menus" role="menu" aria-labelledby="dLabel">
<li>
<a href="<?php echo admin_url('system_settings/add_category'); ?>" data-toggle="modal" data-target="#myModal">
<i class="fa fa-plus"></i> <?= lang('add_category') ?>
</a>
</li>
<li>
<a href="<?php echo admin_url('system_settings/import_categories'); ?>" data-toggle="modal" data-target="#myModal">
<i class="fa fa-plus"></i> <?= lang('import_categories') ?>
</a>
</li>
<li>
<a href="#" id="excel" data-action="export_excel">
<i class="fa fa-file-excel-o"></i> <?= lang('export_to_excel') ?>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#" id="delete" data-action="delete">
<i class="fa fa-trash-o"></i> <?= lang('delete_categories') ?>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="box-content">
<div class="row">
<div class="col-lg-12">
<p class="introtext"><?= lang('list_results'); ?></p>
<div class="table-responsive">
<table id="CategoryTable" class="table table-bordered table-hover table-striped reports-table">
<thead>
<tr>
<th style="min-width:30px; width: 30px; text-align: center;">
<input class="checkbox checkth" type="checkbox" name="check"/>
</th>
<th style="min-width:40px; width: 40px; text-align: center;">
<?= lang('image'); ?>
</th>
<th><?= lang('category_code'); ?></th>
<th><?= lang('category_name'); ?></th>
<th><?= lang('slug'); ?></th>
<th><?= lang('parent_category'); ?></th>
<th style="width:100px;"><?= lang('actions'); ?></th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="7" class="dataTables_empty">
<?= lang('loading_data_from_server') ?>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div style="display: none;">
<input type="hidden" name="form_action" value="" id="form_action"/>
<?= form_submit('submit', 'submit', 'id="action-form-submit"') ?>
</div>
<?= form_close() ?>
<script language="javascript">
$(document).ready(function () {
$('#delete').click(function (e) {
e.preventDefault();
$('#form_action').val($(this).attr('data-action'));
$('#action-form-submit').trigger('click');
});
$('#excel').click(function (e) {
e.preventDefault();
$('#form_action').val($(this).attr('data-action'));
$('#action-form-submit').trigger('click');
});
$('#pdf').click(function (e) {
e.preventDefault();
$('#form_action').val($(this).attr('data-action'));
$('#action-form-submit').trigger('click');
});
});
</script>