PHPackages                             mediawiki/semantic-breadcrumb-links - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. mediawiki/semantic-breadcrumb-links

ActiveMediawiki-extension

mediawiki/semantic-breadcrumb-links
===================================

An extension to Semantic MediaWiki allowing to build breadcrumb links from an attributive property filter

2.0.1(6y ago)1921.8k↓100%5[11 issues](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/issues)GPL-2.0-or-laterPHPPHP &gt;=5.6CI passing

Since Feb 14Pushed 3mo ago10 watchersCompare

[ Source](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks)[ Packagist](https://packagist.org/packages/mediawiki/semantic-breadcrumb-links)[ Docs](https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Breadcrumb_Links)[ RSS](/packages/mediawiki-semantic-breadcrumb-links/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (11)Used By (0)

Semantic Breadcrumb Links
=========================

[](#semantic-breadcrumb-links)

[![CI](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/actions/workflows/ci.yml/badge.svg)](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/actions/workflows/ci.yml)[![Latest Stable Version](https://camo.githubusercontent.com/2694f34241eb298d12ef6fd376c8acc73b4dba4a5ba5d6cc6290680a377a223c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6564696177696b692f73656d616e7469632d62726561646372756d622d6c696e6b732e737667)](https://camo.githubusercontent.com/2694f34241eb298d12ef6fd376c8acc73b4dba4a5ba5d6cc6290680a377a223c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6564696177696b692f73656d616e7469632d62726561646372756d622d6c696e6b732e737667)[![Total Download Count](https://camo.githubusercontent.com/6564a1c90f22d7fcc16628d82586220ee86a7ed293e9a3db27f187f0b1697d08/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6564696177696b692f73656d616e7469632d62726561646372756d622d6c696e6b732e737667)](https://camo.githubusercontent.com/6564a1c90f22d7fcc16628d82586220ee86a7ed293e9a3db27f187f0b1697d08/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6564696177696b692f73656d616e7469632d62726561646372756d622d6c696e6b732e737667)[![codecov](https://camo.githubusercontent.com/c37a88b202d6bc8100aed61516825506e83910940277368c5b515068f6ca7ff4/68747470733a2f2f636f6465636f762e696f2f67682f53656d616e7469634d6564696157696b692f53656d616e74696342726561646372756d624c696e6b732f67726170682f62616467652e7376673f746f6b656e3d796c3147564c7752776f)](https://codecov.io/gh/SemanticMediaWiki/SemanticBreadcrumbLinks)

Semantic Breadcrumb Links (a.k.a. SBL) is a [Semantic Mediawiki](https://github.com/SemanticMediaWiki/SemanticMediaWiki) extension to aid in-page navigation by building breadcrumb links from an attributive property filter.

SBL uses a pattern match strategy to filter property usage (e.g. `Has parent page`) that ascribe the location of a page relative to its parent and provides navigational help by generating a breadcrumb trail.

This [video](https://vimeo.com/129347298) demonstrates the functionality of the Semantic Breadcrumb Links extension.

Requirements
------------

[](#requirements)

- PHP 7.4 or later
- MediaWiki 1.39 or later
- [Semantic MediaWiki](https://github.com/SemanticMediaWiki/SemanticMediaWiki) 4.2 or later

Installation
------------

[](#installation)

The recommended way to install Semantic Breadcrumb Links is using [Composer](http://getcomposer.org) with [MediaWiki's built-in support for Composer](https://www.mediawiki.org/wiki/Composer).

Note that the required extension Semantic MediaWiki must be installed first according to the installation instructions provided.

### Step 1

[](#step-1)

Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, create one and add the following content to it:

```
{
	"require": {
		"mediawiki/semantic-breadcrumb-links": "~2.0"
	}
}

```

If you already have a "composer.local.json" file add the following line to the end of the "require" section in your file:

```
"mediawiki/semantic-breadcrumb-links": "~2.0"

```

Remember to add a comma to the end of the preceding line in this section.

### Step 2

[](#step-2)

Run the following command in your shell:

```
php composer.phar update --no-dev

```

Note if you have Git installed on your system add the `--prefer-source` flag to the above command.

### Step 3

[](#step-3)

Add the following line to the end of your "LocalSettings.php" file:

```
wfLoadExtension( 'SemanticBreadcrumbLinks' );

```

Usage
-----

[](#usage)

[![image](https://cloud.githubusercontent.com/assets/1245473/16253761/85daa7b2-3839-11e6-833e-6ec2bc15756b.png)](https://cloud.githubusercontent.com/assets/1245473/16253761/85daa7b2-3839-11e6-833e-6ec2bc15756b.png)

This [document](docs/README.md) decribes available settings and features of this extension.

Contribution and support
------------------------

[](#contribution-and-support)

If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guideline.

- [File an issue](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/issues)
- [Submit a pull request](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/pulls)
- Ask a question on [the mailing list](https://www.semantic-mediawiki.org/wiki/Mailing_list)

Tests
-----

[](#tests)

This extension provides unit and integration tests that are run by a [continues integration platform](https://travis-ci.org/SemanticMediaWiki/SemanticBreadcrumbLinks)but can also be executed using `composer phpunit` from the extension base directory.

License
-------

[](#license)

[GNU General Public License, version 2 or later](https://www.gnu.org/copyleft/gpl.html).

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance43

Moderate activity, may be stable

Popularity33

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~210 days

Recently: every ~261 days

Total

10

Last Release

2213d ago

Major Versions

1.5.1 → 2.0.02018-10-06

PHP version history (3 changes)1.0.0PHP &gt;=5.3.0

1.4.0PHP &gt;=5.5

1.5.0PHP &gt;=5.6

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22235?v=4)[Stefan Wasilewski](/maintainers/SMW)[@smw](https://github.com/smw)

![](https://www.gravatar.com/avatar/372f9bc1233d5518b9522cb681210a8de2765a3a9bbde20138f6ad5332a411ca?d=identicon)[mwjames](/maintainers/mwjames)

---

Top Contributors

[![mwjames](https://avatars.githubusercontent.com/u/1245473?v=4)](https://github.com/mwjames "mwjames (90 commits)")[![translatewiki](https://avatars.githubusercontent.com/u/24829418?v=4)](https://github.com/translatewiki "translatewiki (86 commits)")[![kghbln](https://avatars.githubusercontent.com/u/1104078?v=4)](https://github.com/kghbln "kghbln (33 commits)")[![JeroenDeDauw](https://avatars.githubusercontent.com/u/146040?v=4)](https://github.com/JeroenDeDauw "JeroenDeDauw (14 commits)")[![Nikerabbit](https://avatars.githubusercontent.com/u/1109395?v=4)](https://github.com/Nikerabbit "Nikerabbit (9 commits)")[![YOUR1](https://avatars.githubusercontent.com/u/3681016?v=4)](https://github.com/YOUR1 "YOUR1 (6 commits)")[![paladox](https://avatars.githubusercontent.com/u/5727000?v=4)](https://github.com/paladox "paladox (4 commits)")[![siebrand](https://avatars.githubusercontent.com/u/210297?v=4)](https://github.com/siebrand "siebrand (3 commits)")[![jaideraf](https://avatars.githubusercontent.com/u/3636594?v=4)](https://github.com/jaideraf "jaideraf (2 commits)")[![nakohdo](https://avatars.githubusercontent.com/u/851953?v=4)](https://github.com/nakohdo "nakohdo (1 commits)")[![krabina](https://avatars.githubusercontent.com/u/4318745?v=4)](https://github.com/krabina "krabina (1 commits)")[![UnknownSkyrimPasserby](https://avatars.githubusercontent.com/u/30008925?v=4)](https://github.com/UnknownSkyrimPasserby "UnknownSkyrimPasserby (1 commits)")[![kizule](https://avatars.githubusercontent.com/u/28963303?v=4)](https://github.com/kizule "kizule (1 commits)")

---

Tags

breadcrumbsmediawikimwsblsemanticsemantic-mediawikisemantic-mediawiki-extensionsmwmediawikiwikibreadcrumbSMWSemantic MediaWiki

### Embed Badge

![Health badge](/badges/mediawiki-semantic-breadcrumb-links/health.svg)

```
[![Health](https://phpackages.com/badges/mediawiki-semantic-breadcrumb-links/health.svg)](https://phpackages.com/packages/mediawiki-semantic-breadcrumb-links)
```

###  Alternatives

[mediawiki/semantic-media-wiki

An extension to MediaWiki that lets you store and query structured data within wiki pages

586361.8k33](/packages/mediawiki-semantic-media-wiki)[mediawiki/semantic-result-formats

Provides additional result formats for queries using Semantic MediaWiki

51180.7k1](/packages/mediawiki-semantic-result-formats)[mediawiki/semantic-cite

A Semantic MediaWiki extension to manage citation resources.

2310.2k1](/packages/mediawiki-semantic-cite)[mediawiki/semantic-extra-special-properties

Provides extra special properties for Semantic MediaWiki

3074.6k1](/packages/mediawiki-semantic-extra-special-properties)[mediawiki/semantic-scribunto

A Semantic Mediawiki extension to natively support the Scribunto extension

2967.5k](/packages/mediawiki-semantic-scribunto)[mediawiki/semantic-glossary

A terminology markup extension with a Semantic MediaWiki back-end

1352.4k](/packages/mediawiki-semantic-glossary)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
