public function getConfig(&$config) { if ($this->framed !== true) { $config['framed'] = $this->framed; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->tabIndex !== 0) { $config['tabIndex'] = $this->tabIndex; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->accessKey !== null) { $config['accessKey'] = $this->accessKey; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->title !== null) { $config['title'] = $this->title; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->indicator !== null) { $config['indicator'] = $this->indicator; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->icon !== null) { $config['icon'] = $this->icon; } return parent::getConfig($config); }
public function getConfig(&$config) { if ($this->label !== null) { $config['label'] = $this->label; } return parent::getConfig($config); }
public function getConfig(&$config) { if (!empty($this->flags)) { $config['flags'] = $this->getFlags(); } return parent::getConfig($config); }
public function getConfig(&$config) { $config['items'] = $this->items; return parent::getConfig($config); }