Server IP : 192.185.129.71 / Your IP : 18.118.171.161 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/leads/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); $lead_already_client_tooltip = ''; $lead_is_client = $lead['is_lead_client'] !== '0'; if ($lead_is_client) { $lead_already_client_tooltip = ' data-toggle="tooltip" title="' . _l('lead_have_client_profile') . '"'; } if ($lead['status'] == $status['id']) { ?> <li data-lead-id="<?php echo $lead['id']; ?>" <?php echo $lead_already_client_tooltip; ?> class="lead-kan-ban<?php if ($lead['assigned'] == get_staff_user_id()) { echo ' current-user-lead'; } ?><?php if ($lead_is_client && get_option('lead_lock_after_convert_to_customer') == 1 && !is_admin()) { echo ' not-sortable'; } ?>"> <div class="panel-body lead-body"> <div class="row"> <div class="col-md-12 lead-name"> <?php if ($lead['assigned'] != 0) { ?> <a href="<?php echo admin_url('profile/' . $lead['assigned']); ?>" data-placement="right" data-toggle="tooltip" title="<?php echo get_staff_full_name($lead['assigned']); ?>" class="pull-left mtop8 mright5"> <?php echo staff_profile_image($lead['assigned'], [ 'staff-profile-image-xs', ]); ?></a> <?php } ?> <a href="<?php echo admin_url('leads/index/' . $lead['id']); ?>" onclick="init_lead(<?php echo $lead['id']; ?>);return false;" class="pull-left"> <span class="inline-block mtop10 mbot10">#<?php echo $lead['id'] . ' - ' . $lead['lead_name']; ?></span> </a> </div> <div class="col-md-12"> <div class="tw-flex"> <div class="tw-grow tw-mr-2"> <p class="tw-text-sm tw-mb-0"> <?php echo _l('leads_canban_source', $lead['source_name']); ?> </p> <?php $lead_value = $lead['lead_value'] != 0 ? app_format_money($lead['lead_value'], $base_currency->symbol) : '--'; ?> <p class="tw-text-sm tw-mb-0"> <?php echo _l('leads_canban_lead_value', $lead_value); ?> </p> </div> <div class="text-right"> <?php if (is_date($lead['lastcontact']) && $lead['lastcontact'] != '0000-00-00 00:00:00') { ?> <small class="text-dark tw-text-sm"><?php echo _l('leads_dt_last_contact'); ?> <span class="bold"> <span class="text-has-action" data-toggle="tooltip" data-title="<?php echo _dt($lead['lastcontact']); ?>"> <?php echo time_ago($lead['lastcontact']); ?> </span> </span> </small><br /> <?php } ?> <small class="text-dark"><?php echo _l('lead_created'); ?>: <span class="bold"> <span class="text-has-action" data-toggle="tooltip" data-title="<?php echo _dt($lead['dateadded']); ?>"> <?php echo time_ago($lead['dateadded']); ?> </span> </span> </small><br /> <?php hooks()->do_action('before_leads_kanban_card_icons', $lead); ?> <span class="mright5 mtop5 inline-block text-muted" data-toggle="tooltip" data-placement="left" data-title="<?php echo _l('leads_canban_notes', $lead['total_notes']); ?>"> <i class="fa-regular fa-note-sticky"></i> <?php echo $lead['total_notes']; ?> </span> <span class="mtop5 inline-block text-muted" data-placement="left" data-toggle="tooltip" data-title="<?php echo _l('lead_kan_ban_attachments', $lead['total_files']); ?>"> <i class="fa fa-paperclip"></i> <?php echo $lead['total_files']; ?> </span> <?php hooks()->do_action('after_leads_kanban_card_icons', $lead); ?> </div> </div> </div> <?php if ($lead['tags']) { ?> <div class="col-md-12"> <div class="kanban-tags tw-text-sm tw-inline-flex"> <?php echo render_tags($lead['tags']); ?> </div> </div> <?php } ?> <a href="#" class="pull-right text-muted kan-ban-expand-top" onclick="slideToggle('#kan-ban-expand-<?php echo $lead['id']; ?>'); return false;"> <i class="fa fa-expand" aria-hidden="true"></i> </a> <div class="clearfix no-margin"></div> <div id="kan-ban-expand-<?php echo $lead['id']; ?>" class="padding-10" style="display:none;"> <div class="clearfix"></div> <hr class="hr-10" /> <p class="text-muted lead-field-heading"><?php echo _l('lead_title'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['title'] != '' ? $lead['title'] : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_add_edit_email'); ?></p> <p class="bold tw-text-sm"> <?php echo($lead['email'] != '' ? '<a href="mailto:' . $lead['email'] . '">' . $lead['email'] . '</a>' : '-') ?> </p> <p class="text-muted lead-field-heading"><?php echo _l('lead_website'); ?></p> <p class="bold tw-text-sm"> <?php echo($lead['website'] != '' ? '<a href="' . maybe_add_http($lead['website']) . '" target="_blank">' . $lead['website'] . '</a>' : '-') ?> </p> <p class="text-muted lead-field-heading"><?php echo _l('lead_add_edit_phonenumber'); ?></p> <p class="bold tw-text-sm"> <?php echo($lead['phonenumber'] != '' ? '<a href="tel:' . $lead['phonenumber'] . '">' . $lead['phonenumber'] . '</a>' : '-') ?> </p> <p class="text-muted lead-field-heading"><?php echo _l('lead_company'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['company'] != '' ? $lead['company'] : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_address'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['address'] != '' ? $lead['address'] : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_city'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['city'] != '' ? $lead['city'] : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_state'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['state'] != '' ? $lead['state'] : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_country'); ?></p> <p class="bold tw-text-sm"> <?php echo($lead['country'] != 0 ? get_country($lead['country'])->short_name : '-') ?></p> <p class="text-muted lead-field-heading"><?php echo _l('lead_zip'); ?></p> <p class="bold tw-text-sm"><?php echo($lead['zip'] != '' ? $lead['zip'] : '-') ?></p> </div> </div> </div> </li> <?php }