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.
		
		
		
		
		
			
		
			
				
					
					
						
							188 lines
						
					
					
						
							6.7 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							188 lines
						
					
					
						
							6.7 KiB
						
					
					
				
								<?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/database/PearDatabase.php');
							 | 
						|
								require_once('XTemplate/xtpl.php');
							 | 
						|
								require_once('themes/'.$theme.'/layout_utils.php');
							 | 
						|
								require_once('modules/Users/UserInfoUtil.php');
							 | 
						|
								require_once('include/utils.php');
							 | 
						|
								
							 | 
						|
								global $mod_strings;
							 | 
						|
								global $app_strings;
							 | 
						|
								global $app_list_strings;
							 | 
						|
								
							 | 
						|
								echo '<form action="index.php" method="post" name="new" id="form">';
							 | 
						|
								echo get_module_title("Users", 'Profile Information', true);
							 | 
						|
								
							 | 
						|
								global $adb;
							 | 
						|
								global $theme;
							 | 
						|
								$theme_path="themes/".$theme."/";
							 | 
						|
								$image_path=$theme_path."images/";
							 | 
						|
								require_once($theme_path.'layout_utils.php');
							 | 
						|
								
							 | 
						|
								$profileid = $_REQUEST["profileid"];
							 | 
						|
								//Retreiving the tabs permisson array
							 | 
						|
								$tab_perr_array = getTabsPermission($profileid);
							 | 
						|
								$act_perr_arry = getTabsActionPermission($profileid);
							 | 
						|
								$act_utility_arry = getTabsUtilityActionPermission($profileid);
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								$xtpl=new XTemplate ('modules/Users/ProfileDetailView.html');
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								$standCustFld = getStdOutput($tab_perr_array, $act_perr_arry, $act_utility_arry,$profileid);
							 | 
						|
								
							 | 
						|
								//Standard PickList Fields
							 | 
						|
								function getStdOutput($tab_perr_array, $act_perr_arry, $act_utility_arry,$profileid)
							 | 
						|
								{
							 | 
						|
									global $adb;
							 | 
						|
									$standCustFld= '';
							 | 
						|
									$standCustFld .= '<input type="hidden" name="module" value="Users">';
							 | 
						|
									$standCustFld .= '<input type="hidden" name="profileid" value="'.$profileid.'">';
							 | 
						|
									$standCustFld .= '<input type="hidden" name="action" value="UpdateProfile">';
							 | 
						|
									$standCustFld .= '<BR><BR>';
							 | 
						|
									$standCustFld .= '<table border="0" cellpadding="0" cellspacing="0" width="60%"><tr><td>';
							 | 
						|
									$standCustFld .=  get_form_header("Profile Standard Access Information", "", false );
							 | 
						|
									$standCustFld .= '</td></tr></table>';
							 | 
						|
									$standCustFld .= '<table border="0" cellpadding="0" cellspacing="0" class="FormBorder" width="60%">';
							 | 
						|
									$standCustFld .=  '<tr class="ModuleListTitle" height=20>';
							 | 
						|
									$standCustFld .=  '<td width="" class="moduleListTitle" style="padding:0px 3px 0px 3px;">Entity</td>';
							 | 
						|
									$standCustFld .=  '<td width="" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">Allow</div></td>';
							 | 
						|
									$standCustFld .=  '<td width="" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">Create/Edit</div></td>';
							 | 
						|
									$standCustFld .=  '<td width="" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">Delete</div></td>';
							 | 
						|
									$standCustFld .=  '<td width="" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">View</div></td>';
							 | 
						|
									$standCustFld .=  '</tr>';
							 | 
						|
								
							 | 
						|
									$i = 1;	
							 | 
						|
									foreach($act_perr_arry as $tabid=>$action_array)
							 | 
						|
									{
							 | 
						|
										$entity_name = getTabname($tabid);
							 | 
						|
										//Tab Permission
							 | 
						|
										$tab_allow_per_id = $tab_perr_array[$tabid];
							 | 
						|
										$tab_allow_per = getDisplayOutput($tab_allow_per_id,$tabid,'');
							 | 
						|
										//Create/Edit Permission
							 | 
						|
										$tab_create_per_id = $action_array['1'];
							 | 
						|
										$tab_create_per = getDisplayOutput($tab_create_per_id,$tabid,'1');
							 | 
						|
										//Delete Permission
							 | 
						|
										$tab_delete_per_id = $action_array['2'];
							 | 
						|
										$tab_delete_per = getDisplayOutput($tab_delete_per_id,$tabid,'2');
							 | 
						|
										//View Permission
							 | 
						|
										$tab_view_per_id = $action_array['4'];
							 | 
						|
										$tab_view_per = getDisplayOutput($tab_view_per_id,$tabid,'4');
							 | 
						|
								
							 | 
						|
										if ($i%2==0)
							 | 
						|
										{
							 | 
						|
											$trowclass = 'evenListRow';
							 | 
						|
										}
							 | 
						|
										else
							 | 
						|
										{	
							 | 
						|
											$trowclass = 'oddListRow';
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										$standCustFld .= '<tr class="'.$trowclass.'">';
							 | 
						|
										
							 | 
						|
										$standCustFld .= '<td height="21" style="padding:0px 3px 0px 3px;">'.$entity_name.'</td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_allow_per.'</div></td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_create_per.'</div></td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_delete_per.'</div></td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_view_per.'</div></td>';
							 | 
						|
											
							 | 
						|
										$standCustFld .= '</tr>';
							 | 
						|
										$i++;
							 | 
						|
									}
							 | 
						|
									$standCustFld .='</table>';
							 | 
						|
									//echo $standCustFld;
							 | 
						|
								
							 | 
						|
									$standCustFld .= '<BR>';
							 | 
						|
									$standCustFld .= '<table border="0" cellpadding="0" cellspacing="0" width="60%"><tr><td>';
							 | 
						|
									$standCustFld .=  get_form_header("Profile Utility Access Information", "", false );
							 | 
						|
									$standCustFld .= '</td></tr></table>';
							 | 
						|
									$standCustFld .= '<table border="0" cellpadding="0" cellspacing="0" class="FormBorder" width="60%">';
							 | 
						|
									$standCustFld .=  '<tr class="ModuleListTitle" height=20>';
							 | 
						|
									$standCustFld .=  '<td width="40%" class="moduleListTitle" height="21" style="padding:0px 3px 0px 3px;">Entity</td>';
							 | 
						|
									$standCustFld .=  '<td width="30%" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">Import</div></td>';
							 | 
						|
									$standCustFld .=  '<td width="30%" class="moduleListTitle" style="padding:0px 3px 0px 3px;"><div align="center">Export</div></td>';
							 | 
						|
									$standCustFld .=  '</tr>';
							 | 
						|
								
							 | 
						|
									$i = 1;	
							 | 
						|
									foreach($act_utility_arry as $tabid=>$action_array)
							 | 
						|
									{
							 | 
						|
										$entity_name = getTabname($tabid);
							 | 
						|
										//Import Permission
							 | 
						|
										$tab_import_per_id = $action_array['5'];
							 | 
						|
										$tab_import_per = getDisplayOutput($tab_import_per_id,$tabid,'5');
							 | 
						|
										//Export Permission
							 | 
						|
										$tab_export_per_id = $action_array['6'];
							 | 
						|
										$tab_export_per = getDisplayOutput($tab_export_per_id,$tabid,'6');
							 | 
						|
										
							 | 
						|
										if ($i%2==0)
							 | 
						|
										{
							 | 
						|
											$trowclass = 'evenListRow';
							 | 
						|
										}
							 | 
						|
										else
							 | 
						|
										{	
							 | 
						|
											$trowclass = 'oddListRow';
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										$standCustFld .= '<tr class="'.$trowclass.'">';
							 | 
						|
										
							 | 
						|
										$standCustFld .= '<td height="21" style="padding:0px 3px 0px 3px;">'.$entity_name.'</td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_import_per.'</div></td>';
							 | 
						|
										$standCustFld .= '<td style="padding:0px 3px 0px 3px;"><div align="center">'.$tab_export_per.'</div></td>';
							 | 
						|
											
							 | 
						|
										$standCustFld .= '</tr>';
							 | 
						|
										$i++;
							 | 
						|
									}
							 | 
						|
									$standCustFld .='</table>';
							 | 
						|
									$standCustFld .= '<br><div align="center" style="width:60%"><input title="Edit" accessKey="C" class="button" type="submit" name="Save" value="Save"></div>';
							 | 
						|
									$standCustFld .='</form>';		
							 | 
						|
									return $standCustFld;
							 | 
						|
								}
							 | 
						|
								$xtpl->assign("MOD", $mod_strings);
							 | 
						|
								$xtpl->assign("STANDARDPERMISSIONS", $standCustFld);
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								$xtpl->parse("main");
							 | 
						|
								$xtpl->out("main");
							 | 
						|
								
							 | 
						|
								function getDisplayOutput($id,$tabid,$actionid)
							 | 
						|
								{
							 | 
						|
									if($actionid == '')
							 | 
						|
									{
							 | 
						|
										$name = $tabid.'_tab';
							 | 
						|
									}
							 | 
						|
									else
							 | 
						|
									{
							 | 
						|
										$temp_name = getActionname($actionid);
							 | 
						|
										$name = $tabid.'_'.$temp_name;
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								
							 | 
						|
									if($id == '')
							 | 
						|
									{
							 | 
						|
										$value = '';
							 | 
						|
									}
							 | 
						|
									elseif($id == 0)
							 | 
						|
									{
							 | 
						|
										$value = '<input type="checkbox" name="'.$name.'" checked>'; 
							 | 
						|
									}
							 | 
						|
									elseif($id == 1)
							 | 
						|
									{
							 | 
						|
										$value = '<input type="checkbox" name="'.$name.'">';
							 | 
						|
									}
							 | 
						|
									return $value;
							 | 
						|
										
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								?>
							 | 
						|
								
							 |