WSU Technology Knowledge Base

From WSU Technology Knowledge Base
Revision as of 20:46, 18 January 2012 by CGorak (talk | contribs)
Jump to navigation Jump to search

MediaWiki has been successfully installed.

Consult the User's Guide for information on using the wiki software.

Getting started

/* Change the main page url used in things like the logo to a url of another page on the wiki */ $wgHooks['SkinTemplateOutputPageBeforeExec'][] = 'lfChangeMainPageURL'; function lfChangeMainPageURL( $sk, &$tpl ) {

       $tpl->data['nav_urls']['mainpage']['href'] = Title::newFromText('ThePage')->getLocalURL(); // Point the main page url to a wiki page's url
       return true;

}