TwistPHP Documentation

get

File path: dist/twist/Core/Models/Hooks.model.php
Namespace: Twist\Core\Models
Extends:

getGet the array of extensions for the requested hook and key

Parameters

Name Type Description
$strHookstringn/a
$mxdUniqueKeymixedn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strHook 'foo';
$mxdUniqueKey 'foo-123';

//Call the function get with the example vars
$resHooks = new \Twist\Core\Models\Hooks();
$resHooks -> get($strHook$mxdUniqueKey);