?
Current Path : /home1/savoy/public_html/savoyglobal.net/eldertree/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/eldertree/application/views/settings/add_profile.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('settings/settingsfunctions'); $designation=$this->mastermodel->getdatas('designation','designation_id'); ?> <!--<script type="text/javascript" src="<?= base_url() ?>assets/scripts/jquery-1.4.4.min.js"></script> --> <?php $this->load->view('documentreadyfunctions'); ?> <!-- BEGIN PAGE LEVEL STYLES --> <!-- END PAGE LEVEL STYLES --> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Creating new Profile</div> <div class="tools"> <a href="#" onclick="viewdata('settings','viewinsettingssearch','search_profile','view_profile','<?=$_SESSION['pagenum'];?>')" class="remove"></a> </div> </div> <div class="portlet-body form"> <!-- BEGIN FORM--> <?php $attributes = array('id' => 'validateform', 'class' => 'form-horizontal validate'); echo form_open('settings/addinsettings/insert_profile/view_profile/1',$attributes); ?> <h3 class="form-section"></h3> <div class="row-fluid"> <div class="span6 "> <div class="control-group"> <label class="control-label">Designation</label> <div class="controls"> <select name="designation_id" id="designation_id" class="required chosen span12" onchange="checkexistence('user_profile','designation_id',this.value,'profile_id','User profile for this designation already added')" > <option value="">Select Designation</option> <?php foreach($designation as $list) { ?> <option value="<?=$list['designation_id']?>"><?=$list['designation_name']?></option> <?php } ?> </select> </div> </div> </div> </div> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Permissions</div> </div> <div class="portlet-body form"> <table class="table table-striped table-hover table-bordered"> <thead> <tr> <th>Module Name</th> <th><input style="width: 15px;" type="checkbox" id="view_check_all" onchange="check_all_view(this,'view_','')">View </th> <th><input style="width: 15px;" type="checkbox" id="add_check_all" onchange="check_all_view(this,'add_','')">Create </th> <th><input style="width: 15px;" type="checkbox" id="edit_check_all" onchange="check_all_view(this,'edit_','')">Edit</th> <th><input style="width: 15px;" type="checkbox" id="delete_check_all" onchange="check_all_view(this,'delete_','')">Delete</th> <th><input style="width: 15px;" type="checkbox" id="delete_check_all" onchange="check_all_view(this,'homepage_','')">Home Page</th> </tr> </thead> <tbody> <?php $modname=""; $modcheck=""; $cntr=1; $i=1; $modulelist=$this->mastermodel->getmoduledata(); $j=0; $txtname=""; $viewCount=0; $initialPermission=""; $home_page=""; $moduleidList=""; foreach ($modulelist as $menulst) { $viewCount++; $initialPermission .= "0,"; $home_page .= "0,"; $moduleidList .= $menulst['menu_id'].","; $txtname = $menulst['module_name']; if($modname!=$menulst['module_name']) { $modname=$menulst['module_name']; ?> <tr> <th><?=$menulst['module_title'];?></th> <th><input style="width: 15px;" class="" type="checkbox" id="view_<?=$modname?>" onchange="check_module_view('view_','<?=$modname?>')">View</th> <th><input style="width: 15px;" class="" type="checkbox" id="add_<?=$modname?>" onchange="check_module_view('add_','<?=$modname?>')">Create</th> <th><input style="width: 15px;" class="" type="checkbox" id="edit_<?=$modname?>" onchange="check_module_view('edit_','<?=$modname?>')">Edit</th> <th><input style="width: 15px;" class="" type="checkbox" id="delete_<?=$modname?>" onchange="check_module_view('delete_','<?=$modname?>')">Delete</th> <th><input style="width: 15px;" class="" type="checkbox" id="homepage_<?=$modname?>" onchange="check_module_view('homepage_','<?=$modname?>')">Home Page</th> </tr> <?php $i++; } ?> <tr> <td><input class="<?=$modname?>" style="width: 15px; margin-right: 20px;" onchange="check_all_view(this,'','view_all_')" name="read_permission[]" id="view_all_<?php echo $j;?>" type="checkbox"><?=$menulst['caption']; ?></td> <td style="text-align: center;"><input class="" style="width: 15px;" onchange="check_all_view(this,'','view_')" name="view_<?=$modname?>[]" id="view_<?php echo $j;?>" value="8" type="checkbox"></td> <td style="text-align: center;"><input class="" style="width: 15px;" onchange="check_all_view(this,'','add_')" name="add_<?=$modname?>[]" id="add_<?php echo $j;?>" value="4" type="checkbox"></td> <td style="text-align: center;"><input class="" style="width: 15px;" onchange="check_all_view(this,'','edit_')" name="edit_<?=$modname?>[]" id="edit_<?php echo $j;?>" value="2" type="checkbox"></td> <td style="text-align: center;"><input class="" style="width: 15px;" onchange="check_all_view(this,'','delete_')" name="delete_<?=$modname?>[]" id="delete_<?php echo $j;?>" value="1" type="checkbox"></td> <td style="text-align: center;"><input class="" style="width: 15px;" onchange="check_all_view(this,'','delete_')" name="homepage_<?=$modname?>[]" id="homepage_<?php echo $j;?>" value="1" type="checkbox"></td> </tr> <?php $j++; } ?> </tbody> </table> <input type="hidden" id="ViewCount" value=<?php echo $viewCount?>> <input type="hidden" id="ViewCount" value=<?php echo $viewCount?>> <input type="hidden" id="TxtPermissionList" name="role_edit_del_permission" value=<?php echo $initialPermission?>> <input type="hidden" id="ModuleidList" name="role_permission" value=<?php echo $moduleidList?>> <input type="hidden" id="home_page_list" name="role_home_page" value="<?php echo $home_page?>"/> <input type="hidden" id="tab_name" name="tab_name" value="role"> </div> </div> <div class="form-actions"> <input type="hidden" name="resfunction" value="search_profile"/> <button type="submit" onclick="addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Save</button> <button type="button" onclick="viewdata('settings','viewinsettingssearch','search_profile','view_profile','<?=$_SESSION['pagenum'];?>')" class="btn">Cancel</button> </div> <?php echo form_close(); ?> <!-- END FORM--> </div> </div> </div> </div> <script> $(document).ready(function() { var checkbox_list = $("input[type=checkbox]:not(.toggle), input[type=radio]:not(.toggle, .star)"); if (checkbox_list.size() > 0) { checkbox_list.each(function () { if ($(this).parents(".checker").size() == 0) { $(this).show(); $(this).uniform(); } }); } }); </script>