hook_eval
hook_eval (hookname[, arg1[, arg2 …]])
This function calls the ACL hook function specified by hookname. The remaining arguments, if any, are passed to the hook function.
The function returns the value returned by the called hook function. If more than one function is registered for the hook, hook_eval returns the return value of the last function called.
Example:
newpath = hook_eval("graphicpathhook", graphicfile, oid)
Related Topics