PHPackages                             fromholdio/silverstripe-systemlinks - 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. fromholdio/silverstripe-systemlinks

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

fromholdio/silverstripe-systemlinks
===================================

A SilverStripe module that allows developers to define a static list of "system links" - login, logout, lostpassword, etc - and expose these for use in both back-end and templates.

2.0.0(8mo ago)01.3k1BSD-3-ClausePHP

Since Feb 18Pushed 8mo ago1 watchersCompare

[ Source](https://github.com/fromholdio/silverstripe-systemlinks)[ Packagist](https://packagist.org/packages/fromholdio/silverstripe-systemlinks)[ Docs](https://github.com/fromholdio/silverstripe-systemlinks)[ RSS](/packages/fromholdio-silverstripe-systemlinks/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (4)Dependencies (1)Versions (10)Used By (1)

silverstripe-systemlinks
========================

[](#silverstripe-systemlinks)

A SilverStripe module that allows developers to define a static list of "system links" - login, logout, lostpassword, etc - and expose these for use in both back-end and templates.

Integrate this with functionality that already allows users to build links, like Linkable/etc, to also let users build links to these outside-of-site-tree targets.

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

[](#requirements)

SilverStripe 4 or 5

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

[](#installation)

`composer require fromholdio/silverstripe-systemlinks`

No links are setup by default - to complete the install, you need to setup your links config:

```
Fromholdio\SystemLinks\SystemLinks:
  links:
    login:
      url: /Security/login
      title: Login
    logout:
      url: /Security/logout
      title: Logout
    lostpassword:
      url: /Security/lostpassword
      title: Lost Password
    cmsadmin:
      url: /admin
      title: 'CMS Admin'
    someotherroute:
      url: /could-also-be-absolute-url
      title: 'Some other route'
```

Usage example
-------------

[](#usage-example)

Documentation will be forthcoming, but also, it's just one class and pretty lean. Check the class itself to see all options at the moment.

Key uses are below:

### Use to fuel values in a dropdown

[](#use-to-fuel-values-in-a-dropdown)

```
DropdownField::create(
    'SystemLinkKey',
    'System Link',
    SystemLinks::get_map()
);
```

### Get link value from saved key

[](#get-link-value-from-saved-key)

```
$key = $this->SystemLinkKey;

// This returns an ArrayData object
$link = SystemLinks::get_link($key);
$linkTitle = $link->Title;
$linkURL = $link->URL;

// Alternatively, get link as simple array
$linkArr = SystemLinks::get_raw_link($key);
$linkTitle = $linkArr['title'];
$linkURL = $linkArr['url'];
```

### Get link for use in template .ss file

[](#get-link-for-use-in-template-ss-file)

```
// $SystemLink is available in templates globally
// It requires a link key to be supplied
$SystemLink('login').URL
$SystemLink('lostpassword').Title
```

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance62

Regular maintenance activity

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~300 days

Recently: every ~188 days

Total

9

Last Release

242d ago

Major Versions

1.x-dev → 2.0.02025-09-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/40e135ad117686bee39707c1d9286cc5e915e219c26a10d13858ca44d14f1eb0?d=identicon)[dizzystuff](/maintainers/dizzystuff)

---

Top Contributors

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

---

Tags

silverstripecmsloginlogoutlinks

### Embed Badge

![Health badge](/badges/fromholdio-silverstripe-systemlinks/health.svg)

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

PHPackages © 2026

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