MediaWiki  master
HTMLFormFieldLayout.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * @stable to extend
5  */
6 class HTMLFormFieldLayout extends OOUI\FieldLayout {
7  use HTMLFormElement;
8 
13  public function __construct( $fieldWidget, array $config = [] ) {
14  parent::__construct( $fieldWidget, $config );
15 
16  // Traits
17  $this->initializeHTMLFormElement( $config );
18  }
19 
20  protected function getJavaScriptClassName() {
21  return 'mw.htmlform.FieldLayout';
22  }
23 }
initializeHTMLFormElement(array $config=[])
trait HTMLFormElement
Allows custom data specific to HTMLFormField to be set for OOUI forms.
__construct( $fieldWidget, array $config=[])