1. Go to this page and download the library: Download magdicom/hooks library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
magdicom / hooks example snippets
use Magdicom\Hooks;
$hooks = new Hooks();
# Register our functions
$hooks->register("Greetings", function($vars){
return "Hi There,";
}, 1);
$hooks->register("Greetings", function($vars){
return "This is the second line of greetings!";
}, 2);
# Later we run it
echo $hooks->all("Greetings")->toString("<br>");
class FooBar {
public static function staticMethodName($vars){
//
}
}
$hooks->register("Callback", ['FooBar', 'staticMethodName']);
class FooBarBaz {
public $id;
public function __construct(int $id){
$this->id = $id;
}
}
$hooks = new Hooks();
$hooks->setParameters([
"name" => "Bar",
]);
$hooks->register("ParameterAsObject", function ($fooBarBaz, $params) {
return [$fooBarBaz->id, $params['name']];
});
echo $hooks->all("ParameterAsObject", (new FooBarBaz(100))->toString("\n");
// Output will be
100
Bar