'', 'name' => '' ], $config ); // Parent constructor parent::__construct( $config ); // Initialization $this->setAttributes( [ 'type' => 'hidden', 'value' => $config['value'], 'name' => $config['name'], ] ); $this->removeAttributes( [ 'aria-disabled' ] ); } public function getConfig( &$config ) { $config['value'] = $this->getAttribute( 'value' ); $config['name'] = $this->getAttribute( 'name' ); return parent::getConfig( $config ); } }