Difference between revisions of "Template:Hook:AfterRegistrarFunction"
From WHMCS Documentation
m (Protected "Template:Hook:AfterRegistrarFunction": Page Template ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
m |
||
Line 39: | Line 39: | ||
<source lang="php"> | <source lang="php"> | ||
− | add_hook('{{{hookName | + | add_hook('{{{hookName}}}', 1, function($vars) { |
if($vars['functionExists'] && !$vars['functionSuccessful']) { | if($vars['functionExists'] && !$vars['functionSuccessful']) { | ||
//do something on function existing and failure | //do something on function existing and failure |
Revision as of 09:18, 2 July 2015
Description
This page has moved to https://developers.whmcs.com/hooks/
Hook Type
Standard (What does this mean?)
Input Parameters
Variable | Type | Notes |
---|---|---|
params | Array | An array of parameters passed to the registrar function |
results | Array | An array of results returned from the registrar function call |
functionExists | Boolean | Does the function exist? |
functionSuccessful | Boolean | Was the function call successful? |
Return Type
None
Example
add_hook('{{{hookName}}}', 1, function($vars) {
if($vars['functionExists'] && !$vars['functionSuccessful']) {
//do something on function existing and failure
$domain = $vars['params']['sld'] . '.' . $vars['params']['tld'];
}
});