October CMS resources and help articles

Simple and to the point. Optimized by the community.

Defining quick actions in the backend main navigation

2
by gromitsoft, last modified on April 7th, 2021

To define quick actions in the main navigation, you need to add this method to the Plugin.php file:

public function registerQuickActions()
{
    return [
        'help' => [
            'label' => 'Read the documentation',
            'icon' => 'icon-question-circle',
            'url' => Backend::url('read-the-docs'),
        ],
        'mail' => [
            'label' => 'Send email to developers',
                        // SVG-icon example
            'iconSvg' => '/plugins/sandbox/quickactions/assets/svg/mail.svg',
            'url' => Backend::url('mail-to-devs'),
        ],           
    ];
}

Works with the latest version of OctoberCms installed via composer.

Discussion

0 comments

We use cookies to measure the performance of this website. Do you want to accept these cookies?