Server IP : 192.185.129.71 / Your IP : 18.219.116.52 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/roles/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php init_head(); ?> <div id="wrapper"> <div class="content"> <div class="row"> <div class="col-md-7"> <div class="tw-flex tw-justify-between tw-items-center tw-mb-2"> <h4 class="tw-my-0 tw-font-semibold tw-text-lg tw-text-neutral-700"> <?php echo $title; ?> </h4> <?php if (isset($role)) { ?> <a href="<?php echo admin_url('roles/role'); ?>" class="btn btn-success btn-sm"><?php echo _l('new_role'); ?> </a> <?php } ?> </div> <div class="panel_s"> <div class="panel-body"> <?php echo form_open($this->uri->uri_string()); ?> <?php if (isset($role)) { ?> <?php if (total_rows(db_prefix() . 'staff', ['role' => $role->roleid]) > 0) { ?> <div class="alert alert-warning bold"> <?php echo _l('change_role_permission_warning'); ?> <div class="checkbox"> <input type="checkbox" name="update_staff_permissions" id="update_staff_permissions"> <label for="update_staff_permissions"><?php echo _l('role_update_staff_permissions'); ?></label> </div> </div> <?php } ?> <?php } ?> <?php $attrs = (isset($role) ? [] : ['autofocus' => true]); ?> <?php $value = (isset($role) ? $role->name : ''); ?> <?php echo render_input('name', 'role_add_edit_name', $value, 'text', $attrs); ?> <?php $permissionsData = [ 'funcData' => ['role' => isset($role) ? $role : null ] ]; $this->load->view('admin/staff/permissions', $permissionsData); ?> <hr /> <button type="submit" class="btn btn-primary pull-right"><?php echo _l('submit'); ?></button> <?php echo form_close(); ?> </div> </div> </div> <?php if (isset($role_staff)) { ?> <div class="col-md-5"> <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700"> <?php echo _l('staff_which_are_using_role'); ?> </h4> <div class="panel_s tw-mt-3"> <div class="panel-body"> <div class="table-responsive"> <table class="table dt-table"> <thead> <tr> <th><?php echo _l('staff_dt_name'); ?></th> </tr> </thead> <tbody> <?php foreach ($role_staff as $staff) { ?> <tr> <td> <?php echo '<a href="' . admin_url('staff/profile/' . $staff['staffid']) . '">' . staff_profile_image($staff['staffid'], [ 'staff-profile-image-small', ]) . '</a>'; echo ' <a href="' . admin_url('staff/member/' . $staff['staffid']) . '">' . $staff['firstname'] . ' ' . $staff['lastname'] . '</a>'; ?> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <?php } ?> </div> </div> <?php init_tail(); ?> <script> $(function() { appValidateForm($('form'), { name: 'required' }); }); </script> </body> </html>