| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/cpt/cars/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/cpt/cars/tpe.widget.cars_compare.php |
<?php
/**
* Template to represent shortcode as a widget in the Elementor preview area
*
* Written as a Backbone JavaScript template and using to generate the live preview in the Elementor's Editor
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.6.41
*/
extract(get_query_var('trx_addons_args_widget_cars_compare'));
extract(trx_addons_prepare_widgets_args('widget_cars_compare_'.mt_rand(), 'widget_cars_compare'));
// Before widget (defined by themes)
trx_addons_show_layout($before_widget);
// Widget title if one was input (before and after defined by themes)
?><#
if (settings.title != '') {
#><?php trx_addons_show_layout($before_title); ?><#
print(settings.title);
#><?php trx_addons_show_layout($after_title); ?><#
}
// Widget body
var list = trx_addons_get_cookie('trx_addons_cars_compare_list');
if (list != '' && list.substr(0, 1) == '{') list = JSON.parse(list);
else list = '';
#>
<ul class="cars_compare_list<# if (list=='') print(' cars_compare_list_empty'); #>"><#
if (list != '') {
_.each(list, function(v, k) {
#><li data-car-id="<# print(k.replace('id_', '')); #>" title="<?php esc_attr_e('Click to remove this car from the compare list', 'trx_addons'); ?>">{{{ v }}}</li><#
});
}
#></ul>
<div class="cars_compare_message"><?php esc_html_e('Select 2+ cars to compare', 'trx_addons'); ?></div>
<a class="cars_compare_button sc_button" href="<?php echo esc_url(trx_addons_add_to_url(get_post_type_archive_link(TRX_ADDONS_CPT_CARS_PT), array('compare'=>1))); ?>"><?php esc_html_e('Compare', 'trx_addons'); ?></a>
<?php
// After widget (defined by themes)
trx_addons_show_layout($after_widget);