How to get name of called hook on Whmcs?

635 Views Asked by At

I am new in Whmcs. As I know when one Hook called ,whmcs will seek for any add_call in the modules for this hook. I want to find out which hook at the time is called. I want to know which hook is called in the process, without edit any files of hooks. example : when customer adds fund hook x will called and system look for any add_call for it.but i want the module to get any hook that occurs.(like event listener)

1

There are 1 best solutions below

2
On BEST ANSWER

It seems like you need a global hook, which according to my knowledge is not available.

If you're debugging, there is a setting in the General Settings: Hooks Debug Mode, it will list all executed hooks in the Activity Log.

Other option would be adding a function, and redirect all hooks to it, e.g.:

function customCatchAllHooks($vars) {
    $trace = debug_backtrace();
    //Get calling function
    if (isset($trace[1])) {
        $info = $trace[1]['args'];
        $hook = $info[0];
        $params = $info[1];

        error_log(print_r([$hook, $params], true), 3, __DIR__.'/hooks.log');

    }

}

//List of hooks, added just two as an example:
add_hook('ClientAreaPageProfile', 1, 'customCatchAllHooks');
add_hook('ClientEdit', 1, 'customCatchAllHooks');
//and so on...