?
Current Path : /home1/savoy/public_html/savoyglobal.net/horeitia/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/horeitia/application/views/Settings/single_role.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_role','view_role','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Role Information</span> <span class="heading-right"> <img src="<?=base_url()?>assets/images/edit-icon.gif" title="Edit" width="20" height="20" alt="Edit" align = "center" class="clickimage" onclick="editformdata('settings','edit_page','<?=$id;?>','role','role_id','edit_role')" alt="" /> </span> </div> <fieldset> <?php $desg=$this->mastermodel->get_data_srow('designation',$viewinfo->designation_id,'designation_id'); $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes);?> <ul> <li> <label for="data">Designation</label> <span class="record_entry"> <?php echo $desg->designation_name; ?> </span> </li> <li id="role_permissions"> <table class="sort" align="center" width="100%"> <caption>Permissions</caption> <thead> <tr> <th>Module Name</th> <th>View </th> <th>Create / Edit</th> <th>Delete</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->role_permission); $edit_del=explode(",",$viewinfo->role_edit_del_permission); 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('%03u',$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" disabled id="View_<?=$modname?>" onchange="CheckModuleView('View_','<?=$modname?>')"></th> <th><input style="width: 15px;" class="" type="checkbox" disabled id="Edit_<?=$modname?>" onchange="CheckModuleView('Edit_','<?=$modname?>')"></th> <th><input style="width: 15px;" class="" type="checkbox" disabled id="Delete_<?=$modname?>" onchange="CheckModuleView('Delete_','<?=$modname?>')"></th> </tr> <?php $i++; } ?> <?php echo "<tr><td>".$menulst['caption']."</td>"; ?> <td><input disabled style="width: 15px;" onchange="CheckAllView(this,'','View_')" name="read_permission[]" id="View_<?php echo $j;?>" value="4" type="checkbox" <?php if($ar[0]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input disabled style="width: 15px;" onchange="CheckAllView(this,'','Edit_')" name="read_permission[]" id="Edit_<?php echo $j;?>" value="2" type="checkbox" <?php if($ar[1]=="1"){ echo 'checked="checked"'; } ?>></td> <td><input disabled style="width: 15px;" onchange="CheckAllView(this,'','Delete_')" name="read_permission[]" id="Delete_<?php echo $j;?>" value="1" type="checkbox" <?php if($ar[2]=="1"){ echo 'checked="checked"'; } ?>></td> <?php $i++; $j++; } ?> </table> </li> </ul> <?php echo form_close();?> </fieldset>