PHP code example of magdicom / hooks

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>");

$hooks->register("Callback", function($vars) {
    return "Closure";
});

function simple_function_name($vars){
    //
}

$hooks->register("Callback", "simple_function_name");

class FooBar {
    public function methodName($vars){
        //
    }
}

$object = new FooBar;

$hooks->register("Callback", [$object, 'methodName']);

$hooks->register("Callback", [(new FooBar), 'methodName']);

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

$hooks = new Hooks(?array $parameters);

$hooks->register(string $hookName, array|callable $callback, ?int $priority): self

$hooks->all(string $hookName, array|object|null $parameters): self

$hooks->first(string $hookName, array|object|null $parameters): self

$hooks->last(string $hookName, array|object|null $parameters): self

$hooks->toArray(): array

$hooks->toString(?string $separator): string

$hooks->setParameter(string $name, mixed $value): self

$hooks->setParameters(array $parameters): self

$hooks->setSourceFile(?string $path): self

$hooks->debug(callable|null $callback): self

$hooks->debug(function($message){
    // Will print debug message(s)
    echo $message . PHP_EOL;
});

$hooks->setSourceFile("/path/to/file/filename.php");

$hooks->register("Greetings", "FooBar::log");

$hooks->all("Greetings");