BRICKOO::CallOnEnd (since version 2.0)
Syntax
boolean CallOnEnd ( mixed $object , string $methodName [, array $arguments = null ] )
Parameters
object
The object or class to execute the method on.
methodName
The method to call on the given object or class.
arguments
The arguments to add to method on execution.
Description
Return
boolean Returns true on success, false on fail.
See also
Examples
<?php
BRICKOO::CallOnEnd('CacheService', 'Save' , array('cacheKey', 'cacheContent'));
?>
BRICKOO::CallOnEnd('CacheService', 'Save' , array('cacheKey', 'cacheContent'));
?>
<?php
BRICKOO::CallOnEnd($object, 'execute', array('now'));
?>
BRICKOO::CallOnEnd($object, 'execute', array('now'));
?>
Last change 10/15/2009