MediaWiki  1.34.0
TitleParser.php
Go to the documentation of this file.
1 <?php
33 interface TitleParser {
45  public function parseTitle( $text, $defaultNamespace = NS_MAIN );
46 
57  public function makeTitleValueSafe( $namespace, $text, $fragment = '', $interwiki = '' );
58 }
TitleParser\parseTitle
parseTitle( $text, $defaultNamespace=NS_MAIN)
Parses the given text and constructs a TitleValue.
NS_MAIN
const NS_MAIN
Definition: Defines.php:60
TitleParser
A title parser service for MediaWiki.
Definition: TitleParser.php:33
TitleParser\makeTitleValueSafe
makeTitleValueSafe( $namespace, $text, $fragment='', $interwiki='')
Given a namespace and title, return a TitleValue if valid, or null if invalid.