1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 09:04:38 +02:00

Support for new admin event trigger, using e_admin_events.php file in plugins

This commit is contained in:
mcfly
2008-12-03 00:43:00 +00:00
parent 35d36f61c5
commit cf3b108577
4 changed files with 75 additions and 25 deletions

View File

@@ -0,0 +1,10 @@
<?php
function plugin_forum_admin_events($type, $parms)
{
echo "type = $type <br />";
var_dump($parms);
}
?>