HEX
Server: Apache
System: Linux webm020.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: bohousj (181416)
PHP: 8.4.22
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/bohousj/www/wp-content/plugins/happy-elementor-addons-pro/wpml/google-map.php
<?php
/**
 * Advanced Google Map
 */
namespace Happy_Addons_Pro;

defined( 'ABSPATH' ) || die();

class WPML_Google_Map_Ha_Gmap_Polylines extends \WPML_Elementor_Module_With_Items {

	/**
	 * @return string
	 */
	public function get_items_field() {
		return 'ha_gmap_polylines';
	}

	/**
	 * @return array
	 */
	public function get_fields() {
		return [
				'ha_gmap_polyline_title',
			];
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_title( $field ) {
		switch ( $field ) {
			case 'ha_gmap_polyline_title':
				return __( 'Advanced Google Map: Title', 'happy-addons-pro' );
			default:
				return '';
		}
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_editor_type( $field ) {
		switch ( $field ) {
			case 'ha_gmap_polyline_title':
				return 'LINE';
			default:
				return '';
		}
	}
}

class WPML_Google_Map_List_Legend extends \WPML_Elementor_Module_With_Items {

	/**
	 * @return string
	 */
	public function get_items_field() {
		return 'list_legend';
	}

	/**
	 * @return array
	 */
	public function get_fields() {
		return [
				'legend_item_title',
			];
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_title( $field ) {
		switch ( $field ) {
			case 'legend_item_title':
				return __( 'Advanced Google Map: Title', 'happy-addons-pro' );
			default:
				return '';
		}
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_editor_type( $field ) {
		switch ( $field ) {
			case 'legend_item_title':
				return 'LINE';
			default:
				return '';
		}
	}
}

class WPML_Google_Map_List_Marker extends \WPML_Elementor_Module_With_Items {

	/**
	 * @return string
	 */
	public function get_items_field() {
		return 'list_marker';
	}

	/**
	 * @return array
	 */
	public function get_fields() {
		return [
				'pin_item_title',
				'pin_item_description'
			];
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_title( $field ) {
		switch ( $field ) {
			case 'pin_item_title':
				return __( 'Advanced Google Map: Title', 'happy-addons-pro' );
			case 'pin_item_description':
				return __( 'Advanced Google Map: Description', 'happy-addons-pro' );
			default:
				return '';
		}
	}

	/**
	 * @param string $field
	 *
	 * @return string
	 */
	protected function get_editor_type( $field ) {
		switch ( $field ) {
			case 'pin_item_title':
				return 'LINE';
			case 'pin_item_description':
				return 'AREA';
			default:
				return '';
		}
	}
}