MediaWiki  1.34.0
EditWatchlistNormalHTMLForm.php
Go to the documentation of this file.
1 <?php
25  public function getLegend( $namespace ) {
26  $namespace = substr( $namespace, 2 );
27 
28  return $namespace == NS_MAIN
29  ? $this->msg( 'blanknamespace' )->text()
30  : $this->getContext()->getLanguage()->getFormattedNsText( $namespace );
31  }
32 
33  public function displaySection(
34  $fields, $sectionName = '', $fieldsetIDPrefix = '', &$hasUserVisibleFields = false
35  ) {
36  return parent::displaySection( $fields, $sectionName, 'editwatchlist-', $hasUserVisibleFields );
37  }
38 }
EditWatchlistNormalHTMLForm\getLegend
getLegend( $namespace)
Get a string to go in the "<legend>" of a section fieldset.
Definition: EditWatchlistNormalHTMLForm.php:25
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:40
EditWatchlistNormalHTMLForm\displaySection
displaySection( $fields, $sectionName='', $fieldsetIDPrefix='', &$hasUserVisibleFields=false)
Definition: EditWatchlistNormalHTMLForm.php:33
OOUIHTMLForm
Compact stacked vertical format for forms, implemented using OOUI widgets.
Definition: OOUIHTMLForm.php:27
NS_MAIN
const NS_MAIN
Definition: Defines.php:60
EditWatchlistNormalHTMLForm
Extend OOUIHTMLForm purely so we can have a more sane way of getting the section headers.
Definition: EditWatchlistNormalHTMLForm.php:24
ContextSource\msg
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:168