PHPackages                             adigital/help-links - 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. adigital/help-links

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

adigital/help-links
===================

Define useful links to be added to the dashboard for clients.

3.0.1(3mo ago)102.0k↓100%1[1 issues](https://github.com/a-digital/help-links/issues)MITPHP

Since Oct 5Pushed 3mo ago3 watchersCompare

[ Source](https://github.com/a-digital/help-links)[ Packagist](https://packagist.org/packages/adigital/help-links)[ RSS](/packages/adigital-help-links/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (16)Used By (0)

Help Links plugin for Craft CMS 5.x
===================================

[](#help-links-plugin-for-craft-cms-5x)

Define useful links to be added to the dashboard for clients.

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

[](#requirements)

This plugin requires Craft CMS 5.0.0 or later.

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

[](#installation)

To install the plugin, follow these instructions.

1. Open your terminal and go to your Craft project:

    ```
     cd /path/to/project

    ```
2. Then tell Composer to load the plugin:

    ```
     composer require adigital/help-links

    ```
3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Help Links.

Help Links Overview
-------------------

[](#help-links-overview)

This widget can be used to display useful links on the dashboard for clients. You can create as many headings as you need in the plugin settings to separate out the content clearly. Each link can have a title, url, and additional comment. This plugin was inspired by the talk [Katie Fritz](https://x.com/KatieMaeFritz) gave at dot all 2018 in Berlin about [Prioritising Author Experience](https://craftcms.com/events/dot-all-2018/sessions/prioritizing-author-experience).

Configuring Help Links
----------------------

[](#configuring-help-links)

Create your section headings in the plugin settings page. Then click Help Links in the sidebar and configure the links for each of these headings you have created.

Pre Populating Help Links
-------------------------

[](#pre-populating-help-links)

If like us, you are going to be using this for multiple clients but most of the links will remain the same, then you can pre-populate your settings and links for this plugin. There are 2 ways of doing this.

### Import / Export using the plugin

[](#import--export-using-the-plugin)

We've created an Import / Export page within the plugin which you can use. Once you have manually populated the links on one site, you can export these to a JSON formatted file. This file can be imported into a clean install, and it will then generate all of your links for you. From here you can then edit them as needed to make them site specific. This is our recommended method for pre-populating your links.

### Use a migration

[](#use-a-migration)

You can also create a content migration and run it within the CMS once the plugin is installed. You can then edit the settings in the usual way as needed.

A code example can be found below for setting up a migration to run with this plugin, just make sure you add `use adigital\helplinks\HelpLinks;` to the top of the file.

```
$settings = [
	"widgetTitle" => "Help Links",
	"sections" => [
		["Documentation"],
		["Support"]
	]
];
HelpLinks::$plugin->helpLinksService->updateSettings($settings['widgetTitle'], $settings['sections']);

$request = [];
$request["heading"] = "Documentation";
$request["position"] = "1";
$request["links"][] = [
	"Test",
	"https://www.test.com",
	"This is a test"
];
$request["links"][] = [
	"Another",
	"https://www.google.co.uk",
	"(Google)"
];
HelpLinks::$plugin->helpLinksService->generateSection($request);

$request = [];
$request["heading"] = "Support";
$request["position"] = "2";
$request["links"][] = [
	"Zendesk",
	"https://adigital.zendesk.com/agent/filters",
	"(tickets)"
];
HelpLinks::$plugin->helpLinksService->generateSection($request);

```

Using Help Links
----------------

[](#using-help-links)

Once configured, add the widget to your dashboard.

Screenshots
-----------

[](#screenshots)

### Dashboard

[](#dashboard)

[![Dashboard](resources/img/dashboard.png)](resources/img/dashboard.png)

### Settings

[](#settings)

[![Settings](resources/img/settings.png)](resources/img/settings.png)

### Section Links

[](#section-links)

[![Section Links](resources/img/section-links.png)](resources/img/section-links.png)

### Rename Headings

[](#rename-headings)

[![Rename Headings](resources/img/rename.png)](resources/img/rename.png)

### Import / Export

[](#import--export)

[![Import / Export](resources/img/import-export.png)](resources/img/import-export.png)

### Permissions

[](#permissions)

[![Permissions](resources/img/permissions.png)](resources/img/permissions.png)

Brought to you by [A Digital](https://adigital.agency)

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance85

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 82.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 ~223 days

Recently: every ~479 days

Total

13

Last Release

95d ago

Major Versions

1.0.9 → 2.0.02022-08-05

2.0.0 → 3.0.02025-05-14

### Community

Maintainers

![](https://www.gravatar.com/avatar/7765d09c58ee40c0720bbafccfed737a6645463c8fe495695eca08bd70e21729?d=identicon)[a-digital](/maintainers/a-digital)

---

Top Contributors

[![matt-adigital](https://avatars.githubusercontent.com/u/15085874?v=4)](https://github.com/matt-adigital "matt-adigital (47 commits)")[![MarkSyred](https://avatars.githubusercontent.com/u/9024589?v=4)](https://github.com/MarkSyred "MarkSyred (10 commits)")

---

Tags

cmsCraftcraftcmscraft-pluginhelp links

### Embed Badge

![Health badge](/badges/adigital-help-links/health.svg)

```
[![Health](https://phpackages.com/badges/adigital-help-links/health.svg)](https://phpackages.com/packages/adigital-help-links)
```

###  Alternatives

[verbb/navigation

Create navigation menus for your site.

90683.7k17](/packages/verbb-navigation)[verbb/formie

The most user-friendly forms plugin for Craft.

101372.9k40](/packages/verbb-formie)[verbb/comments

Add comments to your site.

13753.1k](/packages/verbb-comments)[verbb/tablemaker

Create customizable and user-defined table fields.

40168.8k1](/packages/verbb-tablemaker)[supercool/tablemaker

Create customizable and user-defined table fields.

40141.7k](/packages/supercool-tablemaker)[pennebaker/craft-architect

CraftCMS plugin to generate content models from JSON/YAML data.

72148.5k5](/packages/pennebaker-craft-architect)

PHPackages © 2026

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