MediaWiki  REL1_23
TitleFormatter.php
Go to the documentation of this file.
00001 <?php
00033 interface TitleFormatter {
00034 
00047     public function formatTitle( $namespace, $text, $fragment = '' );
00048 
00058     public function getText( TitleValue $title );
00059 
00067     public function getPrefixedText( TitleValue $title );
00068 
00076     public function getFullText( TitleValue $title );
00077 
00090     public function getNamespaceName( $namespace, $text );
00091 }