Function remove_integration_function
Remove an integration hook function. Removes the given function from the given hook. Does nothing if the function is not available.
Package: SMF
Copyright: 2020 Simple Machines and individual contributors
License: BSD
Author: Simple Machines https://www.simplemachines.org
See:
Located at Sources/Subs.php
Copyright: 2020 Simple Machines and individual contributors
License: BSD
Author: Simple Machines https://www.simplemachines.org
See:
add_integration_function()
Located at Sources/Subs.php
string |
$hook |
The complete hook name. |
string |
$function |
The function name. Can be a call to a method via Class::method. |
boolean |
$permanent = true |
Irrelevant for the function itself but need to declare it to match |
string |
$file = '' |
The filename. Must include one of the following wildcards: $boarddir, $sourcedir, $themedir, example: $sourcedir/Test.php |
boolean |
$object = false |
Indicates if your class will be instantiated when its respective hook is called. If true, your function must be a method. |