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

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

micschk/namedlinkfield
======================

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

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

Since Apr 7Pushed 1mo ago3 watchersCompare

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

READMEChangelogDependencies (3)Versions (26)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.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU1MzU1MzYsIm5iZiI6MTc3NTUzNTIzNiwicGF0aCI6Ii8xMDA1OTg2LzQ5MzI4MjQzNi00ZWU2N2RkNy05ZTBkLTQwZDktYjJiMC1iZmI1MDgyNzVkYjIucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI2MDQwNyUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNjA0MDdUMDQxMzU2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9MzExY2ZhMDc3ZDI0OGE1MDFjOTAwMGI2ZGI0YzkxOGVmNjBhZTA0NzU3ZjhiZDQ4NTIxNzMyODhmYWY4YzE1NiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.hGQdIxN3RXhqlY2djtmbo9aJRxpGHrRbMov3bTNfjsM)](https://private-user-images.githubusercontent.com/1005986/493282436-4ee67dd7-9e0d-40d9-b2b0-bfb508275db2.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU1MzU1MzYsIm5iZiI6MTc3NTUzNTIzNiwicGF0aCI6Ii8xMDA1OTg2LzQ5MzI4MjQzNi00ZWU2N2RkNy05ZTBkLTQwZDktYjJiMC1iZmI1MDgyNzVkYjIucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI2MDQwNyUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNjA0MDdUMDQxMzU2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9MzExY2ZhMDc3ZDI0OGE1MDFjOTAwMGI2ZGI0YzkxOGVmNjBhZTA0NzU3ZjhiZDQ4NTIxNzMyODhmYWY4YzE1NiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.hGQdIxN3RXhqlY2djtmbo9aJRxpGHrRbMov3bTNfjsM)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 97% of packages

Maintenance80

Actively maintained with recent releases

Popularity16

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

207d 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-namedlinkfield/health.svg)

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

###  Alternatives

[kinglozzer/multiselectfield

A sortable multiple select field for managing many-to-many relations

1341.2k2](/packages/kinglozzer-multiselectfield)[wedevelopnl/silverstripe-elemental-grid

Elemental grid module

1014.1k2](/packages/wedevelopnl-silverstripe-elemental-grid)

PHPackages © 2026

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