MediaWiki REL1_31
SearchInputWidget.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Widget;
4
12
13 protected $pushPending = false;
14 protected $performSearchOnClick = true;
15 protected $validateTitle = false;
16 protected $highlightFirst = false;
17 protected $dataLocation = 'header';
18
29 public function __construct( array $config = [] ) {
30 $config = array_merge( [
31 'maxLength' => null,
32 'icon' => 'search',
33 ], $config );
34
35 parent::__construct( $config );
36
37 // Properties, which are ignored in PHP and just shipped back to JS
38 if ( isset( $config['pushPending'] ) ) {
39 $this->pushPending = $config['pushPending'];
40 }
41
42 if ( isset( $config['performSearchOnClick'] ) ) {
43 $this->performSearchOnClick = $config['performSearchOnClick'];
44 }
45
46 if ( isset( $config['dataLocation'] ) ) {
47 // identifies the location of the search bar for tracking purposes
48 $this->dataLocation = $config['dataLocation'];
49 }
50
51 // Initialization
52 $this->addClasses( [ 'mw-widget-searchInputWidget' ] );
53 }
54
55 protected function getInputElement( $config ) {
56 return ( new \OOUI\Tag( 'input' ) )->setAttributes( [ 'type' => 'search' ] );
57 }
58
59 protected function getJavaScriptClassName() {
60 return 'mw.widgets.SearchInputWidget';
61 }
62
63 public function getConfig( &$config ) {
64 $config['pushPending'] = $this->pushPending;
65 $config['performSearchOnClick'] = $this->performSearchOnClick;
66 if ( $this->dataLocation ) {
67 $config['dataLocation'] = $this->dataLocation;
68 }
69 $config['$overlay'] = true;
70 return parent::getConfig( $config );
71 }
72}