home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / modules / wiki / action / macro.php < prev    next >
PHP Script  |  2004-03-08  |  332b  |  18 lines

  1. <?php
  2. // $Id: macro.php,v 1.1 2004/01/12 22:14:04 comsubvie Exp $
  3.  
  4. require('parse/macros.php');
  5. require('parse/html.php');
  6.  
  7. // Execute a macro directly from the URL.
  8. function action_macro()
  9. {
  10.   global $ViewMacroEngine, $macro, $parms;
  11.  
  12.   if(!empty($ViewMacroEngine[$macro]))
  13.   {
  14.     print $ViewMacroEngine[$macro]($parms);
  15.   }
  16. }
  17. ?>
  18.