Merge "HTMLTitleTextField: Remove incorrect check for unsubmitted GET forms"
[lhc/web/wiklou.git] / includes / htmlform / HTMLFormFieldLayout.php
1 <?php
2
3 class HTMLFormFieldLayout extends OOUI\FieldLayout {
4 use HTMLFormElement;
5
6 public function __construct( $fieldWidget, array $config = [] ) {
7 parent::__construct( $fieldWidget, $config );
8
9 // Traits
10 $this->initializeHTMLFormElement( $config );
11 }
12
13 protected function getJavaScriptClassName() {
14 return 'mw.htmlform.FieldLayout';
15 }
16 }