MediaWiki REL1_31
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' )->escaped()
30 : htmlspecialchars( $this->getContext()->getLanguage()->getFormattedNsText( $namespace ) );
31 }
32
33 public function getBody() {
34 return $this->displaySection( $this->mFieldTree, '', 'editwatchlist-' );
35 }
36}
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
Extend HTMLForm purely so we can have a more sane way of getting the section headers.
getBody()
Get the whole body of the form.
getLegend( $namespace)
Get a string to go in the "<legend>" of a section fieldset.
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:130
displaySection( $fields, $sectionName='', $fieldsetIDPrefix='', &$hasUserVisibleFields=false)
const NS_MAIN
Definition Defines.php:74