Esempio n. 1
0
 public function getConfig(&$config)
 {
     if ($this->input !== null) {
         $config['input'] = $this->input;
     }
     return parent::getConfig($config);
 }
Esempio n. 2
0
 public function getConfig(&$config)
 {
     if ($this->progress !== null) {
         $config['progress'] = $this->progress;
     }
     return parent::getConfig($config);
 }
Esempio n. 3
0
 public function getConfig(&$config)
 {
     $name = $this->input->getAttribute('name');
     if ($name !== null) {
         $config['name'] = $name;
     }
     if ($this->value !== '') {
         $config['value'] = $this->value;
     }
     return parent::getConfig($config);
 }
Esempio n. 4
0
 public function getConfig(&$config)
 {
     if ($this->href !== null) {
         $config['href'] = $this->href;
     }
     if ($this->target !== null) {
         $config['target'] = $this->target;
     }
     if ($this->noFollow !== true) {
         $config['noFollow'] = $this->noFollow;
     }
     return parent::getConfig($config);
 }