initializeLabelElement( array_merge( [ 'labelElement' => $this ], $config ) ); // Properties $this->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 ); } }