| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Element Locations List. |
| 4 |
* This is the template that elementor element |
| 5 |
* |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; // Exit if accessed directly. |
| 10 |
} |
| 11 |
|
| 12 |
?> |
| 13 |
|
| 14 |
<?php |
| 15 |
$results_page = wmvc_show_data('conf_link', $settings); |
| 16 |
if(!is_array($results_page) && !empty($results_page)) { |
| 17 |
$results_page = get_permalink($results_page); |
| 18 |
} else { |
| 19 |
$results_page = get_permalink(wdk_get_option('wdk_results_page')); |
| 20 |
} |
| 21 |
?> |
| 22 |
|
| 23 |
<div class="wdk-element" id="wdk_el_<?php echo esc_html($id_element);?>"> |
| 24 |
<div class="wdk-locations-list"> |
| 25 |
<ul class="wdk-locations"> |
| 26 |
<?php if(count($results) > 0):?> |
| 27 |
<?php foreach ($results as $key => $value):?> |
| 28 |
<li class="wdk-item"> |
| 29 |
<a href="<?php echo esc_url(wdk_url_suffix($results_page,'search_location='.wmvc_show_data('idlocation', $value)));?>#results" class="wdk-link"> |
| 30 |
<?php if(wmvc_show_data('show_icon', $settings) == 'true'):?> |
| 31 |
<?php if(wmvc_show_data('icon_id', $value, false)):?> |
| 32 |
<img src="<?php echo esc_url(wdk_image_src($value, 'full',NULL,'icon_id', 'icon_path'));?>" alt="<?php echo wmvc_show_data('location_title', $value);?>" class="wdk-icon"> |
| 33 |
<?php endif;?> |
| 34 |
<?php else:?> |
| 35 |
<?php \Elementor\Icons_Manager::render_icon( $settings['item_icon_i'], [ 'aria-hidden' => 'true' ] );?> |
| 36 |
<?php endif;?> |
| 37 |
<span class="wdk-title"><?php echo wmvc_show_data('location_title', $value);?></span> |
| 38 |
<span class="wdk-count">(<?php echo wmvc_show_data('listings_counter', $value);?>)</span> |
| 39 |
</a> |
| 40 |
</li> |
| 41 |
<?php endforeach;?> |
| 42 |
<?php else:?> |
| 43 |
<div class="wdk-col wdk-col-full wdk-col-full-always"> |
| 44 |
<p class="wdk_alert wdk_alert-danger"><?php echo esc_html__('Locations not found', 'wpdirectorykit');?></p> |
| 45 |
</div> |
| 46 |
<?php endif;?> |
| 47 |
</ul> |
| 48 |
</div> |
| 49 |
</div> |
| 50 |
|
| 51 |
|