MediaWiki:SidebarTree
From Riverview Legal Group
Access restrictions were established for this page. If you see this message, you have no access to this page.
$wgHooks['BeforePageDisplay'][] = 'wfAddSidebarTree'; function wfAddSidebarTree( $out, $skin ) { $title = Title::newFromText( 'SidebarTree', NS_MEDIAWIKI ); $article = new Article( $title ); $html = $out->parse( $article->getPage()->getContent()->getNativeData() );
$out->addHTML( "
" );
return true; }