mParams['id']; $label = Html::rawElement( 'label', [ 'for' => $id ], $this->mLabel ); if ( !empty( $this->mParams['radio'] ) ) { $radioId = $this->mParams['radio-id'] ?? // Old way. For the benefit of extensions that do not define // the 'radio-id' key. 'wpSourceType' . $this->mParams['upload-type']; $attribs = [ 'name' => 'wpSourceType', 'type' => 'radio', 'id' => $radioId, 'value' => $this->mParams['upload-type'], ]; if ( !empty( $this->mParams['checked'] ) ) { $attribs['checked'] = 'checked'; } $label .= Html::element( 'input', $attribs ); } return Html::rawElement( 'td', [ 'class' => 'mw-label' ] + $cellAttributes, $label ); } /** * @return int */ function getSize() { return $this->mParams['size'] ?? 60; } }