whoami7 - Manager
:
/
home
/
kckglobal
/
cloud.kckglobal.net
/
bkp
/
application
/
views
/
admin
/
clients
/
groups
/
Upload File:
files >> /home/kckglobal/cloud.kckglobal.net/bkp/application/views/admin/clients/groups/notes.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php if (isset($client)) { ?> <h4 class="customer-profile-group-heading tw-w-full"> <div class="tw-flex tw-justify-between tw-items-center"> <?php echo _l('contracts_notes_tab'); ?> <a href="#" class="btn btn-success btn-sm" onclick="slideToggle('.usernote'); return false;"> <i class="fa-regular fa-plus tw-mr-1"></i> <?php echo _l('new_note'); ?> </a> </div> </h4> <div class="row"> <div class="col-md-12"> <div class="usernote hide"> <?php echo form_open(admin_url('misc/add_note/' . $client->userid . '/customer')); ?> <?php echo render_textarea('description', 'note_description', '', [ 'rows' => 5]); ?> <button class="btn btn-primary pull-right mbot15"> <?php echo _l('submit'); ?> </button> <?php echo form_close(); ?> </div> <table class="table dt-table" data-order-col="2" data-order-type="desc"> <thead> <tr> <th width="50%"> <?php echo _l('clients_notes_table_description_heading'); ?> </th> <th> <?php echo _l('clients_notes_table_addedfrom_heading'); ?> </th> <th> <?php echo _l('clients_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"> <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 '<a href="' . admin_url('profile/' . $note[ 'addedfrom']) . '">' . $note[ 'firstname'] . ' ' . $note[ 'lastname'] . '</a>' ?> </td> <td data-order="<?php echo $note['dateadded']; ?>"> <?php if (!empty($note['date_contacted'])) { ?> <span data-toggle="tooltip" data-title="<?php echo html_escape(_dt($note['date_contacted'])); ?>"> <i class="fa fa-phone-square text-success font-medium valign" aria-hidden="true"></i> </span> <?php } ?> <?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() || is_admin()) { ?> <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> <?php } ?> </div>
Copyright ©2021 || Defacer Indonesia