Skip to content
Snippets Groups Projects
Commit 8a489810 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

removed left over event testing code from main template

darcs-hash:20060428213851-7ad00-2aebcece3effc9315645cf3164c83f2631a7f2a2.gz
parent c059e1a6
No related branches found
No related tags found
No related merge requests found
......@@ -13,26 +13,6 @@
* @link http://wiki.splitbrain.org/wiki:tpl:templates
* @author Andreas Gohr <andi@splitbrain.org>
*/
/* event testing ...*/
function hello($data) { print $data; return strrev($data); };
function hook($param, &$event) {
print('this is a hook ['.$param.']');
switch ($param) {
case 'param1' : $event->preventDefault(); break;
case 'param2' : $event->stopPropagation(); break;
case 'param3' : print('action results['.$event->result.']');
}
}
global $EVENT_HANDLER;
$EVENT_HANDLER->register_hook('TEMPLATE','BEFORE',$tmp=NULL,hook,'param2');
$EVENT_HANDLER->register_hook('TEMPLATE','AFTER',$tmp=NULL,hook,'param3');
trigger_event('TEMPLATE',$tmp2='hello!',hello);
#*/
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment