Source for file EventHandler.php
Documentation is available at EventHandler.php
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
return $this->event->GetName();
$this->callback = $this->PrepareCallback($callback);
public function Raise($sender, $args)
private function PrepareCallback($callback)
if ($pos = strpos($callback, '('))
$callback = substr($callback, 0, $pos);
$callback .= '($sender, $args);';
|