You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
5.5 KiB
133 lines
5.5 KiB
<form action="roles.php" method="POST" name="roles">
|
|
<div class="sticky bar">
|
|
<div class="content">
|
|
<div class="pull-left">
|
|
<h2><?php echo __('Roles'); ?></h2>
|
|
</div>
|
|
<div class="pull-right flush-right">
|
|
<a href="roles.php?a=add" class="green button action-button"><i class="icon-plus-sign"></i> <?php
|
|
echo __('Add New Role'); ?></a>
|
|
<span class="action-button" data-dropdown="#action-dropdown-more">
|
|
<i class="icon-caret-down pull-right"></i>
|
|
<span ><i class="icon-cog"></i> <?php echo __('More');?></span>
|
|
</span>
|
|
<div id="action-dropdown-more" class="action-dropdown anchor-right">
|
|
<ul id="actions">
|
|
<li><a class="confirm" data-name="enable" href="roles.php?a=enable">
|
|
<i class="icon-ok-sign icon-fixed-width"></i>
|
|
<?php echo __('Enable'); ?></a></li>
|
|
<li><a class="confirm" data-name="disable" href="roles.php?a=disable">
|
|
<i class="icon-ban-circle icon-fixed-width"></i>
|
|
<?php echo __('Disable'); ?></a></li>
|
|
<li class="danger"><a class="confirm" data-name="delete" href="roles.php?a=delete">
|
|
<i class="icon-trash icon-fixed-width"></i>
|
|
<?php echo __('Delete'); ?></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
$page = ($_GET['p'] && is_numeric($_GET['p'])) ? $_GET['p'] : 1;
|
|
$count = Role::objects()->count();
|
|
$pageNav = new Pagenate($count, $page, PAGE_LIMIT);
|
|
$pageNav->setURL('roles.php');
|
|
$showing=$pageNav->showing().' '._N('role', 'roles', $count);
|
|
|
|
csrf_token(); ?>
|
|
<input type="hidden" name="do" value="mass_process" >
|
|
<input type="hidden" id="action" name="a" value="" >
|
|
<table class="list" border="0" cellspacing="1" cellpadding="0" width="940">
|
|
<thead>
|
|
<tr>
|
|
<th width="4%"> </th>
|
|
<th width="53%"><?php echo __('Name'); ?></th>
|
|
<th width="8%"><?php echo __('Status'); ?></th>
|
|
<th width="15%"><?php echo __('Created On') ?></th>
|
|
<th width="20%"><?php echo __('Last Updated'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach (Role::objects()->order_by('name')
|
|
->limit($pageNav->getLimit())
|
|
->offset($pageNav->getStart()) as $role) {
|
|
$id = $role->getId();
|
|
$sel = false;
|
|
if ($ids && in_array($id, $ids))
|
|
$sel = true; ?>
|
|
<tr>
|
|
<td align="center">
|
|
<?php
|
|
if ($role->isDeleteable()) { ?>
|
|
<input width="7" type="checkbox" class="ckb" name="ids[]"
|
|
value="<?php echo $id; ?>"
|
|
<?php echo $sel?'checked="checked"':''; ?>>
|
|
<?php
|
|
} else {
|
|
echo ' ';
|
|
}
|
|
?>
|
|
</td>
|
|
<td><a href="?id=<?php echo $id; ?>"><?php echo
|
|
$role->getLocal('name'); ?></a></td>
|
|
<td> <?php echo $role->isEnabled() ? __('Active') :
|
|
'<b>'.__('Disabled').'</b>'; ?></td>
|
|
<td><?php echo Format::date($role->getCreateDate()); ?></td>
|
|
<td><?php echo Format::datetime($role->getUpdateDate()); ?></td>
|
|
</tr>
|
|
<?php }
|
|
?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="5">
|
|
<?php if($count){ ?>
|
|
<?php echo __('Select'); ?>:
|
|
<a id="selectAll" href="#ckb"><?php echo __('All'); ?></a>
|
|
<a id="selectNone" href="#ckb"><?php echo __('None'); ?></a>
|
|
<a id="selectToggle" href="#ckb"><?php echo __('Toggle'); ?></a>
|
|
<?php } else {
|
|
echo sprintf(__('No roles defined yet — %s add one %s!'),
|
|
'<a href="roles.php?a=add">','</a>');
|
|
} ?>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<?php
|
|
if ($count) //Show options..
|
|
echo '<div> '.__('Page').':'.$pageNav->getPageLinks().' </div>';
|
|
?>
|
|
</form>
|
|
|
|
<div style="display:none;" class="dialog" id="confirm-action">
|
|
<h3><?php echo __('Please Confirm'); ?></h3>
|
|
<a class="close" href=""><i class="icon-remove-circle"></i></a>
|
|
<hr/>
|
|
<p class="confirm-action" style="display:none;" id="enable-confirm">
|
|
<?php echo sprintf(__('Are you sure want to <b>enable</b> %s?'),
|
|
_N('selected role', 'selected roles', 2));?>
|
|
</p>
|
|
<p class="confirm-action" style="display:none;" id="disable-confirm">
|
|
<?php echo sprintf(__('Are you sure want to <b>disable</b> %s?'),
|
|
_N('selected role', 'selected roles', 2));?>
|
|
</p>
|
|
<p class="confirm-action" style="display:none;" id="delete-confirm">
|
|
<font color="red"><strong><?php echo sprintf(
|
|
__('Are you sure you want to DELETE %s?'),
|
|
_N('selected role', 'selected roles', 2)); ?></strong></font>
|
|
<br><br><?php echo __('Deleted roles CANNOT be recovered.'); ?>
|
|
</p>
|
|
<div><?php echo __('Please confirm to continue.'); ?></div>
|
|
<hr style="margin-top:1em"/>
|
|
<p class="full-width">
|
|
<span class="buttons pull-left">
|
|
<input type="button" value="<?php echo __('No, Cancel'); ?>" class="close">
|
|
</span>
|
|
<span class="buttons pull-right">
|
|
<input type="button" value="<?php echo __('Yes, Do it!'); ?>" class="confirm">
|
|
</span>
|
|
</p>
|
|
<div class="clear"></div>
|
|
</div>
|