mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
146 lines
4.2 KiB
PHP
146 lines
4.2 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
global $current_user;
|
|
|
|
// crmv@184240
|
|
if (!is_admin($current_user)) {
|
|
echo getTranslatedString('LBL_UNAUTHORIZED_ACCESS', 'Users');
|
|
die();
|
|
}
|
|
// crmv@184240e
|
|
|
|
$smarty = new VteSmarty();
|
|
|
|
global $mod_strings, $app_strings, $app_list_strings;
|
|
global $adb, $table_prefix;
|
|
global $theme;
|
|
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
|
|
//Retreiving the hierarchy
|
|
$hquery = "select * from ".$table_prefix."_role order by parentrole asc";
|
|
$hr_res = $adb->pquery($hquery, array());
|
|
$num_rows = $adb->num_rows($hr_res);
|
|
$hrarray= Array();
|
|
|
|
for($l=0; $l<$num_rows; $l++)
|
|
{
|
|
$roleid = $adb->query_result($hr_res,$l,'roleid');
|
|
$parent = $adb->query_result($hr_res,$l,'parentrole');
|
|
$temp_list = explode('::',$parent);
|
|
$size = sizeof($temp_list);
|
|
$i=0;
|
|
$k= Array();
|
|
$y=$hrarray;
|
|
if(sizeof($hrarray) == 0)
|
|
{
|
|
$hrarray[$temp_list[0]]= Array();
|
|
}
|
|
else
|
|
{
|
|
while($i<$size-1)
|
|
{
|
|
$y=$y[$temp_list[$i]];
|
|
$k[$temp_list[$i]] = $y;
|
|
$i++;
|
|
|
|
}
|
|
$y[$roleid] = Array();
|
|
$k[$roleid] = Array();
|
|
|
|
//Reversing the Array
|
|
$rev_temp_list=array_reverse($temp_list);
|
|
$j=0;
|
|
//Now adding this into the main array
|
|
foreach($rev_temp_list as $value)
|
|
{
|
|
if($j == $size-1)
|
|
{
|
|
$hrarray[$value]=$k[$value];
|
|
}
|
|
else
|
|
{
|
|
$k[$rev_temp_list[$j+1]][$value]=$k[$value];
|
|
}
|
|
$j++;
|
|
}
|
|
}
|
|
|
|
}
|
|
//Constructing the Roledetails array
|
|
$role_det = getAllRoleDetails();
|
|
$query = "select * from ".$table_prefix."_role";
|
|
$result = $adb->pquery($query, array());
|
|
$num_rows=$adb->num_rows($result);
|
|
$mask_roleid=Array();
|
|
$del_roleid=$_REQUEST['maskid'];
|
|
if($del_roleid != '' && strlen($del_roleid) >0)
|
|
{
|
|
$mask_roleid= getRoleAndSubordinatesRoleIds($del_roleid);
|
|
}
|
|
$roleout ='';
|
|
$roleout .= indent($hrarray,$roleout,$role_det,$mask_roleid);
|
|
|
|
/** recursive function to construct the role tree ui
|
|
* @param $hrarray -- Hierarchial role tree array with only the roleid:: Type array
|
|
* @param $roleout -- html string ouput of the constucted role tree ui:: Type varchar
|
|
* @param $role_det -- Roledetails array got from calling getAllRoleDetails():: Type array
|
|
* @param $mask_roleid -- role id to be masked from selecting in the tree:: Type integer
|
|
* @returns $role_out -- html string ouput of the constucted role tree ui:: Type string
|
|
*
|
|
*/
|
|
function indent($hrarray,$roleout,$role_det,$mask_roleid='')
|
|
{
|
|
global $theme,$app_strings,$default_charset;
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
foreach($hrarray as $roleid => $value)
|
|
{
|
|
|
|
//retreiving the vte_role details
|
|
$role_det_arr=$role_det[$roleid];
|
|
$roleid_arr=$role_det_arr[2];
|
|
$rolename = htmlentities($role_det_arr[0],ENT_QUOTES,$default_charset);
|
|
$roledepth = $role_det_arr[1];
|
|
$roleout .= '<ul class="uil" id="'.$roleid.'" style="display:block;list-style-type:none;">';
|
|
$roleout .= '<li >';
|
|
|
|
if(sizeof($value) >0 && $roledepth != 0) {
|
|
$roleout .= '<i class="vteicon md-sm md-link valign-bottom" id="img_'.$roleid.'" title="'.$app_strings['LBL_EXPAND_COLLAPSE'].'" onClick="showhide(\''.$roleid_arr.'\',\'img_'.$roleid.'\')" >indeterminate_check_box</i>';
|
|
} elseif($roledepth != 0) {
|
|
$roleout .= '<i class="vteicon md-sm valign-bottom" id="img_'.$roleid.'" title="'.$app_strings['LBL_EXPAND_COLLAPSE'].'">label_outline</i>';
|
|
} else {
|
|
$roleout .= '<i class="vteicon valign-bottom" id="img_'.$roleid.'" title="'.$app_strings['LBL_ROOT'].'">apps</i>';
|
|
}
|
|
|
|
if($roledepth == 0 || in_array($roleid,$mask_roleid))
|
|
{
|
|
$roleout .= ' <b class="genHeaderGray">'.$rolename.'</b>';
|
|
}
|
|
else
|
|
{
|
|
$roleout .= ' <a href="javascript:loadValue(\'user_'.$roleid.'\',\''.$roleid.'\');" class="x" id="user_'.$roleid.'">'.$rolename.'</a>';
|
|
}
|
|
$roleout .= '</li>';
|
|
if(sizeof($value) > 0 )
|
|
{
|
|
$roleout = indent($value,$roleout,$role_det,$mask_roleid);
|
|
}
|
|
|
|
$roleout .= '</ul>';
|
|
|
|
}
|
|
|
|
return $roleout;
|
|
}
|
|
$smarty->assign("THEME", $theme);
|
|
$smarty->assign("IMAGE_PATH",$image_path);
|
|
$smarty->assign("APP", $app_strings);
|
|
$smarty->assign("CMOD", $mod_strings);
|
|
$smarty->assign("ROLETREE", $roleout);
|
|
$smarty->display("RolePopup.tpl"); |