This module provides the hint functionality and utility for the Blitz and Blitz Recommendations plugins for Craft CMS.
First require the package in your plugin/module's composer.json
file.
{
"require": {
"putyourlightson/craft-blitz-hints": "^1.0"
}
}
Then bootstrap the module from within your plugin/module's init
method.
use craft\base\Plugin;
use putyourlightson\blitzhints\BlitzHints;
class MyPlugin extends Plugin
{
public function init()
{
parent::init();
BlitzHints::bootstrap();
}
}
This module is licensed for free under the MIT License.
This module requires Craft CMS 4.0.0 or later.
Install this package via composer.
composer require putyourlightson/craft-blitz-hints
Created by PutYourLightsOn.