Ejemplo n.º 1
0
 /**
  * Method to get the field input markup for a generic list.
  * Use the multiple attribute to enable multiselect.
  *
  * @return  string  The field input markup.
  *
  * @since   11.1
  */
 protected function getInput()
 {
     $plugin = JPATH_ADMINISTRATOR . '/components/com_akquickicons/includes/plugins/pro/pro.php';
     if (JFile::exists($plugin)) {
         $this->multiple = true;
     } else {
         $this->multiple = false;
     }
     return parent::getInput();
 }
Ejemplo n.º 2
0
 protected function getInput()
 {
     $options = (array) $this->getOptions();
     if (empty($options)) {
         $formfield = JFormHelper::loadFieldType('text');
         $formfield->setup($this->element, '');
         if (is_array($this->value)) {
             $formfield->value = implode(',', $this->value);
         } else {
             $formfield->value = $this->value;
         }
         $formfield->hint = JText::_((string) $this->hint);
         return $formfield->getInput() . PHP_EOL;
     }
     return parent::getInput();
 }
Ejemplo n.º 3
0
 /**
  * Method to get the field input markup for a generic list.
  * Use the multiple attribute to enable multiselect.
  *
  * @return  string  The field input markup.
  */
 protected function getInput()
 {
     return parent::getInput() . $this->quickadd();
 }