initializeLabelElement( array_merge( $config, [ 'labelElement' => $this ] ) ); // Properties $this->input = isset( $config['input'] ) ? $config['input'] : null; // Initialization if ( $this->input && $this->input->getInputId() ) { $this->setAttributes( [ 'for' => $this->input->getInputId() ] ); } $this->addClasses( [ 'oo-ui-labelWidget' ] ); } public function getConfig( &$config ) { if ( $this->input !== null ) { $config['input'] = $this->input; } return parent::getConfig( $config ); } }