Extension:BreadCrumbs
From MediaWiki.org
|
|
The author of this extension is no longer maintaining it! Meaning any reports for additional features and/or bugfixes will more than likely be ignored. Volunteers are encouraged to take on the task of developing and maintaining it. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extensions}} infobox. |
|
BreadCrumbs Release status: stable |
|||
|---|---|---|---|
| Implementation | User interface | ||
| Description | Shows the users path through the wiki. | ||
| Author(s) | Manuel Schneider | ||
| Last version | 0.2 (2009-11-10) | ||
| MediaWiki | > 1.9 | ||
| License | GPL | ||
| Download | Download snapshot Subversion [Help] |
||
|
|||
|
|||
|
Check usage (experimental) |
|||
BreadCrumbs extension shows the users path through the wiki.
Note: This extension creates breadcrumbs in the traditional "How did I get here?" sense; use Extension:BreadCrumbs2 for breadcrumbs in the recently popular category-based "Where am I?" sense.
[edit] Installation
- Download the latest snapshot and extract it to your extensions directory
- Add
into your wiki's LocalSettings.phprequire_once("$IP/extensions/BreadCrumbs/BreadCrumbs.php");
- Installation can now be verified through Special:Version
[edit] Options
By default the following options are set by this extension:
$wgBreadCrumbsDelimiter = ' > '; // delimiter between breadcrumbs $wgBreadCrumbsCount = 5; // number of breadcrumbs to show $wgBreadCrumbsShowAnons = true; // showing breadcrumbs to anonymous users
You may change each one of these parameters by including it with a new value into your LocalSettings.php below the initialisation of this extension.