PHPackages                             gibbs/phile-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. gibbs/phile-breadcrumbs

AbandonedArchivedPhile-plugin[Utility &amp; Helpers](/categories/utility)

gibbs/phile-breadcrumbs
=======================

Display breadcrumbs in PhileCMS

1.1(11y ago)3291MITPHP

Since May 26Pushed 11y ago2 watchersCompare

[ Source](https://github.com/Gibbs/phileBreadcrumbs)[ Packagist](https://packagist.org/packages/gibbs/phile-breadcrumbs)[ Docs](http://dangibbs.co.uk/)[ RSS](/packages/gibbs-phile-breadcrumbs/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

PhileBreadcrumbs
================

[](#philebreadcrumbs)

A [PhileCMS](https://github.com/PhileCMS/Phile) plugin that generates breadcrumbs. The plugin returns an array and adds no markup allowing you to use it how you want.

1. Installation
---------------

[](#1-installation)

**Install via composer**

```
php composer.phar require gibbs/phile-breadcrumbs:1.*
```

**Install via git**

Clone this repository from the `phile` directory into `plugins/gibbs/phileBreadcrumbs`. E.g:

```
git clone git@github.com:Gibbs/phileBreadcrumbs.git plugins/gibbs/phileBreadcrumbs
```

**Manual Install**

Download and extract the contents into: `plugins/gibbs/phileBreadcrumbs`

2. Plugin Activation
--------------------

[](#2-plugin-activation)

Activate the plugin in your `config.php` file:

```
$config['plugins']['gibbs\\phileBreadcrumbs'] = array('active' => true);
```

3. Examples
-----------

[](#3-examples)

When the plugin is enabled a `breadcrumbs` variable becomes available to your themes. The `breadcrumbs` variable contains the following:

1. `active` (true or false). The last item/crumb is true.
2. `meta`. The crumbs parsed meta data. You can use any meta data.
3. `uri`. The crumbs relative URL.
4. `url`. The crumbs absolute URL.

**Minimal Example**

```
{% for crumb in breadcrumbs %}
	{{ crumb.meta.title }}
{% endfor %}
```

**Bootstrap 3 Example**

```

	{% for crumb in breadcrumbs %}
		{% if crumb.active %}
			{{ crumb.meta.title }}
		{% else %}
			{{ crumb.meta.title }}
		{% endif %}
	{% endfor %}

```

**Foundation 5 Example**

```

	{% for crumb in breadcrumbs %}
		{% if crumb.active %}
			{{ crumb.meta.title }}
		{% else %}
			{{ crumb.meta.title }}
		{% endif %}
	{% endfor %}

```

**Semantic UI Example**

```

	{% for crumb in breadcrumbs %}
		{% if crumb.active %}
			{{ crumb.meta.title }}
		{% else %}
			{{ crumb.meta.title }}
			 /
		{% endif %}
	{% endfor %}

```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 87.5% 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 ~51 days

Total

3

Last Release

4266d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/911b7305e88455fc4fa1958a4d97d3f5a3f6b94a451e98b60f22a1d07f61c8a2?d=identicon)[gibbs](/maintainers/gibbs)

---

Top Contributors

[![gibbs](https://avatars.githubusercontent.com/u/1873895?v=4)](https://github.com/gibbs "gibbs (7 commits)")[![khanduras](https://avatars.githubusercontent.com/u/7051521?v=4)](https://github.com/khanduras "khanduras (1 commits)")

---

Tags

cmsbreadcrumbsphilecrumbsphilecms

### Embed Badge

![Health badge](/badges/gibbs-phile-breadcrumbs/health.svg)

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

PHPackages © 2026

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