Hooks - v1.1.0
Hooks Changelog
[1.1.0] - October 17, 2025
Added
- Action removal APIs:
Action::remove(string $hook, callable $callback, int $priority = 10): boolAction::removeAll(string $hook, int|false $priority = false): bool
- Filter removal APIs:
Filter::remove(string $hook, callable $callback, int $priority = 10): boolFilter::removeAll(string $hook, int|false $priority = false): bool
- Helper functions:
removeAction(),removeAllActions(),removeFilter(),removeAllFilters()
- Facade methods documented:
Action::remove(),Action::removeAll(),Filter::remove(),Filter::removeAll() - Unit tests for removal behaviors
- Documentation updates with examples and API references
[1.0.0] - October 16, 2025
Added
- Initial release of ArtisanPack UI Hooks package
- WordPress-style actions and filters system for Laravel applications
- Action hooks management with priority-based execution
Actionclass for registering and executing action hooks- Support for callback priorities (lower numbers execute first)
- Filter system for value transformation through callback chains
Filterclass for registering and applying filters- Chained value processing with multiple callbacks
- Helper functions for easy integration:
addAction(string $hook, callable $callback, int $priority = 10)- Register action callbacksdoAction(string $hook, mixed ...$args)- Execute action callbacksaddFilter(string $hook, callable $callback, int $priority = 10)- Register filter callbacksapplyFilters(string $hook, mixed $value, mixed ...$args)- Apply filter callbacks
- Laravel Facades for static access:
Actionfacade for action managementFilterfacade for filter management
- Blade directives for template integration:
@action('hook_name', $args...)- Execute actions in Blade views@filter('hook_name', $value, $args...)- Apply filters and echo results in Blade views
- Service providers with automatic Laravel package discovery:
HooksServiceProvider- Registers Action and Filter singletonsBladeDirectiveServiceProvider- Registers custom Blade directives
- Automatic facade alias registration for
ActionandFilter - PSR-4 autoloading with namespace
ArtisanPackUI\Hooks\ - Comprehensive test suite using Pest testing framework
- Full documentation with examples and usage guidelines
Requirements
- PHP 8.2 or higher
- Laravel 5.3+ (tested with Laravel 10.x and 11.x)
- Illuminate/Support package
Features
- Priority-based callback execution (lower numbers run first)
- Modular architecture supporting plugin-style extensions
- Clean separation of concerns for maintainable code
- Framework-native Laravel integration
- MIT license for open source usage