File path: dist/twist/Core/Models/Hooks.model.php
Namespace: Twist\Core\Models
storeHook
— Permanently store a new hook
Name | Description |
---|---|
$strHook | n/a |
$mxdUniqueKey | n/a |
$mxdData | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strHook = 'foo';
$mxdUniqueKey = 'foo-123';
$mxdData = 'foo-123';
//Call the function storeHook with the example vars
$resHooks = new \Twist\Core\Models\Hooks();
$resHooks -> storeHook($strHook, $mxdUniqueKey, $mxdData);