Overview

Namespaces

  • None
  • WPGMZA
    • Integration
    • Selector

Classes

  • WPGMZA\AdminMarkerDataTable
  • WPGMZA\AjaxTable
  • WPGMZA\AutoLoader
  • WPGMZA\Crud
  • WPGMZA\Database
  • WPGMZA\DataTable
  • WPGMZA\Distance
  • WPGMZA\DOMDocument
  • WPGMZA\DOMElement
  • WPGMZA\Factory
  • WPGMZA\GDPRCompliance
  • WPGMZA\GlobalSettings
  • WPGMZA\GoogleGeocoder
  • WPGMZA\GoogleMap
  • WPGMZA\GoogleMapsAPILoader
  • WPGMZA\GoogleMapsLoader
  • WPGMZA\Integration\Gutenberg
  • WPGMZA\Integration\WPMigrateDB
  • WPGMZA\LatLng
  • WPGMZA\Map
  • WPGMZA\MapsEngineDialog
  • WPGMZA\Marker
  • WPGMZA\MarkerDataTable
  • WPGMZA\MarkerFilter
  • WPGMZA\ModalDialog
  • WPGMZA\NominatimGeocodeCache
  • WPGMZA\OLLoader
  • WPGMZA\Plugin
  • WPGMZA\Query
  • WPGMZA\QueryFragment
  • WPGMZA\RestAPI
  • WPGMZA\ScriptLoader
  • WPGMZA\Selector\AttributeSelector
  • WPGMZA\Selector\Parser
  • WPGMZA\Selector\PseudoSelector
  • WPGMZA\Selector\Selector
  • WPGMZA\Selector\Token
  • WPGMZA\Selector\Tokenizer
  • WPGMZA\Selector\TokenStream
  • WPGMZA\Selector\XPathConverter
  • WPGMZA\Strings
  • WPGMZA\Table

Exceptions

  • WPGMZA\Selector\ConvertException
  • WPGMZA\Selector\ParseException

Functions

  • WPGMZA\create_marker_instance_delegate
  • WPGMZA\query_nominatim_cache
  • WPGMZA\Selector\trace
  • WPGMZA\store_nominatim_cache
  • wpgmza_backwards_compat_get_all_circle_data
  • wpgmza_backwards_compat_get_all_rectangle_data
  • wpgmza_check_admin_head_backwards_compat_v6
  • wpgmza_check_map_editor_backwards_compat_v6
  • wpgmza_check_pro_compat_required_v6
  • wpgmza_check_user_backwards_compat_v6
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 
<?php

namespace WPGMZA;

/**
 * This class is a container for all localized strings used by the plugin.
 * In the future, functionality will be added to build a dummy static string file from dynamic strings in the database, this will allow 3rd party software to scan dynamic strings for translation
 */
class Strings
{
    /**
     * Returns localized strings, passed through the wpgmza_localized_strings filter
     * @return array A key value pairs array of localized strings, where the array key is the variable name of the string on WPGMZA.localized_strings, the value is the localized string.
     */
    public function getLocalizedStrings()
    {
        return apply_filters('wpgmza_localized_strings', array(
            'unsecure_geolocation'      => __('Many browsers are no longer allowing geolocation from unsecured origins. You will need to secure your site with an SSL certificate (HTTPS) or this feature may not work for your visitors', 'wp-google-maps'),
            'use_my_location'           => __('Use my location', 'wp-google-maps'),
            
            'google_api_not_loaded'     => __('The map cannot be initialized because the Maps API has not been loaded. Please check your settings.', 'wp-google-maps'),
            'no_google_maps_api_key'    => __('You have not entered a Google Maps API Key. Please see our documentation on obtaining an API key.', 'wp-google-maps'),
            
            'documentation'             => __('Documentation', 'wp-google-maps'),
            'api_dashboard'             => __('API Dashboard', 'wp-google-maps'),
            'verify_project'            => __('Verify Project', 'wp-google-maps'),
            
            'failed_to_get_address'     => __('Failed to get address', 'wp-google-maps'),
            'failed_to_create_marker'   => __('Failed to create marker %d - this marker cannot be placed on the map.', 'wp-google-maps'),
            
            'my_location'               => __('My Location', 'wp-google-maps'),
            
            'kilometers_away'           => __('km away', 'wp-google-maps'),
            'miles_away'                => __('miles away', 'wp-google-maps'),
            
            'import_completed'          => __( 'Import completed.', 'wp-google-maps' ),
            'importing_please_wait'     => __('Importing, this may take a moment...', 'wp-google-maps'),
            
            'no_address_specified'      => __('No address specified', 'wp-google-maps'),
            'add_marker'                => __('Add Marker', 'wp-google-maps'),
            'save_marker'               => __('Save Marker', 'wp-google-maps'),
            'please_wait'               => __('Please Wait...', 'wp-google-maps'),
            'zero_results'              => __('Zero results found', 'wp-google-maps'),
            'geocode_fail'              => __('Geocode failed due to technical reasons', 'wp-google-maps')
        ));
    }
    
    /**
     * This function builds a dummy PHP file containing strings from the database,
     * making these strings scannable by translation software.
     * @todo Implement
     */
    public function buildDynamicStringDummyFile()
    {
        // For each wp_wpgmza table
        // For each column
        // If column is not text / varchar, continue
        // If column is JSON / serialized, deserialize it
        // Or, if it's plain text, put that in an object
        // Iterate recursively over the object, build PHP file from values
        // Write dummy file
    }
}
API documentation generated by ApiGen