Developers:HowToTameMediaWiki
From WikiPathways
Because MediaWiki's documentation is very sparse and scattered it may be hard to handle sometimes. This page is intended for additional function documentation and short howto's on problems that took you a while to find a solution for. Please put them here, so we don't run into them twice.
Resources
Some useful global variables
- $wgSkin: the currently used skin
- Use:
- Get link objects
- Use:
- $wgUser: the current user
- Use:
- Get local time/date
- Use:
Creating a link to a wiki page
Use the function Skin::makeKnownLinkObj(Title $title, String $text):
- $title: the Title object of the wiki page
- $text: the text that the link should display (text between the <a> tags)