MediaWiki:Sidebar

From Objectif Client Inc
Jump to navigation Jump to search

$wgHooks['BeforePageDisplay'][] = 'wfAddSidebarTree'; function wfAddSidebarTree( $out, $skin ) { $title = Title::newFromText( 'SidebarTree', NS_MEDIAWIKI ); $article = new Article( $title ); $html = $out->parse( $article->getContent() );

$out->addHTML( "

$html

" );

return true; }

help