protected function getOptions()
 {
     $lg = JFactory::getLanguage();
     $lang = substr($lg->getTag(), 0, 2);
     $this->element['query'] = str_ireplace('__lang__', $lang, (string) $this->element['query']);
     return parent::getOptions();
 }
Beispiel #2
0
 /**
  * Method to get certain otherwise inaccessible properties from the form field object.
  *
  * @param   string  $name  The property name for which to the the value.
  *
  * @return  mixed  The property value or null.
  *
  * @since   2.0
  */
 public function __get($name)
 {
     switch ($name) {
         case 'static':
             if (empty($this->static)) {
                 $this->static = $this->getStatic();
             }
             return $this->static;
             break;
         case 'repeatable':
             if (empty($this->repeatable)) {
                 $this->repeatable = $this->getRepeatable();
             }
             return $this->static;
             break;
         default:
             return parent::__get($name);
     }
 }