MediaWiki  REL1_24
TitleFormatter.php
Go to the documentation of this file.
00001 <?php
00033 interface TitleFormatter {
00046     public function formatTitle( $namespace, $text, $fragment = '' );
00047 
00057     public function getText( TitleValue $title );
00058 
00066     public function getPrefixedText( TitleValue $title );
00067 
00075     public function getFullText( TitleValue $title );
00076 
00089     public function getNamespaceName( $namespace, $text );
00090 }