Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:<?php
// Executes all functions associated with the specified delegate
function CallDelegate($DelegateName) {
if (array_key_exists($DelegateName, $this->Delegates)) {
$FunctionCount = count($this->Delegates[$DelegateName]);
for ($i = 0; $i < $FunctionCount; $i++) {
call_user_func_array($this->Delegates[$DelegateName][$i], array(&$this));
}
}
}
?>1 to 5 of 5