FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
supreme-modules-for-divi
/
includes
/
modules
/
EmbedGoogleMap
Edit File: EmbedGoogleMap.php
<?php class DSM_EmbedGoogleMap extends ET_Builder_Module { public $slug = 'dsm_embed_google_map'; public $vb_support = 'on'; public $icon_path; protected $module_credits = array( 'module_uri' => 'https://divisupreme.com/', 'author' => 'Divi Supreme', 'author_uri' => 'https://divisupreme.com/', ); public function init() { $this->name = esc_html__( 'Supreme Embed Google Map', 'supreme-modules-for-divi' ); $this->icon_path = plugin_dir_path( __FILE__ ) . 'icon.svg'; $this->settings_modal_toggles = array( 'general' => array( 'toggles' => array( 'main_content' => esc_html__( 'Embed Google Map', 'supreme-modules-for-divi' ), ), ), ); } public function get_advanced_fields_config() { return array( 'fonts' => false, 'button' => false, 'text' => false, 'background' => false, 'height' => array( 'css' => array( 'main' => '%%order_class%% iframe', ), 'options' => array( 'height' => array( 'default' => '320px', 'default_tablet' => '320px', 'default_phone' => '320px', ), ), ), ); } public function get_fields() { return array( 'google_maps_script_notice' => array( 'type' => 'warning', 'value' => true, 'display_if' => true, 'message' => esc_html__( 'Google Embed Map API is not required. However, if you encounter any issues with the Embed Google Map, please consider using Google Embed Map API for stability in the future.', 'supreme-modules-for-divi' ), 'toggle_slug' => 'main_content', ), 'google_api_key' => array( 'label' => esc_html__( 'Google API Key', 'supreme-modules-for-divi' ), 'type' => 'text', 'option_category' => 'basic_option', 'attributes' => 'readonly', 'additional_button' => sprintf( ' <a href="%2$s" target="_blank" class="et_pb_update_google_key button" data-empty_text="%3$s">%1$s</a>', esc_html__( 'Change API Key', 'supreme-modules-for-divi' ), esc_url( et_pb_get_options_page_link() ), esc_attr__( 'Add Your API Key', 'supreme-modules-for-divi' ) ), 'additional_button_type' => 'change_google_api_key', 'class' => array( 'et_pb_google_api_key', 'et-pb-helper-field' ), 'description' => sprintf( 'The module uses the Google Maps API and requires a valid Google API Key to function. Before using the map module, please make sure you have added your API key inside the Divi Theme Options panel. Learn more about how to create your Google API Key <a href="%1$s" target="_blank">here</a>.', esc_url( 'http://www.elegantthemes.com/gallery/divi/documentation/map/#gmaps-api-key' ) ), 'toggle_slug' => 'main_content', ), 'address' => array( 'label' => esc_html__( 'Address', 'supreme-modules-for-divi' ), 'type' => 'text', 'option_category' => 'basic_option', 'description' => esc_html__( 'Enter the address for the embed Google Map.', 'supreme-modules-for-divi' ), 'default_on_front' => '1233 Howard St Apt 3A San Francisco, CA 94103-2775', 'toggle_slug' => 'main_content', 'dynamic_content' => 'text', ), 'zoom' => array( 'label' => esc_html__( 'Zoom', 'supreme-modules-for-divi' ), 'type' => 'range', 'option_category' => 'layout', 'toggle_slug' => 'main_content', 'default_unit' => '', 'default' => '10', 'unitless' => true, 'allow_empty' => false, 'range_settings' => array( 'min' => '1', 'max' => '22', 'step' => '1', ), ), ); } function render( $attrs, $content, $render_slug ) { $address = $this->props['address']; $zoom = $this->props['zoom']; if ( et_pb_get_google_api_key() ) { $output = sprintf( '<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.com/maps/embed/v1/place?key=%5$s&q=%1$s&zoom=%2$s&language=%4$s" aria-label="%3$s"></iframe>', rawurlencode( $address ), absint( $zoom ), esc_attr( $address ), esc_attr( get_locale() ), esc_attr( et_pb_get_google_api_key() ) ); } else { $output = sprintf( '<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=%1$s&t=m&z=%2$s&output=embed&iwloc=near&hl=%4$s" aria-label="%3$s"></iframe>', rawurlencode( $address ), absint( $zoom ), esc_attr( $address ), esc_attr( get_locale() ) ); } if ( isset( get_option( 'dsm_settings_misc' )['dsm_dynamic_assets'] ) && ! empty( get_option( 'dsm_settings_misc' )['dsm_dynamic_assets'] ) && 'on' === get_option( 'dsm_settings_misc' )['dsm_dynamic_assets'] ) { if ( isset( get_option( 'dsm_settings_misc' )['dsm_dynamic_assets_compatibility'] ) && ! empty( get_option( 'dsm_settings_misc' )['dsm_dynamic_assets'] ) && 'on' === get_option( 'dsm_settings_misc' )['dsm_dynamic_assets_compatibility'] ) { wp_enqueue_style( 'dsm-embed-google-map', plugin_dir_url( __DIR__ ) . 'EmbedGoogleMap/style.css', array(), DSM_VERSION, 'all' ); } else { add_filter( 'et_global_assets_list', array( $this, 'dsm_load_required_divi_assets' ), 10, 3 ); add_filter( 'et_late_global_assets_list', array( $this, 'dsm_load_required_divi_assets' ), 10, 3 ); } } return $output; } /** * Force load global styles. * * @param array $assets_list Current global assets on the list. * * @return array */ public function dsm_load_required_divi_assets( $assets_list, $assets_args, $instance ) { $assets_prefix = et_get_dynamic_assets_path(); $all_shortcodes = $instance->get_saved_page_shortcodes(); $this->_cpt_suffix = et_builder_should_wrap_styles() && ! et_is_builder_plugin_active() ? '_cpt' : ''; if ( ! isset( $assets_list['et_jquery_magnific_popup'] ) ) { $assets_list['et_jquery_magnific_popup'] = array( 'css' => "{$assets_prefix}/css/magnific_popup.css", ); } if ( ! isset( $assets_list['et_pb_overlay'] ) ) { $assets_list['et_pb_overlay'] = array( 'css' => "{$assets_prefix}/css/overlay{$this->_cpt_suffix}.css", ); } // EmbedGoogleMap. if ( ! isset( $assets_list['dsm_embed_google_map'] ) ) { $assets_list['dsm_embed_google_map'] = array( 'css' => plugin_dir_url( __DIR__ ) . 'EmbedGoogleMap/style.css', ); } return $assets_list; } } new DSM_EmbedGoogleMap();
Save
Back