| Server IP : 162.214.74.102 / Your IP : 216.73.217.114 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/team/application/views/backend/admin/ |
Upload File : |
<table class="table table-bordered datatable" id="table_export">
<thead>
<tr>
<th style="width:30px;">
</th>
<th><div><?php echo get_phrase('name');?></div></th>
<th><div><?php echo get_phrase('permissions');?></div></th>
<th><div><?php echo get_phrase('number_of_staff');?></div></th>
<th><div><?php echo get_phrase('options');?></div></th>
</tr>
</thead>
<tbody>
<?php
$counter = 1;
$this->db->order_by('account_role_id' , 'desc');
$account_roles = $this->db->get('account_role' )->result_array();
foreach($account_roles as $row):
?>
<tr>
<td style="width:30px;" align="center">
<?php echo $counter++;?>
</td>
<td><?php echo $row['name'];?></td>
<td>
<?php
$permission_array = ( explode(',' , $row['account_permissions']));
for($i = 0 ; $i<count($permission_array)-1; $i++)
{
echo '<span class="badge "> ';
echo $this->db->get_where('account_permission',
array('account_permission_id'=>$permission_array[$i]))->row()->name;
echo "</span><br>";
}
?>
</td>
<td><?php echo $this->db->get_where('staff',array('account_role_id'=>$row['account_role_id']))->num_rows();?></td>
<td>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-default pull-right" role="menu">
<!-- EDITING LINK -->
<li>
<a href="#" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/account_role_edit/<?php echo $row['account_role_id'];?>');">
<i class="entypo-pencil"></i>
<?php echo get_phrase('edit');?>
</a>
</li>
<li class="divider"></li>
<!-- DELETION LINK -->
<li>
<a href="#" onclick="confirm_modal('<?php echo base_url();?>index.php?admin/account_role/delete/<?php echo $row['account_role_id'];?>' , '<?php echo base_url();?>index.php?admin/reload_account_role_list');" >
<i class="entypo-trash"></i>
<?php echo get_phrase('delete');?>
</a>
</li>
</ul>
</div>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<!-- calling ajax form submission plugin for specific form -->
<script src="assets/js/ajax-form-submission.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($)
{
//convert all checkboxes before converting datatable
replaceCheckboxes();
var datatable = $("#table_export").dataTable({
"sPaginationType": "bootstrap",
"aoColumns": [
{ "bSortable": false },
null,
null,
null,
null
],
});
// Highlighted rows
$("#table_export tbody input[type=checkbox]").each(function(i, el)
{
var $this = $(el),
$p = $this.closest('tr');
$(el).on('change', function()
{
var is_checked = $this.is(':checked');
$p[is_checked ? 'addClass' : 'removeClass']('highlight');
});
});
//customize the select menu
$(".dataTables_wrapper select").select2({
minimumResultsForSearch: -1
});
});
</script>