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/admin/clients/groups/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); if (isset($client)) { ?> <?php if (has_permission('customers', '', 'edit')) { ?> <div class="row" data-address="<?php echo htmlentities($client->address); ?>" data-city="<?php echo htmlentities($client->city); ?>" data-country="<?php echo htmlentities(get_country_name($client->country)); ?>" id="long_lat_wrapper"> <div class="col-md-4"> <div class="form-group"> <label for="website"><?php echo _l('customer_latitude'); ?></label> <div class="input-group"> <input type="text" name="latitude" id="latitude" value="<?php echo $client->latitude; ?>" class="form-control"> <div class="input-group-addon"> <span><a href="#" tabindex="-1" class="pull-left mright5" onclick="fetch_lat_long_from_google_cprofile(); return false;" data-toggle="tooltip" data-title="<?php echo _l('fetch_from_google') . ' - ' . _l('customer_fetch_lat_lng_usage'); ?>"><i id="gmaps-search-icon" class="fa-brands fa-google" aria-hidden="true"></i></a></span> </div> </div> </div> </div> <div class="col-md-4"> <?php echo render_input('longitude', 'customer_longitude', $client->longitude); ?> </div> <div class="col-md-4"> <button class="btn btn-primary label-margin" onclick="save_longitude_and_latitude(<?php echo $client->userid; ?>); return false;"><?php echo _l('submit'); ?></button> <?php if (!empty($client->latitude) && !empty($client->longitude)) { ?> <a class="btn btn-default label-margin" target="_blank" href="<?php echo 'https://www.google.com/maps/search/?api=1&query=' . urlencode($client->latitude . ', ' . $client->longitude); ?>"><?php echo _l('open_google_map'); ?></a> <?php } ?> </div> </div> <hr /> <?php } ?> <?php if (get_option('google_api_key') !== '') { if ($client->longitude == '' && $client->latitude == '') { echo _l('customer_map_notice'); } else { echo '<div id="map" class="customer_map"></div>'; } } else { echo _l('setup_google_api_key_customer_map'); } }