mParams['id']; $label = Html::rawElement( 'label', [ 'for' => $id ], $this->mLabel ); if ( !empty( $this->mParams['radio'] ) ) { if ( isset( $this->mParams['radio-id'] ) ) { $radioId = $this->mParams['radio-id']; } else { // Old way. For the benefit of extensions that do not define // the 'radio-id' key. $radioId = '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 isset( $this->mParams['size'] ) ? $this->mParams['size'] : 60; } }