element['size'] ? ' size="'.(int) $this->element['size'].'"' : ''; $maxLength = $this->element['maxlength'] ? ' maxlength="'.(int) $this->element['maxlength'].'"' : ''; $class = $this->element['class'] ? ' class="'.(string) $this->element['class'].'"' : ''; $readonly = ((string) $this->element['readonly'] == 'true') ? ' readonly="readonly"' : ''; $disabled = ((string) $this->element['disabled'] == 'true') ? ' disabled="disabled"' : ''; $maptype = ( (string)$this->element['maptype'] ? $this->element['maptype'] : '' ); if ($this->id == 'jform_latitude') { // One link for latitude, longitude, zoom $lat = $this->form->getValue('latitude'); $lng = $this->form->getValue('longitude'); $zoom = $this->form->getValue('zoom'); $suffix = ''; if ($lat != '') { $suffix .= '&lat='.$lat;} if ($lng != '') { $suffix .= '&lng='.$lng;} if ($zoom != '' && (int)$zoom > 0) { $suffix .= '&zoom='.$zoom;} if ($maptype != '') { $suffix .= '&type='.$maptype;} $link = 'index.php?option=com_phocamaps&view=phocamapsgmap&tmpl=component&field='.$this->id. $suffix; // Load the modal behavior script. //HTMLHelper::_('behavior.modal', 'a.modal_'.$this->id); } HTMLHelper::_('jquery.framework'); // Initialize JavaScript field attributes. $onchange = (string) $this->element['onchange']; $onchangeOutput = ' onChange="'.(string) $this->element['onchange'].'"'; $idA = 'pgselectmap'; // Build the script. $script = array(); $script[] = ' function phocaSelectMap_'.$this->id.'(title) {'; $script[] = ' document.getElementById("'.$this->id.'_id").value = title;'; $script[] = ' '.$onchange; // BE AWARE don't close the window here, we are waiting for close button, not immediately closing //$script[] = ' jQuery(\'#'.$idA.'\').modal(\'toggle\');'; //$script[] = ' SqueezeBox.close();'; $script[] = ' }'; // Hide Info box on start if ($this->id == 'jform_latitude') { $script[] = ' jQuery(document).ready(function() {'; $script[] = ' jQuery(\'#'.$idA.'\').on(\'shown.bs.modal\', function () {'; $script[] = ' jQuery(\'#phmPopupInfo\').html(\'\');'; $script[] = ' })'; $script[] = ' })'; } // Add the script to the document head. Factory::getDocument()->addScriptDeclaration(implode("\n", $script)); if ($this->id == 'jform_latitude') { /*$html[] = '
'; $html[] = ''; $html[] = '' . Text::_('COM_PHOCAMAPS_FORM_SELECT_COORDINATES').''; $html[] = '
'. "\n";*/ $html[] = '
'; $html[] = ''; $html[] = '' . ' ' . Text::_('COM_PHOCAMAPS_FORM_SELECT_COORDINATES') . ''; $html[] = '
'. "\n"; $html[] = HTMLHelper::_( 'bootstrap.renderModal', $idA, array( 'url' => $link, 'title' => Text::_('COM_PHOCAMAPS_FORM_SELECT_COORDINATES'), 'width' => '', 'height' => '', 'modalWidth' => '80', 'bodyHeight' => '80', 'footer' => '
' ) ); } else { $html[] = '
'; $html[] = ' '; $html[] = '
'. "\n"; } return implode("\n", $html); } }