Server IP : 192.185.129.71 / Your IP : 3.129.209.49 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/themes/perfex/views/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700 section-heading section-heading-files"> <?php echo _l('customer_profile_files'); ?> </h4> <?php hooks()->do_action('after_customers_area_files_heading'); ?> <div class="panel_s"> <div class="panel-body"> <?php echo form_open_multipart(site_url('clients/upload_files'), ['class' => 'dropzone', 'id' => 'files-upload']); ?> <input type="file" name="file" multiple class="hide" /> <?php echo form_close(); ?> <?php hooks()->do_action('after_customers_area_files_dropzone'); ?> <div class="tw-mt-4 tw-flex tw-justify-end tw-items-center tw-space-x-2"> <button class="gpicker" data-on-pick="customerFileGoogleDriveSave"> <i class="fa-brands fa-google" aria-hidden="true"></i> <?php echo _l('choose_from_google_drive'); ?> </button> <?php if (get_option('dropbox_app_key') != '') { ?> <div id="dropbox-chooser-files"></div> <?php } ?> </div> <?php if (count($files) == 0) { ?> <hr class="hr-panel-heading" /> <p class="tw-text-neutral-500"><?php echo _l('no_files_found'); ?></p> <?php } else { ?> <table class="table dt-table mtop15 table-files" data-order-col="1" data-order-type="desc"> <thead> <tr> <th class="th-files-file"><?php echo _l('customer_attachments_file'); ?></th> <th class="th-files-date-uploaded"><?php echo _l('file_date_uploaded'); ?></th> <?php if (get_option('allow_contact_to_delete_files') == 1) { ?> <th class="th-files-option"><?php echo _l('options'); ?></th> <?php } ?> </tr> </thead> <tbody> <?php foreach ($files as $file) { ?> <tr> <td> <?php $url = site_url() . 'download/file/client/'; $path = get_upload_path_by_type('customer') . $file['rel_id'] . '/' . $file['file_name']; $is_image = false; if (!isset($file['external'])) { $attachment_url = $url . $file['attachment_key']; $is_image = is_image($path); $img_url = site_url('download/preview_image?path=' . protected_file_url_by_path($path, true) . '&type=' . $file['filetype']); } elseif (isset($file['external']) && !empty($file['external'])) { if (!empty($file['thumbnail_link'])) { $is_image = true; $img_url = optimize_dropbox_thumbnail($file['thumbnail_link']); } $attachment_url = $file['external_link']; } if ($is_image) { echo '<div class="preview_image">'; } ?> <a href="<?php echo $attachment_url; ?>" <?php echo(isset($file['external']) && !empty($file['external']) ? ' target="_blank"' : ''); ?> class="display-block mbot5"> <?php if ($is_image) { ?> <div class="table-image"> <div class="text-center"><i class="fa fa-spinner fa-spin mtop30"></i></div> <img src="#" class="img-table-loading" data-orig="<?php echo $img_url; ?>"> </div> <?php } else { ?> <i class="<?php echo get_mime_class($file['filetype']); ?>"></i> <?php echo $file['file_name']; ?> <?php } ?> </a> <?php if ($is_image) { echo '</div>'; } ?> </td> <td data-order="<?php echo $file['dateadded']; ?>"><?php echo _dt($file['dateadded']); ?></td> <?php if (get_option('allow_contact_to_delete_files') == 1) { ?> <td> <?php if ($file['contact_id'] == get_contact_user_id()) { ?> <a href="<?php echo site_url('clients/delete_file/' . $file['id'] . '/general'); ?>" class="btn btn-danger btn-icon _delete file-delete"><i class="fa fa-remove"></i></a> <?php } ?> </td> <?php } ?> </tr> <?php } ?> </tbody> </table> <?php } ?> <?php hooks()->do_action('after_customers_area_files'); ?> </div> </div>