setQuery( $query ); $items = $db->loadObjectList(); $attr = ''; $attr .= $this->required ? ' required aria-required="true"' : ''; $attr .= $this->element['onchange'] ? ' onchange="'.(string) $this->element['onchange'].'"' : ''; $attr .= $this->element['class'] ? ' class="'.(string) $this->element['class'].'"' : 'class="form-select"'; array_unshift($items, HTMLHelper::_('select.option', '', '- '.Text::_('COM_PHOCAMAPS_SELECT_MAP').' -', 'value', 'text')); return HTMLHelper::_('select.genericlist', $items, $this->name, trim($attr), 'value', 'text', $this->value, $this->id ); } } ?>