Submit
Path:
~
/
home
/
getwphos
/
public_html
/
brueggemann
/
wp-content
/
plugins
/
wanderland-core
/
shortcodes
/
google-map
/
File Content:
google-map.php
<?php namespace WanderlandCore\CPT\Shortcodes\GoogleMap; use WanderlandCore\Lib; class GoogleMap implements Lib\ShortcodeInterface { private $base; function __construct() { $this->base = 'mkdf_google_map'; add_action( 'vc_before_init', array( $this, 'vcMap' ) ); } public function getBase() { return $this->base; } public function vcMap() { if ( function_exists( 'vc_map' ) ) { vc_map( array( 'name' => esc_html__( 'Google Map', 'wanderland-core' ), 'base' => $this->base, 'category' => esc_html__( 'by WANDERLAND', 'wanderland-core' ), 'icon' => 'icon-wpb-google-map extended-custom-icon', 'show_settings_on_create' => true, 'params' => array( array( 'type' => 'textfield', 'param_name' => 'address1', 'heading' => esc_html__( 'Address 1', 'wanderland-core' ) ), array( 'type' => 'textfield', 'param_name' => 'address2', 'heading' => esc_html__( 'Address 2', 'wanderland-core' ), 'dependency' => Array( 'element' => 'address1', 'not_empty' => true ) ), array( 'type' => 'textfield', 'param_name' => 'address3', 'heading' => esc_html__( 'Address 3', 'wanderland-core' ), 'dependency' => Array( 'element' => 'address2', 'not_empty' => true ) ), array( 'type' => 'textfield', 'param_name' => 'address4', 'heading' => esc_html__( 'Address 4', 'wanderland-core' ), 'dependency' => Array( 'element' => 'address3', 'not_empty' => true ) ), array( 'type' => 'textfield', 'param_name' => 'address5', 'heading' => esc_html__( 'Address 5', 'wanderland-core' ), 'dependency' => Array( 'element' => 'address4', 'not_empty' => true ) ), array( 'type' => 'dropdown', 'param_name' => 'snazzy_map_style', 'heading' => esc_html__( 'Snazzy Map Style', 'wanderland-core' ), 'value' => array_flip( wanderland_mikado_get_yes_no_select_array( false ) ), 'description' => esc_html__( 'Enabling this option will set predefined snazzy map style', 'wanderland-core' ) ), array( 'type' => 'textarea', 'param_name' => 'snazzy_map_code', 'heading' => esc_html__( 'Snazzy Map Code', 'wanderland-core' ), 'description' => sprintf( esc_html__( 'Fill code from snazzy map site %s to add predefined style for your google map', 'wanderland-core' ), '<a href="https://snazzymaps.com/" target="_blank">https://snazzymaps.com/</a>' ), 'dependency' => Array( 'element' => 'snazzy_map_style', 'value' => array( 'yes' ) ) ), array( 'type' => 'dropdown', 'param_name' => 'custom_map_style', 'heading' => esc_html__( 'Custom Map Style', 'wanderland-core' ), 'value' => array_flip( wanderland_mikado_get_yes_no_select_array( false ) ), 'description' => esc_html__( 'Enabling this option will allow Map editing', 'wanderland-core' ), 'dependency' => Array( 'element' => 'snazzy_map_style', 'value' => array( 'no' ) ) ), array( 'type' => 'colorpicker', 'param_name' => 'color_overlay', 'heading' => esc_html__( 'Color Overlay', 'wanderland-core' ), 'description' => esc_html__( 'Choose a Map color overlay', 'wanderland-core' ), 'dependency' => Array( 'element' => 'custom_map_style', 'value' => array( 'yes' ) ) ), array( 'type' => 'textfield', 'param_name' => 'saturation', 'heading' => esc_html__( 'Saturation', 'wanderland-core' ), 'description' => esc_html__( 'Choose a level of saturation (-100 = least saturated, 100 = most saturated)', 'wanderland-core' ), 'dependency' => Array( 'element' => 'custom_map_style', 'value' => array( 'yes' ) ) ), array( 'type' => 'textfield', 'param_name' => 'lightness', 'heading' => esc_html__( 'Lightness', 'wanderland-core' ), 'description' => esc_html__( 'Choose a level of lightness (-100 = darkest, 100 = lightest)', 'wanderland-core' ), 'dependency' => Array( 'element' => 'custom_map_style', 'value' => array( 'yes' ) ) ), array( 'type' => 'attach_image', 'param_name' => 'pin', 'heading' => esc_html__( 'Pin', 'wanderland-core' ), 'description' => esc_html__( 'Select a pin image to be used on Google Map', 'wanderland-core' ) ), array( 'type' => 'textfield', 'param_name' => 'zoom', 'heading' => esc_html__( 'Map Zoom', 'wanderland-core' ), 'description' => esc_html__( 'Enter a zoom factor for Google Map (0 = whole worlds, 19 = individual buildings)', 'wanderland-core' ) ), array( 'type' => 'dropdown', 'param_name' => 'scroll_wheel', 'heading' => esc_html__( 'Zoom Map on Mouse Wheel', 'wanderland-core' ), 'value' => array_flip( wanderland_mikado_get_yes_no_select_array( false ) ), 'description' => esc_html__( 'Enabling this option will allow users to zoom in on Map using mouse wheel', 'wanderland-core' ) ), array( 'type' => 'textfield', 'param_name' => 'map_height', 'heading' => esc_html__( 'Map Height', 'wanderland-core' ) ) ) ) ); } } public function render( $atts, $content = null ) { $args = array( 'address1' => '', 'address2' => '', 'address3' => '', 'address4' => '', 'address5' => '', 'snazzy_map_style' => 'no', 'snazzy_map_code' => '', 'custom_map_style' => 'no', 'color_overlay' => '#393939', 'saturation' => '-100', 'lightness' => '-60', 'zoom' => '12', 'pin' => '', 'scroll_wheel' => 'no', 'map_height' => '600', 'enable_direction_link' => 'no' ); $params = shortcode_atts( $args, $atts ); $rand_id = mt_rand( 100000, 3000000 ); $params['map_data'] = $this->getMapDate( $params, $rand_id ); $params['map_id'] = 'mkdf-map-' . $rand_id; $html = wanderland_core_get_shortcode_module_template_part( 'templates/google-map-template', 'google-map', '', $params ); return $html; } private function getMapDate( $params, $id ) { $map_data = array(); $addresses_array = array(); if ( $params['address1'] != '' ) { array_push( $addresses_array, esc_attr( $params['address1'] ) ); } if ( $params['address2'] != '' ) { array_push( $addresses_array, esc_attr( $params['address2'] ) ); } if ( $params['address3'] != '' ) { array_push( $addresses_array, esc_attr( $params['address3'] ) ); } if ( $params['address4'] != '' ) { array_push( $addresses_array, esc_attr( $params['address4'] ) ); } if ( $params['address5'] != '' ) { array_push( $addresses_array, esc_attr( $params['address5'] ) ); } if ( $params['pin'] != "" ) { $map_pin = wp_get_attachment_image_src( $params['pin'], 'full', true ); $map_pin = $map_pin[0]; } else { $map_pin = get_template_directory_uri() . "/assets/img/pin.png"; } $map_data[] = "data-addresses='[\"" . implode( '","', $addresses_array ) . "\"]'"; $map_data[] = 'data-custom-map-style=' . $params['custom_map_style']; $map_data[] = 'data-color-overlay=' . $params['color_overlay']; $map_data[] = 'data-saturation=' . $params['saturation']; $map_data[] = 'data-lightness=' . $params['lightness']; $map_data[] = 'data-zoom=' . $params['zoom']; $map_data[] = 'data-pin=' . $map_pin; $map_data[] = 'data-unique-id=' . $id; $map_data[] = 'data-scroll-wheel=' . $params['scroll_wheel']; $map_data[] = 'data-height=' . $params['map_height']; $map_data[] = $params['snazzy_map_style'] == 'yes' ? 'data-snazzy-map-style=yes' : ''; return implode( ' ', $map_data ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
assets
---
0755
templates
---
0755
functions.php
1064 bytes
0644
google-map.php
8139 bytes
0644
load.php
159 bytes
0644
N4ST4R_ID | Naxtarrr