PHPackages                             micschk/silverstripe-namedlinkfield - 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. micschk/silverstripe-namedlinkfield

Abandoned → [restruct/silverstripe-namedlinkfield](/?search=restruct%2Fsilverstripe-namedlinkfield)Silverstripe-vendormodule[Utility &amp; Helpers](/categories/utility)

micschk/silverstripe-namedlinkfield
===================================

A SilverStripe composite field for having various link types \*with title\*, in a single field with a nicely styled form.

3.0.1(8mo ago)96162[6 PRs](https://github.com/restruct/silverstripe-namedlinkfield/pulls)BSD-3-ClauseJavaScriptPHP &gt;=8.3CI passing

Since Apr 7Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/restruct/silverstripe-namedlinkfield)[ Packagist](https://packagist.org/packages/micschk/silverstripe-namedlinkfield)[ RSS](/packages/micschk-silverstripe-namedlinkfield/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (3)Versions (28)Used By (0)

A link field (with title) for SilverStripe
==========================================

[](#a-link-field-with-title-for-silverstripe)

A single inline link field which allows users to set a title/name for the link, and select

- a page + optional text-anchor from the site tree
- a file from the assets dir
- an e-mail address (mailto link)
- define a custom URL to link to
- or enter a shortcode

[![namedlinkfield](https://private-user-images.githubusercontent.com/1005986/493282436-4ee67dd7-9e0d-40d9-b2b0-bfb508275db2.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODIzMzIxNzMsIm5iZiI6MTc4MjMzMTg3MywicGF0aCI6Ii8xMDA1OTg2LzQ5MzI4MjQzNi00ZWU2N2RkNy05ZTBkLTQwZDktYjJiMC1iZmI1MDgyNzVkYjIucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI2MDYyNCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNjA2MjRUMjAxMTEzWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9M2EzZGE5YTJjMWJhNGQ2ZGVhZDhkMWZjOTdhMzFhY2Y3ZGQwZWVjYmE5OTk4NjYyZWYwOTgxYTQ0NGFiNmY2ZiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QmcmVzcG9uc2UtY29udGVudC10eXBlPWltYWdlJTJGcG5nIn0.O3ovuIZIF-o1SfVdottzJMYvPkSoLJARdMSIFHvEQeU)](https://private-user-images.githubusercontent.com/1005986/493282436-4ee67dd7-9e0d-40d9-b2b0-bfb508275db2.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODIzMzIxNzMsIm5iZiI6MTc4MjMzMTg3MywicGF0aCI6Ii8xMDA1OTg2LzQ5MzI4MjQzNi00ZWU2N2RkNy05ZTBkLTQwZDktYjJiMC1iZmI1MDgyNzVkYjIucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI2MDYyNCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNjA2MjRUMjAxMTEzWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9M2EzZGE5YTJjMWJhNGQ2ZGVhZDhkMWZjOTdhMzFhY2Y3ZGQwZWVjYmE5OTk4NjYyZWYwOTgxYTQ0NGFiNmY2ZiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QmcmVzcG9uc2UtY29udGVudC10eXBlPWltYWdlJTJGcG5nIn0.O3ovuIZIF-o1SfVdottzJMYvPkSoLJARdMSIFHvEQeU)Usage
-----

[](#usage)

```
use Restruct\SilverStripe\ORM\FieldType\NamedLinkField;
use Restruct\SilverStripe\Forms\NamedLinkFormField;

...

private static $db = array(
    'NextAction' => NamedLinkField::class,
);

...

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

    $fields->insertBefore(
        "Content",
        NamedLinkFormField::create('ActionButton')
    );

    return $fields;
}
```

TODO
----

[](#todo)

- Check source-class-HtmlEditorField\_Toolbar.html#\_LinkForm for inline uploading of files etc
- Make translatable/i18n

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance74

Regular maintenance activity

Popularity20

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity88

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 66.1% 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 ~193 days

Recently: every ~9 days

Total

19

Last Release

257d ago

Major Versions

1.3.3 → 2.02018-04-27

2.1.3 → 3.0.02025-10-06

PHP version history (2 changes)2.1.2PHP &gt;=7.4

3.0.0PHP &gt;=8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/4d3680d6353e5f171543435b89965ba2588186ad7ec0ec97cbf572704fec2a4f?d=identicon)[micschk](/maintainers/micschk)

---

Top Contributors

[![micschk](https://avatars.githubusercontent.com/u/1005986?v=4)](https://github.com/micschk "micschk (41 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (16 commits)")[![hubertusanton](https://avatars.githubusercontent.com/u/582188?v=4)](https://github.com/hubertusanton "hubertusanton (2 commits)")[![patjnr](https://avatars.githubusercontent.com/u/435055?v=4)](https://github.com/patjnr "patjnr (2 commits)")[![CreativeSynergy](https://avatars.githubusercontent.com/u/193625707?v=4)](https://github.com/CreativeSynergy "CreativeSynergy (1 commits)")

### Embed Badge

![Health badge](/badges/micschk-silverstripe-namedlinkfield/health.svg)

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

###  Alternatives

[lekoala/silverstripe-cms-actions

Add actions to your models in SilverStripe

39344.8k29](/packages/lekoala-silverstripe-cms-actions)[symbiote/silverstripe-advancedworkflow

Adds configurable workflow support to the CMS, with a GUI for creating custom workflow definitions.

46302.4k9](/packages/symbiote-silverstripe-advancedworkflow)[lekoala/silverstripe-softdelete

Soft delete extension for SilverStripe

11236.3k](/packages/lekoala-silverstripe-softdelete)

PHPackages © 2026

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