HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wptoho/wp-content/themes/themify-ultra/themify/themify-builder/modules/module-map.php
<?php

defined( 'ABSPATH' ) || exit;

/**
 * Module Name: Map
 * Description: Display Map
 */

class TB_Map_Module extends Themify_Builder_Component_Module {

    
    public static function get_module_name():string{
        add_filter( 'themify_builder_active_vars', array(__CLASS__, 'check_map_api'));
        return __('Map', 'themify');
    }

    public static function get_module_icon():string{
        return 'map-alt';
    }

    /**
     * Handles Ajax request to check map api
     *
     * @since 4.5.0
     */
    public static function check_map_api($values) {
        $googleAPI = themify_builder_get( 'setting-google_map_key', 'builder_settings_google_map_key' );
        $values['google_api'] =  !empty($googleAPI);
        $url = themify_is_themify_theme() ? admin_url( 'admin.php?page=themify#setting-integration-api' ) : admin_url( 'admin.php?page=themify-builder&tab=builder_settings' );
        if(!$values['google_api']) {
            $values['google_api_err'] = sprintf( __('Please enter the required <a href="%s" target="_blank">Google Maps API key</a>.','themify'), $url );
        }

        $bingAPI = themify_builder_get( 'setting-bing_map_key', 'builder_settings_bing_map_key' );
        $values['bing_api'] =  !empty($bingAPI);
        if(!$values['bing_api']) {
            $values['bing_api_err'] = sprintf( __('Please enter the required <a href="%s" target="_blank">Bing Maps API key</a>.','themify'), $url );
        }

        $azure_key = themify_builder_get( 'setting-azure_map_key', 'builder_settings_azure_map_key' );
        $values['azure_api'] =  !empty( $azure_key );
        if ( ! $values['azure_api'] ) {
            $values['azure_api_err'] = sprintf( __('Please enter the required <a href="%s" target="_blank">Azure subscription key</a>.','themify'), $url );
        }

        return $values;
    }


    /**
     * Render plain content
     */
    public static function get_static_content(array $module):string {
        $mod_settings = $module['mod_settings']+array(
            'mod_title_map' => '',
            'address_map' => 'Toronto',
            'zoom_map' => 15
        );
        if (!empty($mod_settings['address_map'])) {
            $mod_settings['address_map'] = preg_replace('/\s+/', ' ', trim($mod_settings['address_map']));
        }
        $text = sprintf('<h3>%s</h3>', $mod_settings['mod_title_map']);
        $text .= sprintf(
            '<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=%s&amp;t=m&amp;z=%d&amp;output=embed&amp;iwloc=near"></iframe>', urlencode($mod_settings['address_map']), absint($mod_settings['zoom_map'])
        );
        return $text;
    }

	public static function get_translatable_text_fields( $module ) : array {
		return [ 'mod_title_map', 'latlong_map' ];
	}

	public static function get_translatable_textarea_fields( $module ) : array {
		return [ 'address_map', 'info_window_map' ];
	}
}