?
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/application/views/Settings/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/sgms/application/views/Settings/edit_profile.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div class="select-bar"> <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('settings','viewinsettingssearch','search_profile','view_profile','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Updating Profile</span> </div> <fieldset> <?php $designation=$this->mastermodel->getdatas('designation','designation_id'); $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('settings/addinsettings/update_profile/view_profile/1',$attributes);?> <ul> <li> <label for="data">Designation</label> <div class="record_entry"> <?=$this->mastermodel->getSingleFieldValue('designation','designation_name','designation_id',$viewinfo->designation_id);?> </div> </li> <li id="role_permissions"> <table class="sort" align="center" width="100%"> <caption>Permissions</caption> <thead> <tr> <th>Module Name</th> <th><input style="width: 15px;" type="checkbox" id="View_CheckAll" onchange="CheckAllView(this,'View_')">View </th> <th><input style="width: 15px;" type="checkbox" id="Add_CheckAll" onchange="CheckAllView(this,'Add_')">Create </th> <th><input style="width: 15px;" type="checkbox" id="Edit_CheckAll" onchange="CheckAllView(this,'Edit_')">Edit</th> <th><input style="width: 15px;" type="checkbox" id="Delete_CheckAll" onchange="CheckAllView(this,'Delete_')">Delete</th> <th><input style="width: 15px;" type="checkbox" id="Delete_CheckAll" onchange="CheckAllView(this,'Private_','')">Private</th> </tr> </thead> <tbody> <?php $modname=""; $modcheck=""; $cntr=1; $i=1; $modulelist=$this->mastermodel->getmoduledata(); $j=0; $txtname=""; $viewCount=0; $initialPermission=""; $moduleidList=""; $allowed=explode(",",$viewinfo->profile_modules); $edit_del=explode(",",$viewinfo->profile_modules_permission); $isPrivate = explode(",",$viewinfo->profile_modules_private); $privateList=$viewinfo->profile_modules_private; foreach ($modulelist as $menulst) { $menuid=$menulst['menu_id']; $poss=''; for($i=1;$i<sizeof($allowed)+1;$i++) { if($allowed[$i-1]==$menuid) { $poss=$i; } } if($poss!='') { $val=$edit_del[$poss-1]; } else { $val=0; $val1=0; } $a=decbin($val); $d=sprintf('%04u',$a); $ar = str_split($d); $viewCount++; $initialPermission .= "0,"; $moduleidList .= $menulst['menu_id'].","; $txtname = $menulst['module_name']; if($modname!=$menulst['module_name']) { $modname=$menulst['module_name']; ?> <tr> <th><?=$modname;?></th> <th><input style="width: 15px;" class="" type="checkbox" id="View_<?=$modname?>" onchange="CheckModuleView('View_','<?=$modname?>')">View</th> <th><input style="width: 15px;" class="" type="checkbox" id="Add_<?=$modname?>" onchange="CheckModuleView('Add_','<?=$modname?>')">Create</th> <th><input style="width: 15px;" class="" type="checkbox" id="Edit_<?=$modname?>" onchange="CheckModuleView('Edit_','<?=$modname?>')">Edit</th> <th><input style="width: 15px;" class="" type="checkbox" id="Delete_<?=$modname?>" onchange="CheckModuleView('Delete_','<?=$modname?>')">Delete</th> <th><input style="width: 15px;" class="" type="checkbox" id="Private_<?=$modname?>" onchange="CheckModuleView('Private_','<?=$modname?>')">Private</th> </tr> <?php $i++; } ?> <?php echo "<tr><td>".$menulst['caption']."</td>"; ?> <td><input style="width: 15px;" onchange="CheckAllView(this,'','View_')" name="View_<?=$modname?>[]" id="View_<?php echo $j;?>" value="8" type="checkbox" <?php if($ar[0]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input style="width: 15px;" onchange="CheckAllView(this,'','Add_')" name="Add_<?=$modname?>[]" id="Add_<?php echo $j;?>" value="4" type="checkbox" <?php if($ar[1]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input style="width: 15px;" onchange="CheckAllView(this,'','Edit_')" name="Edit_<?=$modname?>[]" id="Edit_<?php echo $j;?>" value="2" type="checkbox" <?php if($ar[2]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input style="width: 15px;" onchange="CheckAllView(this,'','Delete_')" name="Delete_<?=$modname?>[]" id="Delete_<?php echo $j;?>" value="1" type="checkbox" <?php if($ar[3]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input style="width: 15px;" onchange="CheckAllView(this,'','Delete_')" name="Private_<?=$modname?>[]" id="Private_<?php echo $j;?>" value="1" type="checkbox" <?php if($isPrivate[$j] == 1) { echo "checked"; } ?>></td> <?php $i++; $j++; } ?> </table> <input type="hidden" id="ViewCount" value=<?php echo $viewCount?>> <input type="hidden" id="TxtPermissionList" name="role_edit_del_permission" value=<?php echo $viewinfo->profile_modules_permission;?>> <input type="hidden" id="ModuleidList" name="role_permission" value=<?php echo $moduleidList;?>> <input type="hidden" id="role_id" name="role_id" value=<?php echo $viewinfo->profile_id;?>> <input type="hidden" id="tab_name" name="tab_name" value="role"> <input type="hidden" id="PrivareList" name="role_privates" value="<?php echo $privateList?>"/> </li> <li> <label for="submit"> </label> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Save</button> </li> </ul> <?php echo form_close();?> </fieldset>