PluginProbe
WP Directory Kit / 1.2.7
WP Directory Kit v1.2.7
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / elementor-elements / views / wdk-locations-list.php

wdk-locations-list.php in WP Directory Kit 1.2.7, at elementor-elements/views/wdk-locations-list.php

51 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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