MMCT TEAM
Server IP : 192.185.129.71  /  Your IP : 3.23.85.24
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/staff/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/staff/member.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php init_head(); ?>
<div id="wrapper">
    <div class="content">
        <?php if (isset($member)) { ?>
        <?php $this->load->view('admin/staff/stats'); ?>
        <div class="member">
            <?php echo form_hidden('isedit'); ?>
            <?php echo form_hidden('memberid', $member->staffid); ?>
        </div>
        <?php } ?>
        <div class="row">
            <?php if (isset($member)) { ?>
            <div class="col-md-12">
                <?php if (total_rows(db_prefix() . 'departments', ['email' => $member->email]) > 0) { ?>
                <div class="alert alert-danger">
                    The staff member email exists also as support department email, according to the docs, the support
                    department email must be unique email in the system, you must change the staff email or the support
                    department email in order all the features to work properly.
                </div>
                <?php } ?>
                <div class="tw-flex tw-justify-between">
                    <h4 class="tw-mb-0 tw-font-semibold tw-text-lg tw-text-neutral-700">
                        <?php echo $member->firstname . ' ' . $member->lastname; ?>
                        <?php if ($member->last_activity && $member->staffid != get_staff_user_id()) { ?>
                        <small> - <?php echo _l('last_active'); ?>:
                            <span class="text-has-action" data-toggle="tooltip"
                                data-title="<?php echo _dt($member->last_activity); ?>">
                                <?php echo time_ago($member->last_activity); ?>
                            </span>
                        </small>
                        <?php } ?>
                    </h4>
                    <a href="#" onclick="small_table_full_view(); return false;" data-placement="left"
                        data-toggle="tooltip" data-title="<?php echo _l('toggle_full_view'); ?>"
                        class="toggle_view tw-mt-3 tw-shrink-0 tw-inline-flex tw-items-center tw-justify-center hover:tw-text-neutral-800 active:tw-text-neutral-800 hover:tw-bg-neutral-300 tw-h-10 tw-w-10 tw-rounded-full tw-bg-neutral-200 tw-text-neutral-500">
                        <i class="fa fa-expand"></i></a>
                </div>
            </div>
            <?php } ?>
            <?php echo form_open_multipart($this->uri->uri_string(), ['class' => 'staff-form', 'autocomplete' => 'off']); ?>
            <div class="col-md-<?php if (!isset($member)) {
    echo '8 col-md-offset-2';
} else {
    echo '5';
} ?>" id="small-table">
                <div class="panel_s">
                    <div class="panel-body ">
                        <div class="horizontal-scrollable-tabs panel-full-width-tabs">
                            <div class="scroller arrow-left"><i class="fa fa-angle-left"></i></div>
                            <div class="scroller arrow-right"><i class="fa fa-angle-right"></i></div>
                            <div class="horizontal-tabs">
                                <ul class="nav nav-tabs nav-tabs-horizontal" role="tablist">
                                    <li role="presentation" class="active">
                                        <a href="#tab_staff_profile" aria-controls="tab_staff_profile" role="tab"
                                            data-toggle="tab">
                                            <?php echo _l('staff_profile_string'); ?>
                                        </a>
                                    </li>
                                    <li role="presentation">
                                        <a href="#staff_permissions" aria-controls="staff_permissions" role="tab"
                                            data-toggle="tab">
                                            <?php echo _l('staff_add_edit_permissions'); ?>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </div>
                        <div class="tab-content tw-mt-5">
                            <div role="tabpanel" class="tab-pane active" id="tab_staff_profile">
                                <div class="is-not-staff<?php if (isset($member) && $member->admin == 1) {
    echo ' hide';
}?>">
                                    <div class="checkbox checkbox-primary">
                                        <?php
                              $checked = '';
                              if (isset($member)) {
                                  if ($member->is_not_staff == 1) {
                                      $checked = ' checked';
                                  }
                              }
                              ?>
                                        <input type="checkbox" value="1" name="is_not_staff" id="is_not_staff"
                                            <?php echo $checked; ?>>
                                        <label for="is_not_staff"><?php echo _l('is_not_staff_member'); ?></label>
                                    </div>
                                    <hr />
                                </div>
                                <?php if ((isset($member) && $member->profile_image == null) || !isset($member)) { ?>
                                <div class="form-group">
                                    <label for="profile_image"
                                        class="profile-image"><?php echo _l('staff_edit_profile_image'); ?></label>
                                    <input type="file" name="profile_image" class="form-control" id="profile_image">
                                </div>
                                <?php } ?>
                                <?php if (isset($member) && $member->profile_image != null) { ?>
                                <div class="form-group">
                                    <div class="row">
                                        <div class="col-md-9">
                                            <?php echo staff_profile_image($member->staffid, ['img', 'img-responsive', 'staff-profile-image-thumb'], 'thumb'); ?>
                                        </div>
                                        <div class="col-md-3 text-right">
                                            <a
                                                href="<?php echo admin_url('staff/remove_staff_profile_image/' . $member->staffid); ?>"><i
                                                    class="fa fa-remove"></i></a>
                                        </div>
                                    </div>
                                </div>
                                <?php } ?>
                                <?php $value = (isset($member) ? $member->firstname : ''); ?>
                                <?php $attrs = (isset($member) ? [] : ['autofocus' => true]); ?>
                                <?php echo render_input('firstname', 'staff_add_edit_firstname', $value, 'text', $attrs); ?>
                                <?php $value = (isset($member) ? $member->lastname : ''); ?>
                                <?php echo render_input('lastname', 'staff_add_edit_lastname', $value); ?>
                                <?php $value = (isset($member) ? $member->email : ''); ?>
                                <?php echo render_input('email', 'staff_add_edit_email', $value, 'email', ['autocomplete' => 'off']); ?>
                                <div class="form-group">
                                    <label for="hourly_rate"><?php echo _l('staff_hourly_rate'); ?></label>
                                    <div class="input-group">
                                        <input type="number" name="hourly_rate" value="<?php if (isset($member)) {
                                  echo $member->hourly_rate;
                              } else {
                                  echo 0;
                              } ?>" id="hourly_rate" class="form-control">
                                        <span class="input-group-addon">
                                            <?php echo $base_currency->symbol; ?>
                                        </span>
                                    </div>
                                </div>
                                <?php $value = (isset($member) ? $member->phonenumber : ''); ?>
                                <?php echo render_input('phonenumber', 'staff_add_edit_phonenumber', $value); ?>
                                <div class="form-group">
                                    <label for="facebook" class="control-label"><i class="fa-brands fa-facebook-f"></i>
                                        <?php echo _l('staff_add_edit_facebook'); ?></label>
                                    <input type="text" class="form-control" name="facebook" value="<?php if (isset($member)) {
                                  echo $member->facebook;
                              } ?>">
                                </div>
                                <div class="form-group">
                                    <label for="linkedin" class="control-label"><i class="fa-brands fa-linkedin-in"></i>
                                        <?php echo _l('staff_add_edit_linkedin'); ?></label>
                                    <input type="text" class="form-control" name="linkedin" value="<?php if (isset($member)) {
                                  echo $member->linkedin;
                              } ?>">
                                </div>
                                <div class="form-group">
                                    <label for="skype" class="control-label"><i class="fa-brands fa-skype"></i>
                                        <?php echo _l('staff_add_edit_skype'); ?></label>
                                    <input type="text" class="form-control" name="skype" value="<?php if (isset($member)) {
                                  echo $member->skype;
                              } ?>">
                                </div>
                                <?php if (!is_language_disabled()) { ?>
                                <div class="form-group select-placeholder">
                                    <label for="default_language"
                                        class="control-label"><?php echo _l('localization_default_language'); ?></label>
                                    <select name="default_language" data-live-search="true" id="default_language"
                                        class="form-control selectpicker"
                                        data-none-selected-text="<?php echo _l('dropdown_non_selected_tex'); ?>">
                                        <option value=""><?php echo _l('system_default_string'); ?></option>
                                        <?php foreach ($this->app->get_available_languages() as $availableLanguage) {
                                  $selected = '';
                                  if (isset($member)) {
                                      if ($member->default_language == $availableLanguage) {
                                          $selected = 'selected';
                                      }
                                  } ?>
                                        <option value="<?php echo $availableLanguage; ?>" <?php echo $selected; ?>>
                                            <?php echo ucfirst($availableLanguage); ?></option>
                                        <?php
                              } ?>
                                    </select>
                                </div>
                                <?php } ?>
                                <i class="fa-regular fa-circle-question pull-left tw-mt-0.5 tw-mr-1"
                                    data-toggle="tooltip"
                                    data-title="<?php echo _l('staff_email_signature_help'); ?>"></i>
                                <?php $value = (isset($member) ? $member->email_signature : ''); ?>
                                <?php echo render_textarea('email_signature', 'settings_email_signature', $value, ['data-entities-encode' => 'true']); ?>
                                <div class="form-group select-placeholder">
                                    <label for="direction"><?php echo _l('document_direction'); ?></label>
                                    <select class="selectpicker"
                                        data-none-selected-text="<?php echo _l('system_default_string'); ?>"
                                        data-width="100%" name="direction" id="direction">
                                        <option value="" <?php if (isset($member) && empty($member->direction)) {
                                  echo 'selected';
                              } ?>></option>
                                        <option value="ltr" <?php if (isset($member) && $member->direction == 'ltr') {
                                  echo 'selected';
                              } ?>>LTR</option>
                                        <option value="rtl" <?php if (isset($member) && $member->direction == 'rtl') {
                                  echo 'selected';
                              } ?>>RTL</option>
                                    </select>
                                </div>
                                <div class="form-group">
                                    <?php if (count($departments) > 0) { ?>
                                    <label for="departments"><?php echo _l('staff_add_edit_departments'); ?></label>
                                    <?php } ?>
                                    <?php foreach ($departments as $department) { ?>
                                    <div class="checkbox checkbox-primary">
                                        <?php
                              $checked = '';
                              if (isset($member)) {
                                  foreach ($staff_departments as $staff_department) {
                                      if ($staff_department['departmentid'] == $department['departmentid']) {
                                          $checked = ' checked';
                                      }
                                  }
                              }
                              ?>
                                        <input type="checkbox" id="dep_<?php echo $department['departmentid']; ?>"
                                            name="departments[]" value="<?php echo $department['departmentid']; ?>"
                                            <?php echo $checked; ?>>
                                        <label
                                            for="dep_<?php echo $department['departmentid']; ?>"><?php echo $department['name']; ?></label>
                                    </div>
                                    <?php } ?>
                                </div>
                                <?php $rel_id = (isset($member) ? $member->staffid : false); ?>
                                <?php echo render_custom_fields('staff', $rel_id); ?>

                                <div class="row">
                                    <div class="col-md-12">
                                        <hr class="hr-10" />
                                        <?php if (is_admin()) { ?>
                                        <div class="checkbox checkbox-primary">
                                            <?php
                                 $isadmin = '';
                                 if (isset($member) && ($member->staffid == get_staff_user_id() || is_admin($member->staffid))) {
                                     $isadmin = ' checked';
                                 }
                              ?>
                                            <input type="checkbox" name="administrator" id="administrator"
                                                <?php echo $isadmin; ?>>
                                            <label
                                                for="administrator"><?php echo _l('staff_add_edit_administrator'); ?></label>
                                        </div>
                                        <?php } ?>
                                        <?php if (!isset($member) && is_email_template_active('new-staff-created')) { ?>
                                        <div class="checkbox checkbox-primary">
                                            <input type="checkbox" name="send_welcome_email" id="send_welcome_email"
                                                checked>
                                            <label
                                                for="send_welcome_email"><?php echo _l('staff_send_welcome_email'); ?></label>
                                        </div>
                                        <?php } ?>
                                    </div>
                                </div>
                                <?php if (!isset($member) || is_admin() || !is_admin() && $member->admin == 0) { ?>
                                <!-- fake fields are a workaround for chrome autofill getting the wrong fields -->
                                <input type="text" class="fake-autofill-field" name="fakeusernameremembered" value=''
                                    tabindex="-1" />
                                <input type="password" class="fake-autofill-field" name="fakepasswordremembered"
                                    value='' tabindex="-1" />
                                <div class="clearfix form-group"></div>
                                <label for="password"
                                    class="control-label"><?php echo _l('staff_add_edit_password'); ?></label>
                                <div class="input-group">
                                    <input type="password" class="form-control password" name="password"
                                        autocomplete="off">
                                    <span class="input-group-addon tw-border-l-0">
                                        <a href="#password" class="show_password"
                                            onclick="showPassword('password'); return false;"><i
                                                class="fa fa-eye"></i></a>
                                    </span>
                                    <span class="input-group-addon">
                                        <a href="#" class="generate_password"
                                            onclick="generatePassword(this);return false;"><i
                                                class="fa fa-refresh"></i></a>
                                    </span>
                                </div>
                                <?php if (isset($member)) { ?>
                                <p class="text-muted tw-mt-2"><?php echo _l('staff_add_edit_password_note'); ?></p>
                                <?php if ($member->last_password_change != null) { ?>
                                <?php echo _l('staff_add_edit_password_last_changed'); ?>:
                                <span class="text-has-action" data-toggle="tooltip"
                                    data-title="<?php echo _dt($member->last_password_change); ?>">
                                    <?php echo time_ago($member->last_password_change); ?>
                                </span>
                                <?php } } ?>
                                <?php } ?>
                            </div>
                            <div role="tabpanel" class="tab-pane" id="staff_permissions">
                                <?php
                        hooks()->do_action('staff_render_permissions');
                        $selected = '';
                        foreach ($roles as $role) {
                            if (isset($member)) {
                                if ($member->role == $role['roleid']) {
                                    $selected = $role['roleid'];
                                }
                            } else {
                                $default_staff_role = get_option('default_staff_role');
                                if ($default_staff_role == $role['roleid']) {
                                    $selected = $role['roleid'];
                                }
                            }
                        }
                        ?>
                                <?php echo render_select('role', $roles, ['roleid', 'name'], 'staff_add_edit_role', $selected); ?>
                                <hr />
                                <h4 class="font-medium mbot15 bold"><?php echo _l('staff_add_edit_permissions'); ?></h4>
                                <?php
                     $permissionsData = [ 'funcData' => ['staff_id' => isset($member) ? $member->staffid : null ] ];
                     if (isset($member)) {
                         $permissionsData['member'] = $member;
                     }
                     $this->load->view('admin/staff/permissions', $permissionsData);
                     ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="btn-bottom-toolbar text-right">
                <button type="submit" class="btn btn-primary"><?php echo _l('submit'); ?></button>
            </div>
            <?php echo form_close(); ?>
            <?php if (isset($member)) { ?>
            <div class="col-md-7 small-table-right-col">
                <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700">
                    <?php echo _l('staff_add_edit_notes'); ?>
                </h4>
                <div class="panel_s">
                    <div class="panel-body">

                        <a href="#" class="btn btn-success"
                            onclick="slideToggle('.usernote'); return false;"><?php echo _l('new_note'); ?></a>
                        <div class="clearfix"></div>
                        <hr class="hr-panel-separator" />
                        <div class="mbot15 usernote hide inline-block full-width">
                            <?php echo form_open(admin_url('misc/add_note/' . $member->staffid . '/staff')); ?>
                            <?php echo render_textarea('description', 'staff_add_edit_note_description', '', ['rows' => 5]); ?>
                            <button class="btn btn-primary pull-right mbot15"><?php echo _l('submit'); ?></button>
                            <?php echo form_close(); ?>
                        </div>
                        <div class="clearfix"></div>
                        <div class="mtop15">
                            <table class="table dt-table" data-order-col="2" data-order-type="desc">
                                <thead>
                                    <tr>
                                        <th width="50%"><?php echo _l('staff_notes_table_description_heading'); ?></th>
                                        <th><?php echo _l('staff_notes_table_addedfrom_heading'); ?></th>
                                        <th><?php echo _l('staff_notes_table_dateadded_heading'); ?></th>
                                        <th><?php echo _l('options'); ?></th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php foreach ($user_notes as $note) { ?>
                                    <tr>
                                        <td width="50%">
                                            <div data-note-description="<?php echo $note['id']; ?>">
                                                <?php echo check_for_links($note['description']); ?>
                                            </div>
                                            <div data-note-edit-textarea="<?php echo $note['id']; ?>"
                                                class="hide inline-block full-width">
                                                <textarea name="description" class="form-control"
                                                    rows="4"><?php echo clear_textarea_breaks($note['description']); ?></textarea>
                                                <div class="text-right mtop15">
                                                    <button type="button" class="btn btn-default"
                                                        onclick="toggle_edit_note(<?php echo $note['id']; ?>);return false;"><?php echo _l('cancel'); ?></button>
                                                    <button type="button" class="btn btn-primary"
                                                        onclick="edit_note(<?php echo $note['id']; ?>);"><?php echo _l('update_note'); ?></button>
                                                </div>
                                            </div>
                                        </td>
                                        <td><?php echo $note['firstname'] . ' ' . $note['lastname']; ?></td>
                                        <td data-order="<?php echo $note['dateadded']; ?>">
                                            <?php echo _dt($note['dateadded']); ?></td>
                                        <td>
                                            <div class="tw-flex tw-items-center tw-space-x-3">
                                                <?php if ($note['addedfrom'] == get_staff_user_id() || has_permission('staff', '', 'delete')) { ?>
                                                <a href="#"
                                                    onclick="toggle_edit_note(<?php echo $note['id']; ?>);return false;"
                                                    class="tw-text-neutral-500 hover:tw-text-neutral-700 focus:tw-text-neutral-700">
                                                    <i class="fa-regular fa-pen-to-square fa-lg"></i>
                                                </a>
                                                <a href="<?php echo admin_url('misc/delete_note/' . $note['id']); ?>"
                                                    class="tw-mt-px tw-text-neutral-500 hover:tw-text-neutral-700 focus:tw-text-neutral-700 _delete">
                                                    <i class="fa-regular fa-trash-can fa-lg"></i>
                                                </a>
                                                <?php } ?>
                                            </div>
                                        </td>
                                    </tr>
                                    <?php } ?>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
                <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700">
                    <?php echo _l('task_timesheets'); ?> & <?php echo _l('als_reports'); ?>
                </h4>
                <div class="panel_s">
                    <div class="panel-body">
                        <?php echo form_open($this->uri->uri_string(), ['method' => 'GET']); ?>
                        <?php echo form_hidden('filter', 'true'); ?>
                        <div class="row">
                            <div class="col-md-6">
                                <div class="select-placeholder">
                                    <select name="range" id="range" class="selectpicker" data-width="100%">
                                        <option value="this_month" <?php if (!$this->input->get('range') || $this->input->get('range') == 'this_month') {
                         echo 'selected';
                     } ?>><?php echo _l('staff_stats_this_month_total_logged_time'); ?></option>
                                        <option value="last_month" <?php if ($this->input->get('range') == 'last_month') {
                         echo 'selected';
                     } ?>><?php echo _l('staff_stats_last_month_total_logged_time'); ?></option>
                                        <option value="this_week" <?php if ($this->input->get('range') == 'this_week') {
                         echo 'selected';
                     } ?>><?php echo _l('staff_stats_this_week_total_logged_time'); ?></option>
                                        <option value="last_week" <?php if ($this->input->get('range') == 'last_week') {
                         echo 'selected';
                     } ?>><?php echo _l('staff_stats_last_week_total_logged_time'); ?></option>
                                        <option value="period" <?php if ($this->input->get('range') == 'period') {
                         echo 'selected';
                     } ?>><?php echo _l('period_datepicker'); ?></option>
                                    </select>
                                </div>
                                <div class="row mtop15">
                                    <div class="col-md-12 period <?php if ($this->input->get('range') != 'period') {
                         echo 'hide';
                     } ?>">
                                        <?php echo render_date_input('period-from', '', $this->input->get('period-from')); ?>
                                    </div>
                                    <div class="col-md-12 period <?php if ($this->input->get('range') != 'period') {
                         echo 'hide';
                     } ?>">
                                        <?php echo render_date_input('period-to', '', $this->input->get('period-to')); ?>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-2 text-right">
                                <button type="submit"
                                    class="btn btn-success apply-timesheets-filters"><?php echo _l('apply'); ?></button>
                            </div>
                        </div>
                        <?php echo form_close(); ?>
                        <hr class="hr-panel-separator" />
                        <table class="table dt-table">
                            <thead>
                                <th><?php echo _l('task'); ?></th>
                                <th><?php echo _l('timesheet_start_time'); ?></th>
                                <th><?php echo _l('timesheet_end_time'); ?></th>
                                <th><?php echo _l('task_relation'); ?></th>
                                <th><?php echo _l('staff_hourly_rate'); ?> (<?php echo _l('als_staff'); ?>)</th>
                                <th><?php echo _l('time_h'); ?></th>
                                <th><?php echo _l('time_decimal'); ?></th>
                                <th data-sortable="false"></th>
                            </thead>
                            <tbody>
                                <?php
                           $total_logged_time = [];
                           foreach ($timesheets as $t) { ?>
                                <tr>
                                    <td><a href="#"
                                            onclick="init_task_modal(<?php echo $t['task_id']; ?>); return false;"><?php echo $t['name']; ?></a>
                                    </td>
                                    <td data-order="<?php echo $t['start_time']; ?>">
                                        <?php echo _dt($t['start_time'], true); ?></td>
                                    <td data-order="<?php echo $t['end_time']; ?>">
                                        <?php
                                 // Allow admins or timer user to stop forgotten timers by staff member
                                 if ($t['not_finished'] && (is_admin() || $t['staff_id'] === get_staff_user_id())) {
                                     ?>
                                        <a href="#" <?php
                                          // Do not show the note popover when there is no associated task
                                          // The user will be able to add note and select task in the popup window that will open
                                          if ($t['task_id'] != 0) { ?> data-toggle="popover" data-placement="bottom"
                                            data-html="true" data-trigger="manual"
                                            data-title="<?php echo _l('note'); ?>"
                                            data-content='<?php echo render_textarea('timesheet_note'); ?><button type="button"
                                          onclick="timer_action(this, <?php echo $t['task_id']; ?>, <?php echo $t['id']; ?>, 1);" class="btn btn-primary btn-sm"><?php echo _l('save'); ?></button>'
                                            onclick="return false;" <?php } else { ?>
                                            onclick="timer_action(this, <?php echo $t['task_id']; ?>, <?php echo $t['id']; ?>, 1); return false;"
                                            <?php } ?> class="text-danger">
                                            <i class="fa-regular fa-clock"></i>
                                            <?php echo _l('task_stop_timer'); ?>
                                        </a>
                                        <?php
                                 } elseif ($t['not_finished']) {
                                     echo '<b>' . _l('timer_not_stopped_yet') . '</b>';
                                 } else {
                                     echo _dt($t['end_time'], true);
                                 }
                              ?>
                                    </td>
                                    <td>
                                        <?php
                                 $rel_data   = get_relation_data($t['rel_type'], $t['rel_id']);
                                 $rel_values = get_relation_values($rel_data, $t['rel_type']);
                                 echo '<a href="' . $rel_values['link'] . '">' . $rel_values['name'] . '</a>';
                                 ?>
                                    </td>
                                    <td><?php echo app_format_money($t['hourly_rate'], $base_currency); ?></td>
                                    <td>
                                        <?php echo '<b>' . seconds_to_time_format($t['end_time'] - $t['start_time']) . '</b>'; ?>
                                    </td>
                                    <td data-order="<?php echo sec2qty($t['total']); ?>">
                                        <?php
                                 $total_logged_time[] = ['total' => $t['total'], 'hourly_rate' => $t['hourly_rate']];
                                 echo '<b>' . sec2qty($t['total']) . '</b>';
                                 ?>
                                    </td>
                                    <td>
                                        <?php
                                 if (!$t['billed']) {
                                     if (has_permission('tasks', '', 'delete')
                                       || (has_permission('projects', '', 'delete') && $t['rel_type'] == 'project')
                                       || $t['staff_id'] == get_staff_user_id()) {
                                         echo '<a href="' . admin_url('tasks/delete_timesheet/' . $t['id']) . '" class="pull-right text-danger mtop5"><i class="fa fa-remove"></i></a>';
                                     }
                                 }
                              ?>
                                    </td>
                                </tr>
                                <?php } ?>
                            </tbody>
                            <tfoot>
                                <tr>
                                    <td></td>
                                    <td></td>
                                    <td></td>
                                    <td></td>
                                    <td align="right"><?php echo '<b>' . _l('total_by_hourly_rate') . ':</b> ' . app_format_money(
                                  collect($total_logged_time)->reduce(function ($carry, $item) {
                                      return $carry + (sec2qty($item['total']) * (float) $item['hourly_rate']);
                                  }, 0),
                                  $base_currency
                              ); ?>
                                    </td>
                                    <td align="right">
                                        <?php echo '<b>' . _l('total_logged_hours_by_staff') . ':</b> ' . seconds_to_time_format(
                                  collect($total_logged_time)->pluck('total')->sum()
                              ); ?>
                                    </td>
                                    <td align="right">
                                        <?php echo '<b>' . _l('total_logged_hours_by_staff') . ':</b> ' . sec2qty(
                                  collect($total_logged_time)->pluck('total')->sum()
                              ); ?>
                                    </td>
                                    <td></td>
                                </tr>
                            </tfoot>
                        </table>
                    </div>
                </div>
                <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700">
                    <?php echo _l('projects'); ?>
                </h4>
                <div class="panel_s">
                    <div class="panel-body">
                        <div class="_filters _hidden_inputs hidden staff_projects_filter">
                            <?php echo form_hidden('staff_id', $member->staffid); ?>
                        </div>
                        <?php render_datatable([
                  _l('project_name'),
                  _l('project_start_date'),
                  _l('project_deadline'),
                  _l('project_status'),
                  ], 'staff-projects'); ?>
                    </div>
                </div>
            </div>
            <?php } ?>
        </div>
        <div class="btn-bottom-pusher"></div>
    </div>
    <?php init_tail(); ?>
    <script>
    $(function() {

        $('select[name="role"]').on('change', function() {
            var roleid = $(this).val();
            init_roles_permissions(roleid, true);
        });

        $('input[name="administrator"]').on('change', function() {
            var checked = $(this).prop('checked');
            var isNotStaffMember = $('.is-not-staff');
            if (checked == true) {
                isNotStaffMember.addClass('hide');
                $('.roles').find('input').prop('disabled', true).prop('checked', false);
            } else {
                isNotStaffMember.removeClass('hide');
                isNotStaffMember.find('input').prop('checked', false);
                $('.roles').find('.capability').not('[data-not-applicable="true"]').prop('disabled',
                    false)
            }
        });

        $('#is_not_staff').on('change', function() {
            var checked = $(this).prop('checked');
            var row_permission_leads = $('tr[data-name="leads"]');
            if (checked == true) {
                row_permission_leads.addClass('hide');
                row_permission_leads.find('input').prop('checked', false);
            } else {
                row_permission_leads.removeClass('hide');
            }
        });

        init_roles_permissions();

        appValidateForm($('.staff-form'), {
            firstname: 'required',
            lastname: 'required',
            username: 'required',
            password: {
                required: {
                    depends: function(element) {
                        return ($('input[name="isedit"]').length == 0) ? true : false
                    }
                }
            },
            email: {
                required: true,
                email: true,
                remote: {
                    url: admin_url + "misc/staff_email_exists",
                    type: 'post',
                    data: {
                        email: function() {
                            return $('input[name="email"]').val();
                        },
                        memberid: function() {
                            return $('input[name="memberid"]').val();
                        }
                    }
                }
            }
        });
    });
    </script>
    </body>

    </html>

MMCT - 2023