Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: System\Traits\AssetMaker.php
Provides an opportunity to inspect or modify an asset.
The parameters provided are:
string $type
: The type of the asset being added
string $path
: The path to the asset being added
array $attributes
: The array of attributes for the asset being added.
All the parameters are provided by reference for modification. This event is also a halting event, so returning false will prevent the current asset from being added. Note that duplicates are filtered out before the event is fired.
Example usage:
Event::listen('system.assets.beforeAddAsset', function (string &$type, string &$path, array &$attributes) {
if (in_array($path, $blockedAssets)) {
return false;
}
});
Or
$this->bindEvent('assets.beforeAddAsset', function (string &$type, string &$path, array &$attributes) {
$attributes['special_cdn_flag'] = false;
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency