PHPackages                             dnadesign/silverstripe-tagurit - 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. dnadesign/silverstripe-tagurit

ActiveSilverstripe-vendormodule

dnadesign/silverstripe-tagurit
==============================

An alternative taxonomy module, providing protected types, and inverting the Tag/Type relationship to Type/Tag

1.0.0(1y ago)03862[1 issues](https://github.com/dnadesign/silverstripe-tagurit/issues)[2 PRs](https://github.com/dnadesign/silverstripe-tagurit/pulls)MITPHP

Since Mar 30Pushed 3mo ago6 watchersCompare

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

READMEChangelog (1)Dependencies (3)Versions (7)Used By (0)

Tag ur it!
==========

[](#tag-ur-it)

An alternative taxonomy module for SilverStripe

Introduction
------------

[](#introduction)

This module inverts the term/type relationship to type/term and allows setting default/protected types/terms

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

[](#requirements)

- SilverStripe 4.4
- GridFieldExtensions 3.2

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

[](#installation)

Include the following in your composer.json and run composer update:

```
"require": {
    dnadesign/silverstripe-tagurit
}
```

```
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/dnadesign/silverstripe-tagurit.git"
        }
    ],
```

Configure the yml:

```
tagurit_protected_taxonomy:
  Type one:
    - Term
    - Second Term
  Second type:
    - Another Term
```

On your page, use the trait

```
    use TaxonomyTrait;

     private static $many_many = [
        'CustomTerms' => TaxonomyTerm::class
    ];

    public function getCMSFields()
    {
        $fields = parent::getCMSFields();

        $fields->addFieldsToTab(
            'Root.Terms',
            [
                ListboxField::create(
                    'CustomTerms',
                    'Custom Terms',
                    $this->getTermsForType('Second type')
                ),
            ]
        );

        return $fields;
    }
```

Run the build task:

```
vendor/silverstripe/framework/sake dev/build flush=1
```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance62

Regular maintenance activity

Popularity17

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

Total

2

Last Release

517d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/efd88fa106982bcf2e3cd689e6a37d352c54308d14dedeac4ac477a47a432363?d=identicon)[DNADesign](/maintainers/DNADesign)

![](https://www.gravatar.com/avatar/e55a584eaac053bdbe811b1039dd00ac30da0c7978a5efbb6082504c610678d2?d=identicon)[alex-dna](/maintainers/alex-dna)

![](https://avatars.githubusercontent.com/u/984753?v=4)[Naomi Guyer](/maintainers/adrexia)[@adrexia](https://github.com/adrexia)

---

Top Contributors

[![jules0x](https://avatars.githubusercontent.com/u/8979741?v=4)](https://github.com/jules0x "jules0x (6 commits)")[![alex-dna](https://avatars.githubusercontent.com/u/6982515?v=4)](https://github.com/alex-dna "alex-dna (3 commits)")[![Cambis](https://avatars.githubusercontent.com/u/12287346?v=4)](https://github.com/Cambis "Cambis (3 commits)")[![wilr](https://avatars.githubusercontent.com/u/101629?v=4)](https://github.com/wilr "wilr (2 commits)")[![LABCAT](https://avatars.githubusercontent.com/u/9105153?v=4)](https://github.com/LABCAT "LABCAT (1 commits)")[![lukereative](https://avatars.githubusercontent.com/u/1415622?v=4)](https://github.com/lukereative "lukereative (1 commits)")

---

Tags

silverstripetagtaxonomy

### Embed Badge

![Health badge](/badges/dnadesign-silverstripe-tagurit/health.svg)

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

###  Alternatives

[silverstripe/tagfield

Tag field for SilverStripe

571.2M45](/packages/silverstripe-tagfield)[lekoala/silverstripe-mandrill

Adds mandrill in the SilverStripe CMS

1827.3k](/packages/lekoala-silverstripe-mandrill)

PHPackages © 2026

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