dsijak / hook
Basically, does what WP hooks do. Without any unnecessary overcomplicated features.
v0.5.0
2022-03-14 04:27 UTC
Requires
- php: >=7.0
README
Basically, does what WP hooks do. Without any unnecessary overcomplicated features. You assign functions to specific key string and later when you call that key all functions are executed in order you set with priority argument.
Install
composer require dsijak/hook
Usage
Add functions to keyword 'alpha':
dsijak\hook('alpha', function(){ print "hello alpha text 1!";}, 1);
dsijak\hook('alpha', function(){ print "hello alpha text 2!";}, 2);
Call keyword 'alpha':
dsijak\hook('alpha');
Get number of 'hooks':
dsijak\hook();
Licence
MIT