hawkca / craft-admin
Admin modifications for CraftCMS.
Installs: 821
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Type:craft-module
pkg:composer/hawkca/craft-admin
Requires
- composer/installers: ~1.0
- craftcms/cms: ^3.3
This package is auto-updated.
Last update: 2025-10-29 02:56:31 UTC
README
Adds HAWK adjustments for CraftCMSN
Requirements
This module requires Craft CMS 3.0.0-RC1 or later.
Installation
To install the module, follow these instructions.
First, you'll need to add the contents of the app.php file to your config/app.php (or just copy it there if it does not exist). This ensures that your module will get loaded for each request. The file might look something like this:
return [
    'modules' => [
        'hawk-module' => [
            'class' => \modules\hawkmodule\HAWKModule::class,
            'components' => [
                'emailSupport' => [
                    'class' => 'modules\hawkmodule\services\EmailSupport',
                ],
            ],
        ],
    ],
    'bootstrap' => ['hawk-module'],
];
You'll also need to make sure that you add the following to your project's composer.json file so that Composer can find your module:
"autoload": {
    "psr-4": {
      "modules\\hawkmodule\\": "modules/hawkmodule/src/"
    }
},
After you have added this, you will need to do:
composer dump-autoload
…from the project’s root directory, to rebuild the Composer autoload map. This will happen automatically any time you do a composer install or composer update as well.
HAWK Overview
-Insert text here-
Using HAWK
-Insert text here-
HAWK Roadmap
Some things to do, and ideas for potential features:
- Release it
Brought to you by HAWK