A Craft CMS plugin to display a help guide in the control panel

Maintainers

👁 trendyminds

Package info

github.com/trendyminds/guide

Documentation

Type:craft-plugin

pkg:composer/trendyminds/guide

Statistics

Installs: 7

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1.0 2020-04-20 19:18 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT cdb614b3877a22491b243c1b890a92dfe14fd78e

cmsCraftcraftcmscraft-pluginusermanual

This package is auto-updated.

Last update: 2026-06-08 23:13:39 UTC


README

A Craft CMS module to display a help guide in the control panel

👁 Image

Requirements

Guide is built to run on Craft CMS 3.2 and later

Installation

  1. Download a zip archive, rename the src folder to guide and add it to your modules/ folder.
  2. Add the contents of the app.php file to your config/app.php (or just copy it there if it does not exist)
return [
 'modules' => [
 'guide' => [
 'class' => \modules\guide\Guide::class
 ],
 ],
 'bootstrap' => ['guide'],
];
  1. Add the following to your project's composer.json file so that Composer can find your module:
"autoload": {
 "psr-4": {
 "modules\\guide\\": "modules/guide/"
 }
},
  1. Run the following in your command line
composer dump-autoload

Configuration

You may configure both the name of the plugin as well as which content type to use as your "Guide" entries in src/config/guide.php.

NOTE: The section you use must have public URLs disabled. If these are enabled the Guide will not pull this data in and will display an error.