The Quick Tray Links Plugin is for Grav CMS. Easily add customizable admin quick tray links
Installing the Quick Tray Links plugin can be done in one of two ways. The GPM (Grav Package Manager) installation method enables you to quickly and easily install the plugin with a simple terminal command, while the manual method enables you to do so via a zip file.
The simplest way to install this plugin is via the Grav Package Manager (GPM) through your system's terminal (also called the command line). From the root of your Grav install type:
bin/gpm install quick-tray-links
This will install the Quick Tray Links plugin into your /user/plugins
directory within Grav. Its files can be found under /your/site/grav/user/plugins/quick-tray-links
.
Before configuring this plugin, you should copy the user/plugins/quick-tray-links/quick-tray-links.yaml
to user/config/plugins/quick-tray-links.yaml
and only edit that copy.
Here is the default configuration and an explanation of available options:
enabled: true
links:
- icon: fa fa-book
link: https://learn.getgrav.org
tooltip: Grav Documentation and Tutorials
external: true
- icon: fa fa-info
link: /admin/config/info
tooltip: PHP Information
external: true
Possible fields for each link include:
icon
- icon classes to render iconlink
- Can be a relative URL or an absolute URLtooltip
- The tooltip to display on hoverexternal
- Set to true, to open the link in a new windowclass
- Any CSS classes you wish to add to the icon linkauthorize
- A string that can be use to check authorization
Simply create a configuration with the links you wish to see displayed in the Quick-Tray area