<?php
####################################################################################################
## File : roles.php
## Author : Nils Laumaillé
## Description : Function page
##
## DON'T CHANGE !!!
##
####################################################################################################
//load help
require_once('includes/language/'.$_SESSION['user_language'].'_admin_help.php');
//Get full list of groups
$arr_groups = array();
$rows = $db->fetch_all_array("SELECT id,title FROM ".$pre."nested_tree");
foreach( $rows as $reccord )
$arr_groups[$reccord['id']] = $reccord['title'];
//display
echo '
<div class="title ui-widget-content ui-corner-all">
'.$txt['admin_functions'].'
<img src="includes/images/users--plus.png" title="'.$txt['add_role_tip'].'" onclick="OpenDialog(\'add_new_role\')" style="cursor:pointer;" />
<a onClick="refresh_matrice()"><img src="includes/images/arrow_refresh.png" style="cursor:pointer" title="'.$txt['refresh_matrix'].'" /></a>
<span style="float:right;margin-right:5px;"><img src="includes/images/question-white.png" style="cursor:pointer" title="'.$txt['show_help'].'" onclick="OpenDialog(\'help_on_roles\')" /></span>
</div>
<div style="line-height:20px;" align="center">
<div id="matrice_droits"></div>
</div>
<input type="hidden" id="selected_function" />';
// DIV FOR ADDING A ROLE
echo '
<div id="add_new_role" style="">
<label for="new_function" class="form_label_100">'.$txt['name'].'</label><input type="text" id="new_function" size="40" />
</div>';
// DIV FOR DELETING A ROLE
echo '
<div id="delete_role" style="display:none;">
<div>'.$txt['confirm_del_role'].'</div>
<div style="font-weight:bold;text-align:center;color:#FF8000;text-align:center;font-size:13pt;" id="delete_role_show"></div>
<input type="hidden" id="delete_role_id" />
</div>';
// DIV FOR EDITING A ROLE
echo '
<div id="edit_role" style="display:none;">
<div>'.$txt['confirm_edit_role'].'</div>
<div style="font-weight:bold;text-align:center;color:#FF8000;text-align:center;font-size:13pt;" id="edit_role_show"></div>
<input type="hidden" id="edit_role_id" />
<label for="edit_role_title" class="form_label_100">'.$txt['new_role_title'].'</label><input type="text" id="edit_role_title" size="40" />
</div>';
// DIV FOR HELP
echo '
<div id="help_on_roles">
<div>'.$txt['help_on_roles'].'</div>
</div>';
?>