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

  1. <?php
  2. // $Id: style.php,v 1.1 2004/01/12 22:14:04 comsubvie Exp $
  3.  
  4. // This function emits the current template's stylesheet.
  5.  
  6. function action_style()
  7. {
  8.   header("Content-type: text/css");
  9.  
  10.   ob_start();
  11.  
  12.   require(TemplateDir . '/wiki.css');
  13.  
  14.   $size = ob_get_length();
  15.   header("Content-Length: $size");
  16.   ob_end_flush();
  17. }
  18. ?>
  19.