[dokuwiki] Doku Event and Hooks

Hi all,

I have a small question about events and trigger's action. Why the action's data is not accessible from the event's hook ?

By example with somethings like this in inc/events.php :

function process_event(&$event,$advise='') {

   ...
       if (is_null($obj)) {
//        $method($event, $param);
         $method($event, $param, $this->data);
       } else {
//          $obj->$method($event, $param);
         $obj->$method($event, $param, $this->data);
       }
   ...
 }


I just look for a way to read theses data from the event's hook.

Best Regards,
Danjer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Other related posts: