Your IP : 216.73.216.240
<?php
/*------------------------------------------------------------------------
# com_zhgooglemap - Zh GoogleMap Component
# ------------------------------------------------------------------------
# author: Dmitry Zhuk
# copyright: Copyright (C) 2011 zhuk.cc. All Rights Reserved.
# license: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
# website: http://zhuk.cc
# Technical Support Forum: http://forum.zhuk.cc/
-------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
/**
* Zh GoogleMap Helper
*/
abstract class comZhGoogleMapPlacemarksHelper
{
public static function get_ArticleCategory($Id)
{
$ret_val = 0;
if ((int)$Id != 0)
{
$dbSO = JFactory::getDBO();
$querySO = $dbSO->getQuery(true);
$querySO->select('h.catid')
->from('#__content as h')
->where('h.id = '.(int) $Id);
$dbSO->setQuery($querySO);
$mySO = $dbSO->loadObject();
}
if (isset($mySO))
{
$ret_val = $mySO->catid;
}
return $ret_val;
}
public static function get_MapOverride($Id)
{
if ((int)$Id != 0)
{
$dbSO = JFactory::getDBO();
$querySO = $dbSO->getQuery(true);
$querySO->select('h.*')
->from('#__zhgooglemaps_text_overrides as h')
->where('h.id = '.(int) $Id);
$dbSO->setQuery($querySO);
$mySO = $dbSO->loadObject();
}
return $mySO;
}
public static function get_StreetViewOptions($svId)
{
$povSV = '';
if ((int)$svId != 0)
{
$dbSV = JFactory::getDBO();
$querySV = $dbSV->getQuery(true);
$querySV->select('h.*')
->from('#__zhgooglemaps_streetviews as h')
->where('h.id = '.(int) $svId);
$dbSV->setQuery($querySV);
$mySV = $dbSV->loadObject();
// new lines is prohibited, because it is used in function parameters
if (isset($mySV))
{
$povSV .= '{';
$povSV .= ' heading: '.(int)$mySV->heading.',';
$povSV .= ' zoom: '.(int)$mySV->zoom.',';
$povSV .= ' pitch: '.(int)$mySV->pitch;
$povSV .= '}';
}
}
return $povSV;
}
public static function get_WeatherCloudLayers($wclId, $suffixID)
{
$layerWCL = '';
if ((int)$wclId != 0)
{
$dbWCL = JFactory::getDBO();
$queryWCL = $dbWCL->getQuery(true);
$queryWCL->select('h.*')
->from('#__zhgooglemaps_weathertypes as h')
->where('h.id = '.(int) $wclId);
$dbWCL->setQuery($queryWCL);
$myWCL = $dbWCL->loadObject();
if (isset($myWCL))
{
// Weather Layer
if ((int)$myWCL->weatherlayer != 0)
{
$layerWCL .= 'var weatherLayer = new google.maps.weather.WeatherLayer({'."\n";
if ((int)$myWCL->clickable != 0)
{
$layerWCL .= 'clickable: true'."\n";
}
else
{
$layerWCL .= 'clickable: false'."\n";
}
if ((int)$myWCL->suppressinfowindows != 0)
{
$layerWCL .= ', suppressInfoWindows: true'."\n";
}
else
{
$layerWCL .= ', suppressInfoWindows: false'."\n";
}
switch ((int)$myWCL->temperatureunits)
{
case 1:
$layerWCL .= ', temperatureUnits: google.maps.weather.TemperatureUnit.CELSIUS'."\n";
break;
case 2:
$layerWCL .= ', temperatureUnits: google.maps.weather.TemperatureUnit.FAHRENHEIT'."\n";
break;
default:
$layerWCL .= '';
break;
}
switch ((int)$myWCL->windspeedunits)
{
case 1:
$layerWCL .= ', windSpeedUnits: google.maps.weather.WindSpeedUnit.KILOMETERS_PER_HOUR'."\n";
break;
case 2:
$layerWCL .= ', windSpeedUnits: google.maps.weather.WindSpeedUnit.METERS_PER_SECOND'."\n";
break;
case 3:
$layerWCL .= ', windSpeedUnits: google.maps.weather.WindSpeedUnit.MILES_PER_HOUR'."\n";
break;
default:
$layerWCL .= '';
break;
}
switch ((int)$myWCL->labelcolor)
{
case 0:
$layerWCL .= '';
break;
case 1:
$layerWCL .= ', labelColor: google.maps.weather.LabelColor.BLACK'."\n";
break;
case 2:
$layerWCL .= ', labelColor: google.maps.weather.LabelColor.WHITE'."\n";
break;
default:
$layerWCL .= '';
break;
}
$layerWCL .= '});'."\n";
$layerWCL .= 'weatherLayer.setMap(map'.$suffixID.');'."\n";
}
// Cloud Layer
if ((int)$myWCL->cloudlayer != 0)
{
$layerWCL .= 'var cloudLayer = new google.maps.weather.CloudLayer({'."\n";
$layerWCL .= '});'."\n";
$layerWCL .= 'cloudLayer.setMap(map'.$suffixID.');'."\n";
}
}
}
return $layerWCL;
}
public static function get_placemark_coordinates($markerId)
{
if ((int)$markerId != 0)
{
$dbMrk = JFactory::getDBO();
$queryMrk = $dbMrk->getQuery(true);
$queryMrk->select('h.*')
->from('#__zhgooglemaps_markers as h')
->where('h.id = '.(int) $markerId);
$dbMrk->setQuery($queryMrk);
$myMarker = $dbMrk->loadObject();
if (isset($myMarker))
{
if ($myMarker->latitude != "" && $myMarker->longitude != "")
{
return 'new google.maps.LatLng('.$myMarker->latitude.', ' .$myMarker->longitude.')';
}
else
{
return 'geocode';
}
}
else
{
return '';
}
}
}
public static function get_placemark_tags($id, $type, $style)
{
$addWhereClause = "";
if ((int)$id != 0 && $type != ""
&& ($type == "com_zhgooglemap.mapmarker" || $type == "com_contact.contact"))
{
switch ((int)$style)
{
case 0:
$tagstyle = '-simple';
break;
case 1:
$tagstyle = '-advanced';
break;
case 2:
$tagstyle = '-external';
break;
default:
$tagstyle = '-simple';
break;
}
$dbMrk = JFactory::getDBO();
$addWhereClause .= 'm.content_item_id='.(int)$id;
$addWhereClause .= ' and t.type_alias=\''.$type.'\'';
$queryMrk = $dbMrk->getQuery(true);
$queryMrk->select('tg.title')
->from('#__contentitem_tag_map as m')
->leftJoin('#__content_types as t ON m.type_id=t.type_id')
->leftJoin('#__tags as tg ON m.tag_id=tg.id')
->where($addWhereClause)
;
$queryMrk->order('tg.title');
$dbMrk->setQuery($queryMrk);
$myMarker = $dbMrk->loadObjectList();
$cur_name = "";
if (isset($myMarker) && !empty($myMarker))
{
//$cur_name = count($myMarker);
foreach ($myMarker as $key => $myMrk)
{
$cur_name .= '<div id="GMapsMarkerTagITEM'.(int)$id.'" class="zhgm-placemark-tag-item'.$tagstyle.'-div">';
$cur_name .= htmlspecialchars(str_replace('\\', '/', $myMrk->title) , ENT_QUOTES, 'UTF-8');
$cur_name .= '</div>';
}
}
return $cur_name;
}
}
public static function get_placemark_content_string(
$currentArticleId,
$currentmarker, $usercontact, $useruser,
$usercontactattributes, $service_DoDirection,
$imgpathIcons, $imgpathUtils, $directoryIcons, $placemarkrating, $lang, $titleTag, $showCreateInfo,
$gogoogle, $gogoogleText,
$date_format)
{
$currentLanguage = JFactory::getLanguage();
$currentLangTag = $currentLanguage->getTag();
if (isset($titleTag) && $titleTag != "")
{
if ($titleTag == "h2"
|| $titleTag == "h3")
{
$currentTitleTag = $titleTag;
}
else
{
$currentTitleTag ='h2';
}
}
else
{
$currentTitleTag ='h2';
}
$main_lang_little = "";
if (isset($lang) && $lang != "")
{
$main_lang_little = substr($lang,0, strpos($lang, '-'));
$currentLanguage->load('com_zhgooglemap', JPATH_SITE, $lang, true);
$currentLanguage->load('com_zhgooglemap', JPATH_COMPONENT, $lang, true);
$currentLanguage->load('com_zhgooglemap', JPATH_SITE . '/components/com_zhgooglemap' , $lang, true);
}
else
{
$currentLanguage->load('com_zhgooglemap', JPATH_SITE, $currentLangTag, true);
$currentLanguage->load('com_zhgooglemap', JPATH_COMPONENT, $currentLangTag, true);
$currentLanguage->load('com_zhgooglemap', JPATH_SITE . '/components/com_zhgooglemap', $currentLangTag, true);
}
$returnText = '';
$userContactAttrs = explode(",", $usercontactattributes);
for($i = 0; $i < count($userContactAttrs); $i++)
{
$userContactAttrs[$i] = strtolower(trim($userContactAttrs[$i]));
}
$returnText .= '\'<div id="placemarkContent'. $currentmarker->id.'" class="placemarkContent" >\' + ' ."\n";
if (isset($placemarkrating) && (int)$placemarkrating != 0)
{
$val_cnt_max = 5;
$val_main = $currentmarker->rating_value;
$val_int = floor($val_main);
$returnText .= '\'<div id="rateBoby'. $currentmarker->id.'" class="placemarkRateBody" >\' + ' ."\n";
$returnText .= '\'<div id="rateContent'. $currentmarker->id.'" class="placemarkRate" ';
$returnText .= 'onmouseout="PlacemarkRateDivOut'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt_max.'); return false;" ';
$returnText .= '>\'+'."\n";
if ($val_main > $val_cnt_max)
{
$val_main = $val_cnt_max;
$val_int = $val_cnt_max;
}
$val_cnt = 0;
$returnText .= '\'';
if ($val_main == 0)
{
$val_cnt++;
$returnText .= '<img id="placemarkRateImage'. $currentmarker->id.'_'.$val_cnt.'" src="'.$imgpathUtils .'star0_00.png" alt="" ';
$returnText .= 'onmouseover="PlacemarkRateOver'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onmouseout="PlacemarkRateOut'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onclick="PlacemarkRateUpdate'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= '/>';
}
else if ($val_int == 0 && $val_main > 0)
{
$val_cnt++;
$returnText .= '<img id="placemarkRateImage'. $currentmarker->id.'_'.$val_cnt.'" src="'.$imgpathUtils .'star0_05.png" alt="" ';
$returnText .= 'onmouseover="PlacemarkRateOver'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onmouseout="PlacemarkRateOut'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onclick="PlacemarkRateUpdate'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= '/>';
}
else
{
for ($i=0; $i<$val_int; $i++)
{
$val_cnt++;
$returnText .= '<img id="placemarkRateImage'. $currentmarker->id.'_'.$val_cnt.'" src="'.$imgpathUtils .'star0_10.png" alt="" ';
$returnText .= 'onmouseover="PlacemarkRateOver'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onmouseout="PlacemarkRateOut'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onclick="PlacemarkRateUpdate'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= '/>';
}
if (ceil(($val_main-$val_int)*10)>4)
{
$val_cnt++;
$returnText .= '<img id="placemarkRateImage'. $currentmarker->id.'_'.$val_cnt.'" src="'.$imgpathUtils .'star0_05.png" alt="" ';
$returnText .= 'onmouseover="PlacemarkRateOver'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onmouseout="PlacemarkRateOut'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onclick="PlacemarkRateUpdate'.$currentArticleId.'('. $currentmarker->id.', '.$val_cnt.', '.$val_cnt_max.'); return false;" ';
$returnText .= '/>';
}
}
for ($i=$val_cnt; $i < $val_cnt_max; $i++)
{
$returnText .= '<img id="placemarkRateImage'. $currentmarker->id.'_'.($i+1).'" src="'.$imgpathUtils .'star0_00.png" alt="" ';
$returnText .= 'onmouseover="PlacemarkRateOver'.$currentArticleId.'('. $currentmarker->id.', '.($i+1).', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onmouseout="PlacemarkRateOut'.$currentArticleId.'('. $currentmarker->id.', '.($i+1).', '.$val_cnt_max.'); return false;" ';
$returnText .= 'onclick="PlacemarkRateUpdate'.$currentArticleId.'('. $currentmarker->id.', '.($i+1).', '.$val_cnt_max.'); return false;" ';
$returnText .= '/>';
}
$returnText .= '\'+';
$returnText .= '\'</div>\'+'."\n";
$returnText .= '\'<div id="rateContentResult'. $currentmarker->id.'" class="placemarkRateResult"></div>\'+'."\n";
$returnText .= '\'</div>\'+'."\n";
}
if (isset($currentmarker->markercontent) &&
(((int)$currentmarker->markercontent == 0) ||
((int)$currentmarker->markercontent == 1) ||
((int)$currentmarker->markercontent == 9) )
)
{
$returnText .= '\'<'.$currentTitleTag.' id="headContent'. $currentmarker->id.'" class="placemarkHead">'.'\'+' ."\n";
$returnText .= '\''.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'\'+'."\n";
$returnText .= '\'</'.$currentTitleTag.'>\'+' ."\n";
}
if (isset($currentmarker->showgps) &&
((int)$currentmarker->showgps != 0)
)
{
$returnText .= '\'<div id="gpsContent'. $currentmarker->id.'" class="placemarkGPS">\'+'."\n";
$returnText .= '\'<p class="placemarkGPSLatitude">\'+Convert_Latitude_Decimal2DMS('.$currentmarker->latitude.')+\'</p>\'+'."\n";
$returnText .= '\'<p class="placemarkGPSLongitude">\'+Convert_Longitude_Decimal2DMS('.$currentmarker->longitude.')+\'</p>\'+'."\n";
$returnText .= '\'</div>\'+'."\n";
}
$returnText .= '\'<div id="bodyContent'. $currentmarker->id.'" class="placemarkBody">\'+'."\n";
if ($currentmarker->hrefimage!="")
{
$tmp_image_path = strtolower($currentmarker->hrefimage);
if (substr($tmp_image_path,0,5) == "http:"
|| substr($tmp_image_path,0,6) == "https:"
|| substr($tmp_image_path,0,1) == "/"
|| substr($tmp_image_path,0,1) == ".")
{
$tmp_image_path_add = "";
}
else
{
$tmp_image_path_add = "/";
}
$imagecss = "";
if ($currentmarker->hrefimagecss != "")
{
$imagecss = " style=\"".$currentmarker->hrefimagecss."\"";
}
$returnText .= '\'<img src="'.$tmp_image_path_add.$currentmarker->hrefimage.'"'.$imagecss.' alt="" />\'+'."\n";
}
if (isset($currentmarker->markercontent) &&
(((int)$currentmarker->markercontent == 0) ||
((int)$currentmarker->markercontent == 2))
)
{
$returnText .= '\''.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'\'+'."\n";
}
$pluginPrepContentText = $currentmarker->descriptionhtml;
if (isset($currentmarker->preparecontent) && (int)$currentmarker->preparecontent != 0)
{
$pluginPrepContentText = JHtml::_('content.prepare', $pluginPrepContentText);
$pluginPrepContentText = str_replace(array("\r", "\r\n", "\n"), '', $pluginPrepContentText);
// protect double replace in case \'
$pluginPrepContentText = str_replace("\\\'", "\n", $pluginPrepContentText);
$pluginPrepContentText = str_replace("'", "\'", $pluginPrepContentText);
$pluginPrepContentText = str_replace("\n", "\'", $pluginPrepContentText);
}
else
{
$pluginPrepContentText = str_replace(array("\r", "\r\n", "\n"), '', $pluginPrepContentText);
$pluginPrepContentText = str_replace("'", "\'", $pluginPrepContentText);
}
$returnText .= '\''.$pluginPrepContentText.'\'+'."\n";
//$returnText .= '\''.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'\'+'."\n";
//$returnText .= ' latlng'. $currentmarker->id. '.toString()+'."\n";
if (isset($currentmarker->markercontent) &&
((int)$currentmarker->markercontent == 9
|| (int)$currentmarker->markercontent == 8) &&
((isset($currentmarker->articleid) && (int)$currentmarker->articleid != 0)
|| (isset($currentmarker->hrefarticle) && $currentmarker->hrefarticle != ""))
)
{
$returnText .= '\'<div id="article'. $currentmarker->id.'" class="iframeArticle">\'+'."\n";
$returnText .= '\'<iframe id="articleiframe'. $currentmarker->id.'"';
if ($currentmarker->hrefarticle != "")
{
$returnText .= ' src="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->hrefarticle), ENT_QUOTES, 'UTF-8').'"';
}
else
{
$article_category = comZhGoogleMapPlacemarksHelper::get_ArticleCategory($currentmarker->articleid);
$returnText .= ' src="'.JRoute::_('index.php?option=com_content&view=article&id='.$currentmarker->articleid.'&catid='.(int)$article_category.'&tmpl=component').'"';
}
if (isset($currentmarker->iframearticleclass) && $currentmarker->iframearticleclass)
{
$returnText .= ' class="'.$currentmarker->iframearticleclass.'"';
}
$returnText .= '>';
$returnText .= '</iframe>\'+'."\n";
$returnText .= '\'</div>\'+'."\n";
}
// Contact info - begin
if (isset($usercontact) && ((int)$usercontact != 0))
{
if (isset($currentmarker->showcontact) && ((int)$currentmarker->showcontact != 0))
{
switch ((int)$currentmarker->showcontact)
{
case 1:
for($i = 0; $i < count($userContactAttrs); $i++)
{
if ($currentmarker->contact_name != ""
&& $userContactAttrs[$i] == 'name')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_NAME').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_position != ""
&& $userContactAttrs[$i] == 'position')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_POSITION').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_position), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_address != ""
&& $userContactAttrs[$i] == 'address')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS').' '.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'suburb')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_SUBURB_SUBURB').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'city')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_SUBURB_CITY').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'state')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_STATE_STATE').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'province')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_STATE_PROVINCE').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_country != ""
&& $userContactAttrs[$i] == 'country')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_COUNTRY').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_country), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'postcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_POSTCODE_POSTAL').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'zipcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_POSTCODE_ZIP').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_phone != ""
&& $userContactAttrs[$i] == 'phone')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_PHONE').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_mobile != ""
&& $userContactAttrs[$i] == 'mobile')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_MOBILE').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_mobile), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_fax != ""
&& $userContactAttrs[$i] == 'fax')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_FAX').' '.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_fax), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_email != ""
&& $userContactAttrs[$i] == 'email')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_EMAIL').' '.str_replace('@','@',htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_email), ENT_QUOTES, 'UTF-8')).'</p>\'+'."\n";
}
if ($currentmarker->contact_webpage != ""
&& $userContactAttrs[$i] == 'website')
{
$returnText .= '\'<p class="placemarkBodyContact">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_WEBSITE').' '.'<a href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'" target="_blank">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'</a> '.'</p>\'+'."\n";
}
}
break;
case 2:
for($i = 0; $i < count($userContactAttrs); $i++)
{
if ($currentmarker->contact_name != ""
&& $userContactAttrs[$i] == 'name')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_position != ""
&& $userContactAttrs[$i] == 'position')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_position), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_address != ""
&& $userContactAttrs[$i] == 'address')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'address.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS').'" />'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'suburb')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'city')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'state')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'province')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_country != ""
&& $userContactAttrs[$i] == 'country')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_country), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'postcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'zipcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_phone != ""
&& $userContactAttrs[$i] == 'phone')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'phone.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_PHONE').'" />'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_mobile != ""
&& $userContactAttrs[$i] == 'mobile')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'mobile.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_MOBILE').'" />'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_mobile), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_fax != ""
&& $userContactAttrs[$i] == 'fax')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'fax.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_FAX').'" />'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_fax), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_email != ""
&& $userContactAttrs[$i] == 'email')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'email.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_EMAIL').'" />'.str_replace('@','@',htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_email), ENT_QUOTES, 'UTF-8')).'</p>\'+'."\n";
}
if ($currentmarker->contact_webpage != ""
&& $userContactAttrs[$i] == 'website')
{
$returnText .= '\'<p class="placemarkBodyContact"><img src="'.$imgpathUtils.'website.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_CONTACT_WEBSITE').'" />'.'<a href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'" target="_blank">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'</a> '.'</p>\'+'."\n";
}
}
break;
case 3:
for($i = 0; $i < count($userContactAttrs); $i++)
{
if ($currentmarker->contact_name != ""
&& $userContactAttrs[$i] == 'name')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_position != ""
&& $userContactAttrs[$i] == 'position')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_position), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_address != ""
&& $userContactAttrs[$i] == 'address')
{
$returnText .= '\'<p class="placemarkBodyContact">'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'suburb')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'city')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'state')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'province')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_country != ""
&& $userContactAttrs[$i] == 'country')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_country), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'postcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'zipcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_phone != ""
&& $userContactAttrs[$i] == 'phone')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_mobile != ""
&& $userContactAttrs[$i] == 'mobile')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_mobile), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_fax != ""
&& $userContactAttrs[$i] == 'fax')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_fax), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_email != ""
&& $userContactAttrs[$i] == 'email')
{
$returnText .= '\'<p class="placemarkBodyContact">'.str_replace('@','@',htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_email), ENT_QUOTES, 'UTF-8')).'</p>\'+'."\n";
}
if ($currentmarker->contact_webpage != ""
&& $userContactAttrs[$i] == 'website')
{
$returnText .= '\'<p class="placemarkBodyContact">'.'<a href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'" target="_blank">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'</a> '.'</p>\'+'."\n";
}
}
break;
default:
for($i = 0; $i < count($userContactAttrs); $i++)
{
if ($currentmarker->contact_name != ""
&& $userContactAttrs[$i] == 'name')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_position != ""
&& $userContactAttrs[$i] == 'position')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_position), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_address != ""
&& $userContactAttrs[$i] == 'address')
{
$returnText .= '\'<p class="placemarkBodyContact">'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'suburb')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_suburb != ""
&& $userContactAttrs[$i] == 'city')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_suburb), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'state')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_state != ""
&& $userContactAttrs[$i] == 'province')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_state), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_country != ""
&& $userContactAttrs[$i] == 'country')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_country), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'postcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_postcode != ""
&& $userContactAttrs[$i] == 'zipcode')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_postcode), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_phone != ""
&& $userContactAttrs[$i] == 'phone')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_mobile != ""
&& $userContactAttrs[$i] == 'mobile')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_mobile), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_fax != ""
&& $userContactAttrs[$i] == 'fax')
{
$returnText .= '\'<p class="placemarkBodyContact">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_fax), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($currentmarker->contact_email != ""
&& $userContactAttrs[$i] == 'email')
{
$returnText .= '\'<p class="placemarkBodyContact">'.str_replace('@','@',htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_email), ENT_QUOTES, 'UTF-8')).'</p>\'+'."\n";
}
if ($currentmarker->contact_webpage != ""
&& $userContactAttrs[$i] == 'website')
{
$returnText .= '\'<p class="placemarkBodyContact">'.'<a href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'" target="_blank">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->contact_webpage), ENT_QUOTES, 'UTF-8').'</a> '.'</p>\'+'."\n";
}
}
break;
}
}
}
// Contact info - end
// User info - begin
if (isset($useruser) && ((int)$useruser != 0))
{
$returnText .= comZhGoogleMapPlacemarksHelper::get_userinfo_for_marker(
$currentmarker->createdbyuser, $currentmarker->showuser,
$imgpathIcons, $imgpathUtils, $directoryIcons);
}
// User info - end
if ($currentmarker->hrefsite!="")
{
$returnText .= '\'<p><a class="placemarkHREF" href="'.$currentmarker->hrefsite.'" target="_blank">';
if ($currentmarker->hrefsitename != "")
{
$returnText .= htmlspecialchars($currentmarker->hrefsitename, ENT_QUOTES, 'UTF-8');
}
else
{
$returnText .= $currentmarker->hrefsite;
}
$returnText .= '</a></p>\'+'."\n";
}
if (isset($gogoogle) && (int)$gogoogle == 1 && isset($currentmarker->gogoogle) &&
((int)$currentmarker->gogoogle == 20 || (int)$currentmarker->gogoogle == 21
|| (int)$currentmarker->gogoogle == 22 || (int)$currentmarker->gogoogle == 23
|| (int)$currentmarker->gogoogle == 24 || (int)$currentmarker->gogoogle == 25
))
{
if ((int)$currentmarker->gogoogle == 20
|| (int)$currentmarker->gogoogle == 22
|| (int)$currentmarker->gogoogle == 24
)
{
$linkTarget = " target=\"_blank\"";
}
else
{
$linkTarget = "";
}
$returnText .= '\'<p><a class="placemarkGOGOOGLE" href="';
if ((int)$currentmarker->gogoogle == 22 || (int)$currentmarker->gogoogle == 23
|| (int)$currentmarker->gogoogle == 24 || (int)$currentmarker->gogoogle == 25
)
{
$returnText .= 'https://maps.google.com/?ll='.
$currentmarker->latitude.','.$currentmarker->longitude;
//$scripttext .= '&z='.$map->zoom;
if ((int)$currentmarker->gogoogle == 22 || (int)$currentmarker->gogoogle == 23)
{
$returnText .= '&q='.htmlspecialchars(str_replace('\\', '/', $currentmarker->title) , ENT_QUOTES, 'UTF-8');
}
else
{
$returnText .= '&q='.$currentmarker->latitude.','.$currentmarker->longitude;
}
if ($main_lang_little != "")
{
$returnText .= '&hl='.$main_lang_little;
}
}
else
{
$returnText .= 'https://maps.google.com/maps?saddr=Current%20Location&daddr='.
$currentmarker->latitude.','.$currentmarker->longitude;
}
$returnText .= '" '.$linkTarget.' title="'.$gogoogleText.'">'.$gogoogleText.'</a></p>\'+'."\n";
}
$returnText .= '\'</div>\'+'."\n";
if ((int)$currentmarker->tag_show != 0)
{
switch ((int)$currentmarker->tag_style)
{
case 0:
$tagstyle = '-simple';
break;
case 1:
$tagstyle = '-advanced';
break;
case 2:
$tagstyle = '-external';
break;
default:
$tagstyle = '-simple';
break;
}
$returnText .= '\'<div id="GMapsMarkerTagDIV'.(int)$currentmarker->id.'" class="zhgm-placemark-tag'.$tagstyle.'-div">\'+'."\n";
if ((int)$currentmarker->tag_show == 1)
{
$markerTags = comZhGoogleMapPlacemarksHelper::get_placemark_tags($currentmarker->id, "com_zhgooglemap.mapmarker", $currentmarker->tag_style);
$returnText .= '\'<div id="GMapsMarkerTagMarker'.(int)$currentmarker->id.'" class="zhgm-placemark-tag-marker'.$tagstyle.'-div">'.$markerTags.'</div>\'+'."\n";
}
if ((int)$currentmarker->tag_show == 2)
{
if ((int)$currentmarker->contactid != 0)
{
$markerTags = comZhGoogleMapPlacemarksHelper::get_placemark_tags($currentmarker->contactid, "com_contact.contact", $currentmarker->tag_style);
$returnText .= '\'<div id="GMapsMarkerTagContact'.(int)$currentmarker->id.'" class="zhgm-placemark-tag-contact'.$tagstyle.'-div">'.$markerTags.'</div>\'+'."\n";
}
}
$returnText .= '\'</div>\'+'."\n";
}
$toolbarCreateInfoFlg = 0;
if (isset($showCreateInfo) && (int)$showCreateInfo != 0)
{
$toolbarCreateInfoText = "";
$toolbarCreateInfo = comZhGoogleMapPlacemarksHelper::get_userinfo_for_marker_timestamp(
$currentmarker->createdbyuser);
if ((((int)$showCreateInfo == 1) || ((int)$showCreateInfo == 3) ||
((int)$showCreateInfo == 51) || ((int)$showCreateInfo == 53))
&& $toolbarCreateInfo != "")
{
if (((int)$showCreateInfo == 1) || ((int)$showCreateInfo == 3))
{
$toolbarCreateInfoFlg = 1;
}
elseif (((int)$showCreateInfo == 51) || ((int)$showCreateInfo == 53))
{
$toolbarCreateInfoFlg = 2;
}
else
{
$toolbarCreateInfoFlg = 1;
}
$toolbarCreateInfoText .= '\'<div id="GMapsMarkerStampUserDIV'.(int)$currentmarker->id.'" class="zhgm-placemark-stamp-user-div">\'+'."\n";
$toolbarCreateInfoText .= '\''.$toolbarCreateInfo.'\'+'."\n";
$toolbarCreateInfoText .= '\'</div>\'+'."\n";
}
$toolbarCreateInfo = comZhGoogleMapPlacemarksHelper::get_datetime_for_marker_timestamp(
$currentmarker->createddate,
$date_format);
if ((((int)$showCreateInfo == 2) || ((int)$showCreateInfo == 3) ||
((int)$showCreateInfo == 52) || ((int)$showCreateInfo == 53))
&& $toolbarCreateInfo != "")
{
if (((int)$showCreateInfo == 2) || ((int)$showCreateInfo == 3))
{
$toolbarCreateInfoFlg = 1;
}
elseif (((int)$showCreateInfo == 52) || ((int)$showCreateInfo == 53))
{
$toolbarCreateInfoFlg = 2;
}
else
{
$toolbarCreateInfoFlg = 1;
}
$toolbarCreateInfoText .= '\'<div id="GMapsMarkerStampDateDIV'.(int)$currentmarker->id.'" class="zhgm-placemark-stamp-date-div">\'+'."\n";
$toolbarCreateInfoText .= '\''.$toolbarCreateInfo.'\'+'."\n";
$toolbarCreateInfoText .= '\'</div>\'+'."\n";
}
}
// Placemark Toolbar - begin
$toolbarToolbarFlg = 0;
$toolbarToolbarText = "";
if ((int)$currentmarker->streetviewinfowin != 0)
{
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-streetview" href="#" title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_STREETVEW').'" onclick="';
$mapSV = comZhGoogleMapPlacemarksHelper::get_StreetViewOptions($currentmarker->streetviewstyleid);
if ($mapSV == "")
{
$toolbarToolbarText .= 'showPlacemarkPanorama'.$currentArticleId.'('.$currentmarker->streetviewinfowinw.','.$currentmarker->streetviewinfowinh.', \\\'\\\');';
}
else
{
$toolbarToolbarText .= 'showPlacemarkPanorama'.$currentArticleId.'('.$currentmarker->streetviewinfowinw.','.$currentmarker->streetviewinfowinh.', '.$mapSV.');';
}
$toolbarToolbarText .= ' return false;"><img class="zhgm-placemark-action-toolbaritem-img-streetview" src="'.$imgpathUtils.'StreetView.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_STREETVEW').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
if ($service_DoDirection == 1)
{
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-start" href="#" title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_FINISH').'" onclick="';
$toolbarToolbarText .= 'setRouteDestination'.$currentArticleId.'(0);';
$toolbarToolbarText .= ' return false;"><img class="zhgm-placemark-action-toolbaritem-img-start" src="'.$imgpathUtils.'start.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_FINISH').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-finish" href="#" title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_START').'" onclick="';
$toolbarToolbarText .= 'setRouteDestination'.$currentArticleId.'(1);';
$toolbarToolbarText .= ' return false;"><img class="zhgm-placemark-action-toolbaritem-img-finish" src="'.$imgpathUtils.'finish.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_START').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
if (isset($usercontact) && (int)$usercontact != 0 && isset($currentmarker->toolbarcontact) && (int)$currentmarker->toolbarcontact != 0)
{
if ((int)$currentmarker->toolbarcontact == 1)
{
$toolbarLinkTarget = " target=\"_blank\"";
}
else
{
$toolbarLinkTarget = "";
}
if (isset($currentmarker->hrefcontact) && $currentmarker->hrefcontact != "")
{
// Check alternative contact URL
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-contact" href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->hrefcontact), ENT_QUOTES, 'UTF-8').'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_CONTACT').'"><img class="zhgm-placemark-action-toolbaritem-img-contact" src="'.$imgpathUtils.'contact.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_CONTACT').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
else if (isset($currentmarker->contactid) && (int)$currentmarker->contactid != 0)
{
// Check contact ID for default URL
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-contact" href="'.JRoute::_('index.php?option=com_contact&view=contact&id='.$currentmarker->contactid).'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_CONTACT').'"><img class="zhgm-placemark-action-toolbaritem-img-contact" src="'.$imgpathUtils.'contact.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_CONTACT').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
}
if (isset($currentmarker->toolbararticle) && (int)$currentmarker->toolbararticle != 0)
{
if ((int)$currentmarker->toolbararticle == 1)
{
$toolbarLinkTarget = " target=\"_blank\"";
}
else
{
$toolbarLinkTarget = "";
}
if (isset($currentmarker->hrefarticle) && $currentmarker->hrefarticle != "")
{
// Check alternative article URL
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-article" href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->hrefarticle), ENT_QUOTES, 'UTF-8').'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_ARTICLE').'"><img class="zhgm-placemark-action-toolbaritem-img-article" src="'.$imgpathUtils.'article.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_ARTICLE').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
else if (isset($currentmarker->articleid) && (int)$currentmarker->articleid != 0)
{
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$article_category = comZhGoogleMapPlacemarksHelper::get_ArticleCategory($currentmarker->articleid);
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-article" href="'.JRoute::_('index.php?option=com_content&view=article&id='.$currentmarker->articleid.'&catid='.(int)$article_category).'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_ARTICLE').'"><img class="zhgm-placemark-action-toolbaritem-img-article" src="'.$imgpathUtils.'article.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_ARTICLE').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
}
if (isset($currentmarker->toolbardetail) && (int)$currentmarker->toolbardetail != 0)
{
if ((int)$currentmarker->toolbardetail == 1)
{
$toolbarLinkTarget = " target=\"_blank\"";
}
else
{
$toolbarLinkTarget = "";
}
if (isset($currentmarker->hrefdetail) && $currentmarker->hrefdetail != "")
{
// Check alternative details URL
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-details" href="'.htmlspecialchars(str_replace('\\', '/', $currentmarker->hrefdetail), ENT_QUOTES, 'UTF-8').'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_DETAILS').'"><img class="zhgm-placemark-action-toolbaritem-img-details" src="'.$imgpathUtils.'details.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_DETAILS').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
else if (isset($currentmarker->id) && (int)$currentmarker->id != 0)
{
$toolbarToolbarFlg = 1;
$detailsAttrs = str_replace(";", ',',$currentmarker->attributesdetail);
$detailsAttrArray = explode(",", $detailsAttrs);
for($i = 0; $i < count($detailsAttrArray); $i++)
{
$detailsAttrArray[$i] = strtolower(trim($detailsAttrArray[$i]));
}
$load_bs = 9;
$prop_thumbnail = 0;
$prop_imagegalery = 0;
$prop_hidedescriptionhtml = 1;
$prop_showdescriptionfullhtml = 0;
for($i = 0; $i < count($detailsAttrArray); $i++)
{
switch ($detailsAttrArray[$i])
{
case 'load bootstrap':
$load_bs = 0;
break;
case 'load bootstrap styles':
$load_bs = 1;
break;
case 'thumbnail':
$prop_thumbnail = 1;
break;
case 'image gallery':
$prop_imagegalery = 1;
break;
case 'image galery':
$prop_imagegalery = 1;
break;
case 'addition html text':
$prop_hidedescriptionhtml = 0;
break;
case 'full description':
$prop_showdescriptionfullhtml = 1;
break;
}
}
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-details" href="'.JURI::base().'index.php?option=com_zhgooglemap&view=placemark&load_bootstrap='.$load_bs
.'&thumbnail='.$prop_thumbnail
.'&imagegalery='.$prop_imagegalery
.'&hidedescriptionhtml='.$prop_hidedescriptionhtml
.'&showdescriptionfullhtml='.$prop_showdescriptionfullhtml
.'&id=' . $currentmarker->id.'" '.$toolbarLinkTarget.' title="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_DETAILS').'"><img class="zhgm-placemark-action-toolbaritem-img-details" src="'.$imgpathUtils.'details.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAPMARKER_ACTION_DETAILS').'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
}
if (isset($gogoogle) && (int)$gogoogle == 1 && isset($currentmarker->gogoogle) &&
((int)$currentmarker->gogoogle == 10 || (int)$currentmarker->gogoogle == 11
|| (int)$currentmarker->gogoogle == 12 || (int)$currentmarker->gogoogle == 13
|| (int)$currentmarker->gogoogle == 14 || (int)$currentmarker->gogoogle == 15
))
{
if ((int)$currentmarker->gogoogle == 10
|| (int)$currentmarker->gogoogle == 12
|| (int)$currentmarker->gogoogle == 14
)
{
$toolbarLinkTarget = " target=\"_blank\"";
}
else
{
$toolbarLinkTarget = "";
}
$toolbarToolbarFlg = 1;
$toolbarToolbarText .= '\'<div class="zhgm-placemark-action-toolbaritem">\'+'."\n";
$toolbarToolbarText .= '\'<a class="zhgm-placemark-action-toolbaritem-a-gogoogle" href="';
if ((int)$currentmarker->gogoogle == 12 || (int)$currentmarker->gogoogle == 13
|| (int)$currentmarker->gogoogle == 14 || (int)$currentmarker->gogoogle == 15
)
{
$toolbarToolbarText .= 'https://maps.google.com/?ll='.
$currentmarker->latitude.','.$currentmarker->longitude;
//$scripttext .= '&z='.$map->zoom;
if ((int)$currentmarker->gogoogle == 12 || (int)$currentmarker->gogoogle == 13)
{
$toolbarToolbarText .= '&q='.htmlspecialchars(str_replace('\\', '/', $currentmarker->title) , ENT_QUOTES, 'UTF-8');
}
else
{
$toolbarToolbarText .= '&q='.$currentmarker->latitude.','.$currentmarker->longitude;
}
if ($main_lang_little != "")
{
$toolbarToolbarText .= '&hl='.$main_lang_little;
}
}
else
{
$toolbarToolbarText .= 'https://maps.google.com/maps?saddr=Current%20Location&daddr='.
$currentmarker->latitude.','.$currentmarker->longitude;
}
$toolbarToolbarText .= '" '.$toolbarLinkTarget.' title="'.$gogoogleText.
'"><img class="zhgm-placemark-action-toolbaritem-img-gogoogle" src="'.$imgpathUtils.'gogoogle.png" alt="'.$gogoogleText.
'" /></a>\'+'."\n";
$toolbarToolbarText .= '\'</div>\'+'."\n";
}
if ($toolbarToolbarFlg == 1)
{
if ($toolbarCreateInfoFlg == 1)
{
$returnText .= '\'<div id="GMapsMarkerStampDIV" class="zhgm-placemark-stamp-top-div">\'+'."\n";
$returnText .= $toolbarCreateInfoText;
$returnText .= '\'</div>\'+'."\n";
}
$returnText .= '\'<div id="GMapsMarkerActionDIV" class="zhgm-placemark-action-div">\'+'."\n";
$returnText .= '\'<div id="GMapsMarkerActionTOOLBAR" class="zhgm-placemark-action-toolbar">\'+'."\n";
$returnText .= $toolbarToolbarText;
$returnText .= '\'</div>\'+'."\n";
$returnText .= '\'</div>\'+'."\n";
if ($toolbarCreateInfoFlg == 2)
{
$returnText .= '\'<div id="GMapsMarkerStampDIV" class="zhgm-placemark-stamp-bottom-div">\'+'."\n";
$returnText .= $toolbarCreateInfoText;
$returnText .= '\'</div>\'+'."\n";
}
}
else
{
if ($toolbarCreateInfoFlg != 0)
{
$returnText .= '\'<div id="GMapsMarkerStampDIV" class="zhgm-placemark-stamp-top-bottom-div">\'+'."\n";
$returnText .= $toolbarCreateInfoText;
$returnText .= '\'</div>\'+'."\n";
}
}
// Placemark Toolbar - end
$returnText .= '\'</div>\'';
// contentString - End
return $returnText;
}
public static function get_placemark_content_update_string($usermarkersicon, $usercontact, $currentmarker, $imgpathIcons, $imgpathUtils, $directoryIcons, $newMarkerGroupList)
{
$scripttext ='';
// contentString - User Placemark can Update - Begin
// Change UserMarker - begin
$scripttext .= 'var contentStringPart1'.$currentmarker->id.' = "" +' ."\n";
$scripttext .= '\'<div id="contentUpdatePlacemark">\'+'."\n";
//$scripttext .= ' \'<br />\'+' ."\n";
//$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_LNG' ).' \'+'.$currentLng.' + ' ."\n";
//$scripttext .= ' \'<br />'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_LAT' ).' \'+'.$currentLat.' + ' ."\n";
//$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_LNG' ).' \'+latlng'.$currentmarker->id.'.lng() + ' ."\n";
//$scripttext .= ' \'<br />'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_LAT' ).' \'+latlng'.$currentmarker->id.'.lat() + ' ."\n";
// Form Update
$scripttext .= ' \'<form id="updatePlacemarkForm'.$currentmarker->id.'" action="'.JURI::current().'" method="post">\'+'."\n";
$scripttext .= ' \''.'<img src="'.$imgpathUtils.'published'.(int)$currentmarker->published.'.png" alt="" /> \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
// Begin Placemark Properties
$scripttext .= '\'<div id="bodyInsertPlacemarkDivA'.$currentmarker->id.'" class="bodyInsertProperties">\'+'."\n";
$scripttext .= '\'<a id="bodyInsertPlacemarkA'.$currentmarker->id.'" href="javascript:showonlyone(\\\'Placemark\\\',\\\''.$currentmarker->id.'\\\');" ><img src="'.$imgpathUtils.'collapse.png">'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_BASIC_PROPERTIES' ).'</a>\'+'."\n";
$scripttext .= '\'</div>\'+'."\n";
$scripttext .= '\'<div id="bodyInsertPlacemark'.$currentmarker->id.'" class="bodyInsertPlacemarkProperties">\'+'."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_NAME' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="markername" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->title, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
//$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_DESCRIPTION' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="markerdescription" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->description, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\';' ."\n";
// icon type
/*
if(isset($usermarkersicon) && (int)$usermarkersicon == 1)
{
$iconTypeJS = " onchange=\"javascript: ";
$iconTypeJS .= " if (document.forms.updatePlacemarkForm".$currentmarker->id.".markerimage.options[selectedIndex].value!=\'\') ";
$iconTypeJS .= " {document.markericonimage".$currentmarker->id.".src=\'".$imgpathIcons."\' + document.forms.updatePlacemarkForm".$currentmarker->id.".markerimage.options[selectedIndex].value.replace(/#/g,\'%23\') + \'.png\'}";
$iconTypeJS .= " else ";
$iconTypeJS .= " {document.markericonimage".$currentmarker->id.".src=\'\'}\"";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_ICON_TYPE' ).' \'+' ."\n";
$scripttext .= ' \'';
$scripttext .= '<img name="markericonimage'.$currentmarker->id.'" src="'.$imgpathIcons .str_replace("#", "%23", $currentmarker->icontype).'.png" alt="" />';
$scripttext .= '\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'';
$scripttext .= str_replace('.png<', '<',
str_replace('.png"', '"',
str_replace('JOPTION_SELECT_IMAGE', JText::_('COM_ZHGOOGLEMAP_MAP_USER_IMAGESELECT'),
str_replace(array("\r", "\r\n", "\n"),'', JHTML::_('list.images', 'markerimage', $active = $currentmarker->icontype.'.png', $iconTypeJS, $directoryIcons, $extensions = "png")))));
$scripttext .= '\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
}
else
{
$scripttext .= ' \'<input name="markerimage" type="hidden" value="default#" />\'+' ."\n";
}
*/
$scripttext .= 'var contentStringPart2'.$currentmarker->id.' = "" +' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_BALOON' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \' <select name="markerbaloon" > \'+' ."\n";
$scripttext .= ' \' <option value="1" ';
if ($currentmarker->baloon == 1)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_BALOON_DROP').'</option> \'+' ."\n";
$scripttext .= ' \' <option value="2" ';
if ($currentmarker->baloon == 2)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_BALOON_BOUNCE').'</option> \'+' ."\n";
$scripttext .= ' \' <option value="3" ';
if ($currentmarker->baloon == 3)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_BALOON_SIMPLE').'</option> \'+' ."\n";
$scripttext .= ' \' </select> \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_USER_MARKERCONTENT' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \' <select name="markermarkercontent" > \'+' ."\n";
$scripttext .= ' \' <option value="0" ';
if ($currentmarker->baloon == 0)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_MARKERCONTENT_TITLE_DESC').'</option> \'+' ."\n";
$scripttext .= ' \' <option value="1" ';
if ($currentmarker->baloon == 1)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_MARKERCONTENT_TITLE').'</option> \'+' ."\n";
$scripttext .= ' \' <option value="2" ';
if ($currentmarker->baloon == 2)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_MARKERCONTENT_DESCRIPTION').'</option> \'+' ."\n";
$scripttext .= ' \' <option value="100" ';
if ($currentmarker->baloon == 100)
{
$scripttext .= 'selected="selected"';
}
$scripttext .= '>'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_MARKERCONTENT_NONE').'</option> \'+' ."\n";
$scripttext .= ' \' </select> \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_DETAIL_HREFIMAGE_LABEL' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="markerhrefimage" type="text" maxlength="500" size="50" value="'. htmlspecialchars($currentmarker->hrefimage, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= '\'</div>\'+'."\n";
// End Placemark Properties
// Begin Placemark Group Properties
$scripttext .= '\'<div id="bodyInsertPlacemarkGrpDivA'.$currentmarker->id.'" class="bodyInsertProperties">\'+'."\n";
$scripttext .= '\'<a id="bodyInsertPlacemarkGrpA'.$currentmarker->id.'" href="javascript:showonlyone(\\\'PlacemarkGroup\\\',\\\''.$currentmarker->id.'\\\');" ><img src="'.$imgpathUtils.'expand.png">'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_BASIC_GROUP_PROPERTIES' ).'</a>\'+'."\n";
$scripttext .= '\'</div>\'+'."\n";
$scripttext .= '\'<div id="bodyInsertPlacemarkGrp'.$currentmarker->id.'" class="bodyInsertPlacemarkGrpProperties">\'+'."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_GROUP' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \' <select name="markergroup" > \'+' ."\n";
if ($currentmarker->markergroup == 0)
{
$scripttext .= ' \' <option value="" selected="selected">'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_FILTER_PLACEMARK_GROUP').'</option> \'+' ."\n";
}
else
{
$scripttext .= ' \' <option value="">'.JText::_( 'COM_ZHGOOGLEMAP_MAPMARKER_FILTER_PLACEMARK_GROUP').'</option> \'+' ."\n";
}
foreach ($newMarkerGroupList as $key => $newGrp)
{
if ($currentmarker->markergroup == $newGrp->value)
{
$scripttext .= ' \' <option value="'.$newGrp->value.'" selected="selected">'.$newGrp->text.'</option> \'+' ."\n";
}
else
{
$scripttext .= ' \' <option value="'.$newGrp->value.'">'.$newGrp->text.'</option> \'+' ."\n";
}
}
$scripttext .= ' \' </select> \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CATEGORY' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \' <select name="markercatid" > \'+' ."\n";
$scripttext .= ' \' <option value="" selected="selected">'.JText::_( 'COM_ZHGOOGLEMAP_MAP_FILTER_CATEGORY').'</option> \'+' ."\n";
$scripttext .= ' \''.str_replace(array("\r", "\r\n", "\n"),'',
JHtml::_('select.options', JHtml::_('category.options', 'com_zhgooglemap'), 'value', 'text', $currentmarker->catid)) .
'\'+' ."\n";
$scripttext .= ' \' </select> \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= '\'</div>\'+'."\n";
// End Placemark Group Properties
// Begin Contact Properties
if (isset($usercontact) && (int)$usercontact == 1)
{
$scripttext .= '\'<div id="bodyInsertContactDivA'.$currentmarker->id.'" class="bodyInsertProperties">\'+'."\n";
$scripttext .= '\'<a id="bodyInsertContactA'.$currentmarker->id.'" href="javascript:showonlyone(\\\'Contact\\\',\\\''.$currentmarker->id.'\\\');" ><img src="'.$imgpathUtils.'expand.png">'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_PROPERTIES' ).'</a>\'+'."\n";
$scripttext .= '\'</div>\'+'."\n";
$scripttext .= '\'<div id="bodyInsertContact'.$currentmarker->id.'" class="bodyInsertContactProperties">\'+'."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_NAME' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactname" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_name, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_POSITION' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactposition" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_position, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_PHONE' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactphone" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_phone, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_MOBILE' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactmobile" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_mobile, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_FAX' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactfax" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_fax, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_EMAIL' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<input name="contactemail" type="text" maxlength="250" size="50" value="'. htmlspecialchars($currentmarker->contact_email, ENT_QUOTES, 'UTF-8').'" />\'+' ."\n";
$scripttext .= '\'</div>\'+'."\n";
// Contact Address
$scripttext .= '\'<div id="bodyInsertContactAdrDivA'.$currentmarker->id.'" class="bodyInsertProperties">\'+'."\n";
$scripttext .= '\'<a id="bodyInsertContactAdrA'.$currentmarker->id.'" href="javascript:showonlyone(\\\'ContactAddress\\\',\\\''.$currentmarker->id.'\\\');" ><img src="'.$imgpathUtils.'expand.png">'.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS_PROPERTIES' ).'</a>\'+'."\n";
$scripttext .= '\'</div>\'+'."\n";
$scripttext .= '\'<div id="bodyInsertContactAdr'.$currentmarker->id.'" class="bodyInsertContactAdrProperties">\'+'."\n";
$scripttext .= ' \''.JText::_( 'COM_ZHGOOGLEMAP_MAP_USER_CONTACT_ADDRESS' ).' \'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<textarea name="contactaddress" cols="35" rows="4" >'. str_replace("\n\n", "'+'\\n'+'", str_replace(array("\r", "\r\n", "\n"), "\n",htmlspecialchars($currentmarker->contact_address, ENT_QUOTES, 'UTF-8'))).'</textarea>\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= ' \'<br />\'+' ."\n";
$scripttext .= '\'</div>\'+'."\n";
}
// End Contact Properties
$scripttext .= '\'\';'."\n";
// Change UserMarker - end
// contentString - User Placemark can Update - End
return $scripttext;
}
private static function add_tab_to_placemark_content($title, $content)
{
$returnText = '';
if ($title != "")
{
$returnText .= '\'<h3>'.$title.'</h3>\'+'."\n";
$returnText .= '\'<div>'.$content.'</div>\'+'."\n";
}
return $returnText;
}
private static function add_tab_to_placemark_content_div($title, $div_content)
{
$returnText = '';
if ($title != "")
{
$returnText .= '\'<h3>'.$title.'</h3>\'+'."\n";
$returnText .= $div_content."\n";
}
return $returnText;
}
public static function get_placemark_tabs_content_string(
$currentArticleId, $currentmarker,
$contentString,
$imgpathIcons, $imgpathUtils, $directoryIcons, $lang)
{
$currentLanguage = JFactory::getLanguage();
$currentLangTag = $currentLanguage->getTag();
if (isset($lang) && $lang != "")
{
$currentLanguage->load('com_zhgooglemap', JPATH_SITE, $lang, true);
$currentLanguage->load('com_zhgooglemap', JPATH_COMPONENT, $lang, true);
$currentLanguage->load('com_zhgooglemap', JPATH_SITE . '/components/com_zhgooglemap' , $lang, true);
}
else
{
$currentLanguage->load('com_zhgooglemap', JPATH_SITE, $currentLangTag, true);
$currentLanguage->load('com_zhgooglemap', JPATH_COMPONENT, $currentLangTag, true);
$currentLanguage->load('com_zhgooglemap', JPATH_SITE . '/components/com_zhgooglemap', $currentLangTag, true);
}
$returnText = '';
if ((int)$currentmarker->tab_info == 9)
{
}
else
{
$returnText = '\'<div id="GMapsPanelAccordion'.$currentArticleId.'">\'+'."\n";
}
// InfoBubble Create Tabs - Begin
if ((int)$currentmarker->tab_info == 1)
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content_div(str_replace("'", "\'",
str_replace(array("\r", "\r\n", "\n"), '', JText::_( 'COM_ZHGOOGLEMAP_INFOBUBBLE_TAB_INFO_TITLE' ))), $contentString .'+');
}
if ((int)$currentmarker->tab_info == 9)
{
$returnText .= $contentString;
}
else
{
if ($currentmarker->tab1 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab1title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab1)));
}
if ($currentmarker->tab2 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab2title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab2)));
}
if ($currentmarker->tab3 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab3title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab3)));
}
if ($currentmarker->tab4 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab4title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab4)));
}
if ($currentmarker->tab5 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab5title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab5)));
}
if ($currentmarker->tab6 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab6title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab6)));
}
if ($currentmarker->tab7 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab7title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab7)));
}
if ($currentmarker->tab8 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab8title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab8)));
}
if ($currentmarker->tab9 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab9title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab9)));
}
if ($currentmarker->tab10 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab10title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab10)));
}
if ($currentmarker->tab11 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab11title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab11)));
}
if ($currentmarker->tab12 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab12title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab12)));
}
if ($currentmarker->tab13 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab13title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab13)));
}
if ($currentmarker->tab14 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab14title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab14)));
}
if ($currentmarker->tab15 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab15title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab15)));
}
if ($currentmarker->tab16 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab16title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab16)));
}
if ($currentmarker->tab17 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab17title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab17)));
}
if ($currentmarker->tab18 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab18title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab18)));
}
if ($currentmarker->tab19 != "")
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content(str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab19title)), str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->tab19)));
}
}
if ((int)$currentmarker->tab_info == 2)
{
$returnText .= comZhGoogleMapPlacemarksHelper::add_tab_to_placemark_content_div(str_replace("'", "\'",
str_replace(array("\r", "\r\n", "\n"), '', JText::_( 'COM_ZHGOOGLEMAP_INFOBUBBLE_TAB_INFO_TITLE' ))), $contentString .'+');
}
if ((int)$currentmarker->tab_info == 9)
{
}
else
{
$returnText .= '\'</div>\'';
}
// InfoBubble Create Tabs - End
return $returnText;
}
public static function get_placemark_hover_string(
$currentmarker)
{
$returnText = '';
$returnText .= '\'<div id="placemarkHoverContent'. $currentmarker->id.'">\' + ' ."\n";
$returnText .= '\'<div id="bodyHoverContent'. $currentmarker->id.'" class="placemarkHoverBody">\'+'."\n";
$returnText .= '\''.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->hoverhtml)).'\'+'."\n";
$returnText .= '\'</div>\'+'."\n";
$returnText .= '\'</div>\';'."\n";
return $returnText;
}
public static function get_placemark_infobubble_style_by_id($id, $defaultStyle)
{
$db = JFactory::getDBO();
$query = $db->getQuery(true);
$addWhereClause = '';
$addWhereClause .= ' and bub.id = '. (int)$id;
$scriptInfoBubbleStyle = '';
if ((int)$id != 0)
{
$query->select('bub.shadowstyle, bub.padding, bub.borderradius, bub.borderwidth, bub.bordercolor, bub.backgroundcolor, bub.minwidth, bub.maxwidth, bub.minheight, bub.maxheight, bub.arrowsize, bub.arrowposition, bub.arrowstyle, bub.disableautopan, bub.hideclosebutton, bub.backgroundclassname, bub.published infobubblepublished ')
->from('#__zhgooglemaps_infobubbles as bub')
->where('1=1' . $addWhereClause)
;
$db->setQuery($query);
$bubble = $db->loadObject();
if (isset($bubble))
{
$scriptInfoBubbleStyle = comZhGoogleMapPlacemarksHelper::get_placemark_infobubble_style_string($bubble, $defaultStyle);
}
else
{
$scriptInfoBubbleStyle = $defaultStyle;
}
}
else
{
$scriptInfoBubbleStyle = $defaultStyle;
}
return $scriptInfoBubbleStyle;
}
public static function get_placemark_infobubble_style_string($currentmarker, $defaultStyle)
{
$scriptInfoBubbleStyle = '';
if (isset($currentmarker->infobubblepublished) && (int)$currentmarker->infobubblepublished == 1)
{
if (isset($currentmarker->shadowstyle) && $currentmarker->shadowstyle != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'shadowStyle: '.$currentmarker->shadowstyle;
}
else
{
$scriptInfoBubbleStyle .= "\n".', shadowStyle: '.$currentmarker->shadowstyle;
}
}
if (isset($currentmarker->padding) && $currentmarker->padding != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'padding: '.$currentmarker->padding;
}
else
{
$scriptInfoBubbleStyle .= "\n".', padding: '.$currentmarker->padding;
}
}
if (isset($currentmarker->borderradius) && $currentmarker->borderradius != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'borderRadius: '.$currentmarker->borderradius;
}
else
{
$scriptInfoBubbleStyle .= "\n".', borderRadius: '.$currentmarker->borderradius;
}
}
if (isset($currentmarker->borderwidth) && $currentmarker->borderwidth != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'borderWidth: '.$currentmarker->borderwidth;
}
else
{
$scriptInfoBubbleStyle .= "\n".', borderWidth: '.$currentmarker->borderwidth;
}
}
if (isset($currentmarker->bordercolor) && $currentmarker->bordercolor != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'borderColor: \''.$currentmarker->bordercolor.'\'';
}
else
{
$scriptInfoBubbleStyle .= "\n".', borderColor: \''.$currentmarker->bordercolor.'\'';
}
}
if (isset($currentmarker->backgroundcolor) && $currentmarker->backgroundcolor != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'backgroundColor: \''.$currentmarker->backgroundcolor.'\'';
}
else
{
$scriptInfoBubbleStyle .= "\n".', backgroundColor: \''.$currentmarker->backgroundcolor.'\'';
}
}
if (isset($currentmarker->minwidth) && $currentmarker->minwidth != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'minWidth: '.$currentmarker->minwidth;
}
else
{
$scriptInfoBubbleStyle .= "\n".', minWidth: '.$currentmarker->minwidth;
}
}
if (isset($currentmarker->maxwidth) && $currentmarker->maxwidth != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'maxWidth: '.$currentmarker->maxwidth;
}
else
{
$scriptInfoBubbleStyle .= "\n".', maxWidth: '.$currentmarker->maxwidth;
}
}
if (isset($currentmarker->minheight) && $currentmarker->minheight != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'minHeight: '.$currentmarker->minheight;
}
else
{
$scriptInfoBubbleStyle .= "\n".', minHeight: '.$currentmarker->minheight;
}
}
if (isset($currentmarker->maxheight) && $currentmarker->maxheight != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'maxHeight: '.$currentmarker->maxheight;
}
else
{
$scriptInfoBubbleStyle .= "\n".', maxHeight: '.$currentmarker->maxheight;
}
}
if (isset($currentmarker->arrowsize) && $currentmarker->arrowsize != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'arrowSize: '.$currentmarker->arrowsize;
}
else
{
$scriptInfoBubbleStyle .= "\n".', arrowSize: '.$currentmarker->arrowsize;
}
}
if (isset($currentmarker->arrowposition) && $currentmarker->arrowposition != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'arrowPosition: '.$currentmarker->arrowposition;
}
else
{
$scriptInfoBubbleStyle .= "\n".', arrowPosition: '.$currentmarker->arrowposition;
}
}
if (isset($currentmarker->arrowstyle) && $currentmarker->arrowstyle != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'arrowStyle: '.$currentmarker->arrowstyle;
}
else
{
$scriptInfoBubbleStyle .= "\n".', arrowStyle: '.$currentmarker->arrowstyle;
}
}
if (isset($currentmarker->disableautopan))
{
if ($scriptInfoBubbleStyle == "")
{
if ((int)$currentmarker->disableautopan == 1)
{
$scriptInfoBubbleStyle .= 'disableAutoPan: true';
}
else
{
$scriptInfoBubbleStyle .= 'disableAutoPan: false';
}
}
else
{
if ((int)$currentmarker->disableautopan == 1)
{
$scriptInfoBubbleStyle .= "\n".', disableAutoPan: true';
}
else
{
$scriptInfoBubbleStyle .= "\n".', disableAutoPan: false';
}
}
}
if (isset($currentmarker->disableanimation))
{
if ($scriptInfoBubbleStyle == "")
{
if ((int)$currentmarker->disableanimation == 1)
{
$scriptInfoBubbleStyle .= 'disableAnimation: true';
}
else
{
$scriptInfoBubbleStyle .= 'disableAnimation: false';
}
}
else
{
if ((int)$currentmarker->disableanimation == 1)
{
$scriptInfoBubbleStyle .= "\n".', disableAnimation: true';
}
else
{
$scriptInfoBubbleStyle .= "\n".', disableAnimation: false';
}
}
}
if (isset($currentmarker->hideclosebutton))
{
if ($scriptInfoBubbleStyle == "")
{
if ((int)$currentmarker->hideclosebutton == 1)
{
$scriptInfoBubbleStyle .= 'hideCloseButton: true';
}
else
{
$scriptInfoBubbleStyle .= 'hideCloseButton: false';
}
}
else
{
if ((int)$currentmarker->hideclosebutton == 1)
{
$scriptInfoBubbleStyle .= "\n".', hideCloseButton: true';
}
else
{
$scriptInfoBubbleStyle .= "\n".', hideCloseButton: false';
}
}
}
if (isset($currentmarker->backgroundclassname) && $currentmarker->backgroundclassname != "")
{
if ($scriptInfoBubbleStyle == "")
{
$scriptInfoBubbleStyle .= 'backgroundClassName: \''.$currentmarker->backgroundclassname.'\'';
}
else
{
$scriptInfoBubbleStyle .= "\n".', backgroundClassName: \''.$currentmarker->backgroundclassname.'\'';
}
}
if ($scriptInfoBubbleStyle != "")
{
$scriptInfoBubbleStyle = '{'."\n" . $scriptInfoBubbleStyle. '}'."\n";
}
}
if ($scriptInfoBubbleStyle == "")
{
if (isset($defaultStyle))
{
$scriptInfoBubbleStyle = $defaultStyle;
}
}
return $scriptInfoBubbleStyle;
}
protected static function get_userinfo_for_marker($userId, $showuser, $imgpathIcons, $imgpathUtils, $directoryIcons)
{
if ((int)$userId != 0)
{
$cur_user_name = '';
$cur_user_address = '';
$cur_user_phone = '';
$dbUsr = JFactory::getDBO();
$queryUsr = $dbUsr->getQuery(true);
$queryUsr->select('p.*, h.name as profile_username')
->from('#__users as h')
->leftJoin('#__user_profiles as p ON p.user_id=h.id')
->where('h.id = '.(int)$userId);
$dbUsr->setQuery($queryUsr);
$myUsr = $dbUsr->loadObjectList();
if (isset($myUsr))
{
foreach ($myUsr as $key => $currentUsers)
{
$cur_user_name = $currentUsers->profile_username;
if ($currentUsers->profile_key == 'profile.address1')
{
$cur_user_address = $currentUsers->profile_value;
}
else if ($currentUsers->profile_key == 'profile.phone')
{
$cur_user_phone = $currentUsers->profile_value;
}
}
$cur_scripttext = '';
if (isset($showuser) && ((int)$showuser != 0))
{
switch ((int)$showuser)
{
case 1:
if ($cur_user_name != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_USER_NAME').' '.htmlspecialchars(str_replace('\\', '/', $cur_user_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($cur_user_address != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_USER_ADDRESS').' '.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $cur_user_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($cur_user_phone != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_USER_PHONE').' '.htmlspecialchars(str_replace('\\', '/', $cur_user_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
break;
case 2:
if ($cur_user_name != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.htmlspecialchars(str_replace('\\', '/', $cur_user_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($cur_user_address != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser"><img src="'.$imgpathUtils.'address.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_USER_ADDRESS').'" />'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $cur_user_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($cur_user_phone != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser"><img src="'.$imgpathUtils.'phone.png" alt="'.JText::_('COM_ZHGOOGLEMAP_MAP_USER_USER_PHONE').'" />'.htmlspecialchars(str_replace('\\', '/', $cur_user_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
break;
case 3:
if ($cur_user_name != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.htmlspecialchars(str_replace('\\', '/', $cur_user_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($cur_user_address != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $cur_user_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($cur_user_phone != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.htmlspecialchars(str_replace('\\', '/', $cur_user_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
break;
default:
if ($cur_user_name != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.htmlspecialchars(str_replace('\\', '/', $cur_user_name), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
if ($cur_user_address != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.str_replace('<br /><br />', '<br />',str_replace(array("\r", "\r\n", "\n"), '<br />', htmlspecialchars(str_replace('\\', '/', $cur_user_address), ENT_QUOTES, 'UTF-8'))).'</p>\'+'."\n";
}
if ($cur_user_phone != "")
{
$cur_scripttext .= '\'<p class="placemarkBodyUser">'.htmlspecialchars(str_replace('\\', '/', $cur_user_phone), ENT_QUOTES, 'UTF-8').'</p>\'+'."\n";
}
break;
}
}
return $cur_scripttext;
}
else
{
return '';
}
}
else
{
return '';
}
}
protected static function get_datetime_for_marker_timestamp($datetime, $date_format)
{
$db = JFactory::getDBO();
$nullDate = $db->getNullDate();
$private_ret_val = '';
if ($datetime != $nullDate)
{
if ($date_format != "")
{
$fv_date = new DateTime($datetime);
$fv_date_user = $fv_date->format($date_format);
$private_ret_val = htmlspecialchars(str_replace('\\', '/', $fv_date_user), ENT_QUOTES, 'UTF-8');
}
else
{
$private_ret_val = htmlspecialchars(str_replace('\\', '/', $datetime), ENT_QUOTES, 'UTF-8');
}
}
return $private_ret_val;
}
protected static function get_userinfo_for_marker_timestamp($userId)
{
$cur_user_name = '';
if ((int)$userId != 0)
{
$dbUsr = JFactory::getDBO();
$queryUsr = $dbUsr->getQuery(true);
$queryUsr->select('h.name as usr_username')
->from('#__users as h')
->where('h.id = '.(int)$userId);
$dbUsr->setQuery($queryUsr);
$myUsr = $dbUsr->loadObject();
if (isset($myUsr))
{
$cur_user_name = htmlspecialchars(str_replace('\\', '/', $myUsr->usr_username), ENT_QUOTES, 'UTF-8');
}
}
return $cur_user_name;
}
public static function get_placemark_icon_definition(
$imgpathIcons,
$imgpath4size,
$currentmarker)
{
$scripttext = '';
if ((int)$currentmarker->overridemarkericon == 0)
{
if ((int)$currentmarker->iconofsetx != 0
|| (int)$currentmarker->iconofsety != 0)
{
$imgimg = $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype).'.png';
$imgimg4size = $imgpath4size.$currentmarker->icontype.'.png';
list ($imgwidth, $imgheight) = getimagesize($imgimg4size);
if (substr($currentmarker->icontype, 0, 8) == "default#")
{
$offset_fix = 7;
}
else
{
$offset_fix = $imgwidth/2;
}
$ofsX = (int)$currentmarker->iconofsetx + $offset_fix;
$ofsY = (int)$currentmarker->iconofsety + $imgheight;
$scripttextStart = ' icon: { ';
$scripttextStart .= 'url: ';
$scripttextEnd = ', size: new google.maps.Size('.$imgwidth.', '.$imgheight.')';
$scripttextEnd .= ', anchor: new google.maps.Point('.$ofsX.','.$ofsY.')';
$scripttextEnd .= '}, ' ."\n";
}
else
{
$scripttextStart = ' icon: ';
$scripttextEnd = ','."\n";
}
switch ((int)$currentmarker->baloon)
{
case 1:
// DROP
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
case 2:
// BOUNCE
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
case 3:
// SIMPLE
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
case 21:
// DROP MARKER WITH LABEL
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
case 22:
// BOUNCE MARKER WITH LABEL
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
case 23:
// SIMPLE MARKER WITH LABEL
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
default:
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->icontype).'.png"';
$scripttext .= $scripttextEnd;
break;
}
}
else
{
if ((int)$currentmarker->groupiconofsetx != 0
|| (int)$currentmarker->groupiconofsety != 0)
{
$imgimg = $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype).'.png';
$imgimg4size = $imgpath4size.$currentmarker->groupicontype.'.png';
list ($imgwidth, $imgheight) = getimagesize($imgimg4size);
if (substr($currentmarker->groupicontype, 0, 8) == "default#")
{
$offset_fix = 7;
}
else
{
$offset_fix = $imgwidth/2;
}
$ofsX = (int)$currentmarker->groupiconofsetx + $offset_fix;
$ofsY = (int)$currentmarker->groupiconofsety + $imgheight;
$scripttextStart = ' icon: { ';
$scripttextStart .= 'url: ';
$scripttextEnd = ', size: new google.maps.Size('.$imgwidth.', '.$imgheight.')';
$scripttextEnd .= ', anchor: new google.maps.Point('.$ofsX.','.$ofsY.')';
$scripttextEnd .= '}, ' ."\n";
}
else
{
$scripttextStart = ' icon: ';
$scripttextEnd = ','."\n";
}
$scripttext .= $scripttextStart;
$scripttext .= 'icoIcon + "'.str_replace("#", "%23", $currentmarker->groupicontype).'.png"';
$scripttext .= $scripttextEnd;
}
return $scripttext;
}
private static function get_placemarklist_action_string($type, $currentArticleId, $currentmarkerid, $markerlistaction)
{
$scripttext = '';
if ($type == 1)
{
$scripttext .= ' markerLI.onclick = function(){ zhgmObjMgr'.$currentArticleId.'.PlacemarkListAction('. $currentmarkerid.')};'."\n";
}
else
{
if ((int)$markerlistaction == 0)
{
$scripttext .= ' markerLI.onclick = function(){ map'.$currentArticleId.'.setCenter(latlng'. $currentmarkerid.')};'."\n";
}
else if ((int)$markerlistaction == 1)
{
$scripttext .= ' markerLI.onclick = function(){ google.maps.event.trigger(marker'. $currentmarkerid.', "click")};'."\n";
}
else if ((int)$markerlistaction == 11)
{
$scripttext .= ' markerLI.onclick = function(){ '.
' map'.$currentArticleId.'.setCenter(latlng'. $currentmarkerid.');'.
' google.maps.event.trigger(marker'. $currentmarkerid.', "click");'.
'};'."\n";
}
else if ((int)$markerlistaction == 2)
{
$scripttext .= ' markerLI.onclick = function(){ '.
' map'.$currentArticleId.'.setCenter(latlng'. $currentmarkerid.');'.
' Map_Animate_Marker(map'.$currentArticleId.', marker'. $currentmarkerid.');'.
'};'."\n";
}
else if ((int)$markerlistaction == 3)
{
$scripttext .= ' markerLI.onclick = function(){ '.
' Map_Animate_Marker(map'.$currentArticleId.', marker'. $currentmarkerid.');'.
' google.maps.event.trigger(marker'. $currentmarkerid.', "click");'.
'};'."\n";
}
else if ((int)$markerlistaction == 12)
{
$scripttext .= ' markerLI.onclick = function(){ '.
' map'.$currentArticleId.'.setCenter(latlng'. $currentmarkerid.');'.
' Map_Animate_Marker(map'.$currentArticleId.', marker'. $currentmarkerid.');'.
' google.maps.event.trigger(marker'. $currentmarkerid.', "click");'.
'};'."\n";
}
else
{
$scripttext .= ' markerLI.onclick = function(){ map'.$currentArticleId.'.setCenter(latlng'. $currentmarkerid.')};'."\n";
}
}
return $scripttext;
}
public static function get_placemarklist_string(
$type,
$currentArticleId,
$currentmarker,
$markerlistcssstyle,
$markerlistpos,
$markerlistcontent,
$markerlistaction,
$imgpathIcons)
{
$scripttext = '';
if (isset($markerlistpos) && (int)$markerlistpos != 0)
{
if (isset($currentmarker->includeinlist))
{
$doAddToList = (int)$currentmarker->includeinlist;
}
else
{
$doAddToList = 1;
}
if ($doAddToList == 1)
{
$scripttext .= 'if (markerUL)'."\n";
$scripttext .= '{'."\n";
if ((int)$markerlistcontent < 100)
{
$scripttext .= ' var markerLI = document.createElement(\'li\');'."\n";
$scripttext .= ' markerLI.id = "zhgm_pmlist_item_'.$currentArticleId.'_'.$currentmarker->id.'";'."\n";
$scripttext .= ' markerLI.className = "zhgm-li-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerLIWrp = document.createElement(\'div\');'."\n";
$scripttext .= ' markerLIWrp.className = "zhgm-li-wrp-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerASelWrp = document.createElement(\'div\');'."\n";
$scripttext .= ' markerASelWrp.className = "zhgm-li-wrp-a-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerASel = document.createElement(\'a\');'."\n";
$scripttext .= ' markerASel.className = "zhgm-li-a-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerASel.id = "zhgm_pmlist_'.$currentArticleId.'_'.$currentmarker->id.'";'."\n";
$scripttext .= ' markerASel.href = \'javascript:void(0);\';'."\n";
if ((int)$markerlistcontent == 0)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-0-li-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 1)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-1-lit-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-1-liw-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-1-lid-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 5)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-5-lit-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-5-liw-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-5-lid-'.$markerlistcssstyle.'">'.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 2)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-2-liw-icon-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDIcon'. $currentmarker->id.'" class="zhgm-2-lii-icon-'.$markerlistcssstyle.'"><img src="';
if ((int)$currentmarker->overridemarkericon == 0)
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype);
}
else
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype);
}
$scripttext .= '.png" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-2-lit-icon-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'\'+'."\n";
$scripttext .= ' \'</div></div>\';'."\n";
}
else if ((int)$markerlistcontent == 3)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-3-liw-icon-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDIcon'. $currentmarker->id.'" class="zhgm-3-lii-icon-'.$markerlistcssstyle.'"><img src="';
if ((int)$currentmarker->overridemarkericon == 0)
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype);
}
else
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype);
}
$scripttext .= '.png" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-3-lit-icon-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-3-liwd-icon-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-3-lid-icon-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 6)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-6-liw-icon-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDIcon'. $currentmarker->id.'" class="zhgm-6-lii-icon-'.$markerlistcssstyle.'"><img src="';
if ((int)$currentmarker->overridemarkericon == 0)
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype);
}
else
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype);
}
$scripttext .= '.png" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-6-lit-icon-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-6-liwd-icon-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-6-lid-icon-'.$markerlistcssstyle.'">'.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 4)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'';
$scripttext .= '<table class="zhgm-4-table-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<tbody>';
$scripttext .= '<tr class="zhgm-4-row-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<td rowspan=2 class="zhgm-4-tdicon-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<img src="';
if ((int)$currentmarker->overridemarkericon == 0)
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype);
}
else
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype);
}
$scripttext .= '.png" alt="" />';
$scripttext .= '</td>';
$scripttext .= '<td class="zhgm-4-tdtitle-icon-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '<tr>';
$scripttext .= '<td class="zhgm-4-tddesc-icon-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '</tbody>';
$scripttext .= '</table>';
$scripttext .= ' \';'."\n";
}
else if ((int)$markerlistcontent == 7)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'';
$scripttext .= '<table class="zhgm-7-table-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<tbody>';
$scripttext .= '<tr class="zhgm-7-row-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<td rowspan=2 class="zhgm-7-tdicon-icon-'.$markerlistcssstyle.'">';
$scripttext .= '<img src="';
if ((int)$currentmarker->overridemarkericon == 0)
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->icontype);
}
else
{
$scripttext .= $imgpathIcons.str_replace("#", "%23", $currentmarker->groupicontype);
}
$scripttext .= '.png" alt="" />';
$scripttext .= '</td>';
$scripttext .= '<td class="zhgm-7-tdtitle-icon-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '<tr>';
$scripttext .= '<td class="zhgm-7-tddesc-icon-'.$markerlistcssstyle.'">';
$scripttext .= str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml));
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '</tbody>';
$scripttext .= '</table>';
$scripttext .= ' \';'."\n";
}
else if ((int)$markerlistcontent == 11)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-11-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-11-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-11-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" />\'+'."\n";
$scripttext .= ' \'</div></div>\';'."\n";
}
else if ((int)$markerlistcontent == 12)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-12-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-12-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-12-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" /></div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-12-liwd-image-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-12-lid-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 16)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-16-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-16-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-16-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" /></div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-16-liwd-image-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-16-lid-image-'.$markerlistcssstyle.'">'.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 13)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-13-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-13-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-13-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'\'+'."\n";
$scripttext .= ' \'</div></div>\';'."\n";
}
else if ((int)$markerlistcontent == 14)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-14-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-14-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-14-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-14-liwd-image-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-14-lid-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 17)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'<div id="markerDWrp'. $currentmarker->id.'" class="zhgm-17-liw-image-'.$markerlistcssstyle.'">\'+'."\n";
$scripttext .= ' \'<div id="markerDImage'. $currentmarker->id.'" class="zhgm-17-lii-image-'.$markerlistcssstyle.'"><img src="'.$currentmarker->hrefimagethumbnail.'" alt="" /></div>\'+'."\n";
$scripttext .= ' \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-17-lit-image-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-17-liwd-image-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDesc'. $currentmarker->id.'" class="zhgm-17-lid-image-'.$markerlistcssstyle.'">'.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'</div>\'+'."\n";
$scripttext .= ' \'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 15)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'';
$scripttext .= '<table class="zhgm-15-table-image-'.$markerlistcssstyle.'">';
$scripttext .= '<tbody>';
$scripttext .= '<tr class="zhgm-15-row-image-'.$markerlistcssstyle.'">';
$scripttext .= '<td rowspan=2 class="zhgm-15-tdicon-image-'.$markerlistcssstyle.'">';
$scripttext .= '<img src="'.$currentmarker->hrefimagethumbnail.'" alt="" />';
$scripttext .= '</td>';
$scripttext .= '<td class="zhgm-15-tdtitle-image-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '<tr>';
$scripttext .= '<td class="zhgm-15-tddesc-image-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '</tbody>';
$scripttext .= '</table>';
$scripttext .= ' \';'."\n";
}
else if ((int)$markerlistcontent == 18)
{
$scripttext .= ' markerASel.innerHTML = ';
$scripttext .= ' \'';
$scripttext .= '<table class="zhgm-18-table-image-'.$markerlistcssstyle.'">';
$scripttext .= '<tbody>';
$scripttext .= '<tr class="zhgm-18-row-image-'.$markerlistcssstyle.'">';
$scripttext .= '<td rowspan=2 class="zhgm-18-tdicon-image-'.$markerlistcssstyle.'">';
$scripttext .= '<img src="'.$currentmarker->hrefimagethumbnail.'" alt="" />';
$scripttext .= '</td>';
$scripttext .= '<td class="zhgm-18-tdtitle-image-'.$markerlistcssstyle.'">';
$scripttext .= htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8');
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '<tr>';
$scripttext .= '<td class="zhgm-18-tddesc-image-'.$markerlistcssstyle.'">';
$scripttext .= str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml));
$scripttext .= '</td>';
$scripttext .= '</tr>';
$scripttext .= '</tbody>';
$scripttext .= '</table>';
$scripttext .= ' \';'."\n";
}
else
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASel'. $currentmarker->id.'" class="zhgm-0-li-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
}
$scripttext .= comZhGoogleMapPlacemarksHelper::get_placemarklist_action_string($type, $currentArticleId, $currentmarker->id, $markerlistaction);
$scripttext .= ' markerASelWrp.appendChild(markerASel);'."\n";
$scripttext .= ' markerLIWrp.appendChild(markerASelWrp);'."\n";
if ((int)$markerlistcontent == 1
|| (int)$markerlistcontent == 5)
{
$scripttext .= ' markerLIWrp.appendChild(markerDSel);'."\n";
}
else if ((int)$markerlistcontent == 3
|| (int)$markerlistcontent == 6)
{
$scripttext .= ' markerLIWrp.appendChild(markerDSel);'."\n";
}
else if ((int)$markerlistcontent == 12
|| (int)$markerlistcontent == 16)
{
$scripttext .= ' markerLIWrp.appendChild(markerDSel);'."\n";
}
else if ((int)$markerlistcontent == 14
|| (int)$markerlistcontent == 17)
{
$scripttext .= ' markerLIWrp.appendChild(markerDSel);'."\n";
}
$scripttext .= ' markerLI.appendChild(markerLIWrp);'."\n";
$scripttext .= ' markerUL.appendChild(markerLI);'."\n";
}
else
{
$scripttext .= ' var markerLI = document.createElement(\'tr\');'."\n";
$scripttext .= ' markerLI.id = "zhgm_pmlist_item_'.$currentArticleId.'_'.$currentmarker->id.'";'."\n";
$scripttext .= ' markerLI.className = "zhgm-li-table-tr-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerLI_C1 = document.createElement(\'td\');'."\n";
$scripttext .= ' markerLI_C1.className = "zhgm-li-table-c1-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerASelWrp = document.createElement(\'div\');'."\n";
$scripttext .= ' markerASelWrp.className = "zhgm-li-table-a-wrp-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerASel = document.createElement(\'a\');'."\n";
$scripttext .= ' markerASel.className = "zhgm-li-table-a-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerASel.id = "zhgm_pmlist_'.$currentArticleId.'_'.$currentmarker->id.'";'."\n";
$scripttext .= ' markerASel.href = \'javascript:void(0);\';'."\n";
if ((int)$markerlistcontent == 101)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASelTable'. $currentmarker->id.'" class="zhgm-101-td-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 102)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASelTable'. $currentmarker->id.'" class="zhgm-102-td1-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerLI_C2 = document.createElement(\'td\');'."\n";
$scripttext .= ' markerLI_C2.className = "zhgm-li-table-c2-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-li-table-desc2-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDescTable'. $currentmarker->id.'" class="zhgm-102-td2-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->description), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
}
else if ((int)$markerlistcontent == 103)
{
$scripttext .= ' markerASel.innerHTML = \'<div id="markerASelTable'. $currentmarker->id.'" class="zhgm-103-td1-'.$markerlistcssstyle.'">'.htmlspecialchars(str_replace('\\', '/', $currentmarker->title), ENT_QUOTES, 'UTF-8').'</div>\';'."\n";
$scripttext .= ' var markerLI_C2 = document.createElement(\'td\');'."\n";
$scripttext .= ' markerLI_C2.className = "zhgm-li-table-c3-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' var markerDSel = document.createElement(\'div\');'."\n";
$scripttext .= ' markerDSel.className = "zhgm-li-table-desc3-'.$markerlistcssstyle.'";'."\n";
$scripttext .= ' markerDSel.innerHTML = ';
$scripttext .= ' \'<div id="markerDDescTable'. $currentmarker->id.'" class="zhgm-103-td2-'.$markerlistcssstyle.'">'.str_replace("'", "\'", str_replace(array("\r", "\r\n", "\n"), '', $currentmarker->descriptionhtml)).'</div>\';'."\n";
}
$scripttext .= comZhGoogleMapPlacemarksHelper::get_placemarklist_action_string($type, $currentArticleId, $currentmarker->id, $markerlistaction);
$scripttext .= ' markerASelWrp.appendChild(markerASel);'."\n";
$scripttext .= ' markerLI_C1.appendChild(markerASelWrp);'."\n";
if ((int)$markerlistcontent == 102
|| (int)$markerlistcontent == 103)
{
$scripttext .= ' markerLI_C2.appendChild(markerDSel);'."\n";
}
$scripttext .= ' markerLI.appendChild(markerLI_C1);'."\n";
if ((int)$markerlistcontent == 102
|| (int)$markerlistcontent == 103)
{
$scripttext .= ' markerLI.appendChild(markerLI_C2);'."\n";
}
$scripttext .= ' markerUL.appendChild(markerLI);'."\n";
}
$scripttext .= '}'."\n";
}
}
return $scripttext;
}
}