MediaWiki REL1_31
HTMLTagFilter.php
Go to the documentation of this file.
1<?php
6 protected $tagFilter;
7
8 public function getTableRow( $value ) {
9 $this->tagFilter = ChangeTags::buildTagFilterSelector(
10 $value, false, $this->mParent->getContext() );
11 if ( $this->tagFilter ) {
12 return parent::getTableRow( $value );
13 }
14 return '';
15 }
16
17 public function getDiv( $value ) {
18 $this->tagFilter = ChangeTags::buildTagFilterSelector(
19 $value, false, $this->mParent->getContext() );
20 if ( $this->tagFilter ) {
21 return parent::getDiv( $value );
22 }
23 return '';
24 }
25
26 public function getOOUI( $value ) {
27 $this->tagFilter = ChangeTags::buildTagFilterSelector(
28 $value, true, $this->mParent->getContext() );
29 if ( $this->tagFilter ) {
30 return parent::getOOUI( $value );
31 }
32 return new OOUI\FieldLayout( new OOUI\Widget() );
33 }
34
35 public function getInputHTML( $value ) {
36 if ( $this->tagFilter ) {
37 // we only need the select field, HTMLForm should handle the label
38 return $this->tagFilter[1];
39 }
40 return '';
41 }
42
43 public function getInputOOUI( $value ) {
44 if ( $this->tagFilter ) {
45 // we only need the select field, HTMLForm should handle the label
46 return $this->tagFilter[1];
47 }
48 return '';
49 }
50}
static buildTagFilterSelector( $selected='', $ooui=false, IContextSource $context=null)
Build a text box to select a change tag.
The parent class to generate form fields.
Wrapper for ChangeTags::buildTagFilterSelector to use in HTMLForm.
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
getTableRow( $value)
Get the complete table row for the input, including help text, labels, and whatever.
getOOUI( $value)
Get the OOUI version of the div.
getInputOOUI( $value)
Same as getInputHTML, but returns an OOUI object.
getDiv( $value)
Get the complete div for the input, including help text, labels, and whatever.