Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/shortcodes/googlemap/googlemap.php |
<?php
/**
* Shortcode: Google Map
*
* @package ThemeREX Addons
* @since v1.2
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
// Load shortcode's specific scripts if current mode is Preview in the PageBuilder
if ( !function_exists( 'trx_addons_sc_googlemap_load_scripts' ) ) {
add_action("trx_addons_action_pagebuilder_preview_scripts", 'trx_addons_sc_googlemap_load_scripts', 10, 1);
function trx_addons_sc_googlemap_load_scripts( $force = false ) {
trx_addons_enqueue_optimized( 'sc_googlemap', $force, array(
'lib' => array(
'callback' => function() {
if ( trx_addons_get_option('api_google') != '' ) {
trx_addons_enqueue_googlemap();
}
}
),
'css' => array(
'trx_addons-sc_googlemap' => array( 'src' => TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.css' ),
),
'callback' => function() {
if ( trx_addons_get_option('api_google') != '' ) {
wp_enqueue_script( 'trx_addons-sc_googlemap', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.js'), array('jquery'), null, true );
wp_enqueue_script( 'markerclusterer', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/cluster/markerclusterer.min.js'), array('jquery'), null, true );
}
},
'check' => array(
array( 'type' => 'sc', 'sc' => 'trx_sc_googlemap' ),
array( 'type' => 'gb', 'sc' => 'wp:trx-addons/googlemap' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_googlemap"' ),
array( 'type' => 'elm', 'sc' => '"shortcode":"[trx_sc_googlemap' ),
)
) );
}
}
// Enqueue responsive styles for frontend
if ( ! function_exists( 'trx_addons_sc_googlemap_load_scripts_front_responsive' ) ) {
add_action( 'wp_enqueue_scripts', 'trx_addons_sc_googlemap_load_scripts_front_responsive', TRX_ADDONS_ENQUEUE_RESPONSIVE_PRIORITY );
add_action( 'trx_addons_action_load_scripts_front_sc_googlemap', 'trx_addons_sc_googlemap_load_scripts_front_responsive', 10, 1 );
function trx_addons_sc_googlemap_load_scripts_front_responsive( $force = false ) {
trx_addons_enqueue_optimized_responsive( 'sc_googlemap', $force, array(
'css' => array(
'trx_addons-sc_googlemap-responsive' => array(
'src' => TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.responsive.css',
'media' => 'md'
),
),
) );
}
}
// Merge shortcode's specific styles into single stylesheet
if ( !function_exists( 'trx_addons_sc_googlemap_merge_styles' ) ) {
add_filter("trx_addons_filter_merge_styles", 'trx_addons_sc_googlemap_merge_styles');
function trx_addons_sc_googlemap_merge_styles($list) {
$list[ TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.css' ] = false;
return $list;
}
}
// Merge shortcode's specific styles to the single stylesheet (responsive)
if ( !function_exists( 'trx_addons_sc_googlemap_merge_styles_responsive' ) ) {
add_filter("trx_addons_filter_merge_styles_responsive", 'trx_addons_sc_googlemap_merge_styles_responsive');
function trx_addons_sc_googlemap_merge_styles_responsive($list) {
$list[ TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.responsive.css' ] = false;
return $list;
}
}
// Merge googlemap specific scripts to the single file
if ( !function_exists( 'trx_addons_sc_googlemap_merge_scripts' ) ) {
add_action("trx_addons_filter_merge_scripts", 'trx_addons_sc_googlemap_merge_scripts');
function trx_addons_sc_googlemap_merge_scripts($list) {
$list[ TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap.js' ] = false;
$list[ TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/cluster/markerclusterer.min.js' ] = false;
return $list;
}
}
// Load styles and scripts if present in the cache of the menu
if ( !function_exists( 'trx_addons_sc_googlemap_check_in_html_output' ) ) {
add_filter( 'trx_addons_filter_get_menu_cache_html', 'trx_addons_sc_googlemap_check_in_html_output', 10, 1 );
add_action( 'trx_addons_action_show_layout_from_cache', 'trx_addons_sc_googlemap_check_in_html_output', 10, 1 );
add_action( 'trx_addons_action_check_page_content', 'trx_addons_sc_googlemap_check_in_html_output', 10, 1 );
function trx_addons_sc_googlemap_check_in_html_output( $content = '' ) {
$args = array(
'check' => array(
'class=[\'"][^\'"]*sc_googlemap'
)
);
if ( trx_addons_check_in_html_output( 'sc_googlemap', $content, $args ) ) {
trx_addons_sc_googlemap_load_scripts( true );
}
return $content;
}
}
// Add messages for JS
if ( !function_exists( 'trx_addons_sc_googlemap_localize_script' ) ) {
add_filter("trx_addons_filter_localize_script", 'trx_addons_sc_googlemap_localize_script');
function trx_addons_sc_googlemap_localize_script($storage) {
$storage['msg_sc_googlemap_not_avail'] = esc_html__('Googlemap service is not available', 'trx_addons');
$storage['msg_sc_googlemap_geocoder_error'] = esc_html__('Error while geocode address', 'trx_addons');
return $storage;
}
}
// trx_sc_googlemap
//-------------------------------------------------------------
/*
[trx_sc_googlemap id="unique_id" style="grey" zoom="16" markers="encoded json data"]
*/
if ( !function_exists( 'trx_addons_sc_googlemap' ) ) {
function trx_addons_sc_googlemap($atts, $content=''){
$atts = trx_addons_sc_prepare_atts( 'trx_sc_googlemap', $atts, trx_addons_sc_common_atts( 'trx_sc_googlemap', 'id,title', array(
// Individual params
"type" => "default",
"zoom" => 16,
"center" => '',
"style" => 'default',
"map_id" => '',
"address" => '',
"markers" => '',
"cluster" => '',
"width" => "100%",
"height" => "400",
"prevent_scroll" => 0,
// Content from non-containers PageBuilder
"content" => ""
) ) );
if (empty($atts['id'])) {
$atts['id'] = trx_addons_generate_id( 'sc_googlemap_' );
}
if (empty($atts['style'])) {
$atts['style'] = trx_addons_array_get_first( trx_addons_get_list_sc_googlemap_styles() );
}
if (!is_array($atts['markers']) && function_exists('vc_param_group_parse_atts')) {
$atts['markers'] = (array) vc_param_group_parse_atts( $atts['markers'] );
}
$output = '';
if ((is_array($atts['markers']) && count($atts['markers']) > 0) || !empty($atts['address'])) {
if (!empty($atts['address'])) {
$atts['markers'] = array(
array(
'title' => '',
'description' => '',
'url' => '',
'address' => $atts['address'],
'icon' => trx_addons_remove_protocol(trx_addons_get_option('api_google_marker')),
'icon_width' => '',
'icon_height' => ''
)
);
} else {
foreach ($atts['markers'] as $k=>$v) {
if ( function_exists('vc_value_from_safe') ) {
if ( ! empty($v['description']) ) {
$atts['markers'][$k]['description'] = trim( vc_value_from_safe( $v['description'] ) );
}
if ( ! empty($v['html']) ) {
$atts['markers'][$k]['html'] = trim( vc_value_from_safe( $v['html'] ) );
}
}
if (!empty($v['icon'])) {
$atts['markers'][$k]['icon'] = trx_addons_get_attachment_url($v['icon'], 'full');
if (!empty($v['icon_retina']) && trx_addons_get_retina_multiplier() > 1
&& (empty($v['icon_width']) || empty($v['icon_height']))) {
$attr = trx_addons_getimagesize($atts['markers'][$k]['icon']);
$atts['markers'][$k]['icon_width'] = ! empty( $attr[0] ) ? $attr[0] : '';
$atts['markers'][$k]['icon_height'] = ! empty( $attr[1] ) ? $attr[1] : '';
}
} else {
$v['icon'] = trx_addons_remove_protocol(trx_addons_get_option('api_google_marker'));
}
if (!empty($v['icon_retina']) && trx_addons_get_retina_multiplier() > 1) {
$atts['markers'][$k]['icon'] = trx_addons_get_attachment_url($v['icon_retina'], 'full');
}
}
}
$atts['zoom'] = max(0, min(21, $atts['zoom']));
$atts['center'] = trim($atts['center']);
if (count($atts['markers']) > 1) {
if (empty($atts['cluster'])) {
$atts['cluster'] = trx_addons_remove_protocol(trx_addons_get_option('api_google_cluster'));
}
if (empty($atts['cluster'])) {
$atts['cluster'] = trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/cluster/cluster-icon.png');
} else if ((int) $atts['cluster'] > 0) {
$atts['cluster'] = trx_addons_get_attachment_url($atts['cluster'], apply_filters('trx_addons_filter_thumb_size', trx_addons_get_thumb_size('masonry'), 'googlemap-cluster'));
}
} else if ($atts['zoom'] == 0) {
$atts['zoom'] = 16;
}
$atts['class'] .= (!empty($atts['class']) ? ' ' : '')
. trx_addons_add_inline_css_class(trx_addons_get_css_dimensions_from_values($atts['width'], $atts['height']));
if (empty($atts['style'])) $atts['style'] = 'default';
$atts['content'] = do_shortcode(empty($atts['content']) ? $content : $atts['content']);
// Load shortcode-specific scripts and styles
trx_addons_sc_googlemap_load_scripts( true );
// Load template
ob_start();
trx_addons_get_template_part(array(
TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/tpl.'.trx_addons_esc($atts['type']).'.php',
TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/tpl.default.php'
),
'trx_addons_args_sc_googlemap',
$atts
);
$output = ob_get_contents();
ob_end_clean();
}
return apply_filters('trx_addons_sc_output', $output, 'trx_sc_googlemap', $atts, $content);
}
}
// Add shortcode [trx_sc_googlemap]
if (!function_exists('trx_addons_sc_googlemap_add_shortcode')) {
function trx_addons_sc_googlemap_add_shortcode() {
add_shortcode("trx_sc_googlemap", "trx_addons_sc_googlemap");
}
add_action('init', 'trx_addons_sc_googlemap_add_shortcode', 20);
}
// Add shortcodes
//----------------------------------------------------------------------------
// Add shortcodes to Elementor
if ( trx_addons_exists_elementor() && function_exists('trx_addons_elm_init') ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap-sc-elementor.php';
}
// Add shortcodes to Gutenberg
if ( trx_addons_exists_gutenberg() && function_exists( 'trx_addons_gutenberg_get_param_id' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap-sc-gutenberg.php';
}
// Add shortcodes to VC
if ( trx_addons_exists_vc() && function_exists( 'trx_addons_vc_add_id_param' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap-sc-vc.php';
}
// Create our widget
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'googlemap/googlemap-widget.php';