vtigerossez/modules/Users/RolePopup.php

160 lines
5.3 KiB
PHP

<?php
/*+*******************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
********************************************************************************/
require_once('include/utils/UserInfoUtil.php');
require_once('Smarty_setup.php');
$smarty = new vtigerCRM_Smarty;
global $mod_strings;
global $app_strings;
global $app_list_strings;
global $adb;
global $theme;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
//Retreiving the hierarchy
$hquery = "select * from vtiger_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 vtiger_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 vtiger_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 .= '<img src="' . vtiger_imageurl('minus.gif', $theme) . '" id="img_'.$roleid.'" border="0" alt="'.$app_strings['LBL_EXPAND_COLLAPSE'].'" title="'.$app_strings['LBL_EXPAND_COLLAPSE'].'" align="absmiddle" onClick="showhide(\''.$roleid_arr.'\',\'img_'.$roleid.'\')" style="cursor:pointer;">';
}
else if($roledepth != 0){
$roleout .= '<img src="' . vtiger_imageurl('vtigerDevDocs.gif', $theme) . '" id="img_'.$roleid.'" border="0" alt="'.$app_strings['LBL_EXPAND_COLLAPSE'].'" title="'.$app_strings['LBL_EXPAND_COLLAPSE'].'" align="absmiddle">';
}
else
{
$roleout .= '<img src="' . vtiger_imageurl('menu_root.gif', $theme) .'" id="img_'.$roleid.'" border="0" alt="'.$app_strings['LBL_ROOT'].'" title="'.$app_strings['LBL_ROOT'].'" align="absmiddle">';
}
if($roledepth == 0 || in_array($roleid,$mask_roleid))
{
$roleout .= '&nbsp;<b class="genHeaderGray">'.$rolename.'</b>';
}
else
{
$type =$_REQUEST['type'];
if($type == '')
{
$roleout .= '&nbsp;<a href="javascript:loadValue(\'user_'.$roleid.'\',\''.$roleid.'\');" class="x" id="user_'.$roleid.'">'.$rolename.'</a>';
}
else
{
$picklist_module = vtlib_purify($_REQUEST['picklistmodule']);
$picklist_fieldname = vtlib_purify($_REQUEST['pick_fieldname']);
$picklist_uitype = vtlib_purify($_REQUEST['pick_uitype']);
$roleout .= '&nbsp;<a href="index.php?action=SettingsAjax&module=Settings&mode=edit&file=EditComboField&fld_module='.$picklist_module.'&fieldname='.$picklist_fieldname.'&parentroleid='.$roleid.'&uitype='.$picklist_uitype.'" 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_path);
$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");
?>