PHPackages                             innoweb/silverstripe-breadcrumbs - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. innoweb/silverstripe-breadcrumbs

ActiveSilverstripe-vendormodule[Utility &amp; Helpers](/categories/utility)

innoweb/silverstripe-breadcrumbs
================================

Adds configurable and extendable breadcrumbs to the site

3.0.0(7mo ago)09.7k↓50%2BSD-3-ClausePHP

Since Oct 26Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/xini/silverstripe-breadcrumbs)[ Packagist](https://packagist.org/packages/innoweb/silverstripe-breadcrumbs)[ RSS](/packages/innoweb-silverstripe-breadcrumbs/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (13)Used By (0)

SilverStripe Breadcrumbs
========================

[](#silverstripe-breadcrumbs)

[![Version](https://camo.githubusercontent.com/c2eb6f48d95d0e66c1d90fe62760800fdde2de45299f7ac0fa08b2e3434e4e8a/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696e6e6f7765622f73696c7665727374726970652d62726561646372756d62732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/innoweb/silverstripe-breadcrumbs)[![License](https://camo.githubusercontent.com/e7cc10a40345db3778a5148b3f4afedfd5b7de0daeb304b581a0425cc494a347/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f696e6e6f7765622f73696c7665727374726970652d62726561646372756d62732e7376673f7374796c653d666c61742d737175617265)](license.md)

Overview
--------

[](#overview)

Adds configurable and extendable breadcrumbs to the site. Compatible with [Symbiote's Multisites](https://github.com/symbiote/silverstripe-multisites) and [Fromholdio's Configured Multisites fork](https://github.com/fromholdio/silverstripe-configured-multisites).

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

[](#requirements)

SilverStripe CMS 6, see [composer.json](composer.json)

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

[](#installation)

Install the module using composer:

```
composer require innoweb/silverstripe-breadcrumbs dev-master

```

Then run dev/build.

Configuration
-------------

[](#configuration)

You can configure whether the home page and pages hidden from the sitetree should be inculded in the breadcrumbs:

```
Innoweb\Breadcrumbs\Extensions\SiteTreeExtension:
  crumbs_include_home: false # default: true
  crumbs_show_hidden: true # default: false

```

For a page type you can also disable the crumbs, e.g.:

```
Your\Project\LandingPage:
  show_crumbs: false # default: true

```

Usage
-----

[](#usage)

By default, the module uses the site tree to generate breadcrumbs.

In your templates, loop over `$CrumbList` to display the breadcrumbs. You can copy the following code into your template:

```

					&gt;

						$Title

```

A page can use the method `updateCrumbsList()` to add or remove items from the list:

```
public function updateCrumbsList($list) {
	$tag = $this->getActiveTag();
	if ($tag) {
		$crumb = Crumb::create($tag->Title, $tag->Link());
		$list->push($crumb);
	}
	return $list;
}

```

License
-------

[](#license)

BSD 3-Clause License, see [License](license.md)

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance66

Regular maintenance activity

Popularity24

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 84.2% of commits — single point of failure

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 ~229 days

Recently: every ~204 days

Total

12

Last Release

229d ago

Major Versions

1.x-dev → 2.0.02023-03-19

2.x-dev → 3.0.02025-09-22

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d2e71d7787401a7bd4916062346163897f89f455d650ab32b5d60cd14825ad3?d=identicon)[xini](/maintainers/xini)

---

Top Contributors

[![xini](https://avatars.githubusercontent.com/u/1152403?v=4)](https://github.com/xini "xini (16 commits)")[![dizzystuff](https://avatars.githubusercontent.com/u/576903?v=4)](https://github.com/dizzystuff "dizzystuff (3 commits)")

---

Tags

silverstripebreadcrumbs

### Embed Badge

![Health badge](/badges/innoweb-silverstripe-breadcrumbs/health.svg)

```
[![Health](https://phpackages.com/badges/innoweb-silverstripe-breadcrumbs/health.svg)](https://phpackages.com/packages/innoweb-silverstripe-breadcrumbs)
```

PHPackages © 2026

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