Version
Version

Action

Register an action

The Action class is a wrapper of the WordPress action/hook API. To register an action, simply use the add() method like so:

Action::add('init', 'ClassName@initiation');

The method allows you to register your action function/method using the same syntax as a route's controller. Specify your full class name followed by the @ symbol and the method.

The code above is calling the initiation method of the ClassName class:

class ClassName
{
    public function initiation()
    {
        // Call by the init action.
        // Code..
    }
}

Note that you must provide the full class name with its namespace, as for now, the Hook API do not handle a default namespace property.

You can also omit the method name. By default, the API is looking for a class method with the same name as the action. So if your action is init, the class will look after the init method:

Action::add('init', 'ClassName');

// ClassName
class ClassName
{
    public function init()
    {
        // Code...
    }
}

Note: make sure to always set your method as public otherwise WordPress can't use it.

Priority and accepted arguments

You can specify the priority and the number of arguments your action method/function will receive using the third and fourth parameters respectively. By default, the priority is set to 10 and the number of arguments to 3.

Here is an example on how to set a priority and a number of accepted arguments:

Action::add('init', 'AwesomeClass', 5, 2);

Function, closure and class

The Action::add() method also works like the default WordPress function add_action().

You can pass it a function name or a closure like so:

// Using a function
function callback()
{
    // Code...
}

Action::add('init', 'callback');

// Using a closure
Action::add('init', function()
{
    // Code...
});

The add() method also supports this default syntax in order to use a class:

// Use it inside a class
Action::add('init', [$this, 'init']);

// With an instance.
$class = new ClassName();
Action::add('init', [$class, 'init']);

Run an action

In order to trigger an action, use the run() method. The run() method is equivalent to WordPress core function do_action and do_action_ref_array(). Here is an example:

use Themosis\Facades\Action;

Action::run('custom', $args);

The first argument is the name of your action hook. The second parameter is optional and let you pass data that can be accessed into registered callback.

Check action existence

You can verify the existence of an action by using the exists() method. Current implementation check the existence of any actions registered through the Action class.

use Themosis\Facades\Action;

if (Action::exists('custom')) {
    // Run some code...
}

Remove an action

In order to remove an action, use the remove() method like so:

// Using default priority.
$action = Action::add('init', 'SomeClass@method');
$action->remove('init');

// Using custom priority - The priority must be defined as well on remove if different than 10.
$action = Action::add('init', 'SomeClass@method', 5);
$action->remove('init', 5);

Retrieve action callback

The action class also provides a public method to help you retrieve the associated callback for your registered action. Use the getCallback() method:

$action = Action::add('init', 'SomeClass@method');
$cb = $action->getCallback('init');

Newsletter

Subscribe to our mailing list and stay notified regarding future framework releases and its related services.

Made in Belgium