dynamicCss.php

Go to the documentation of this file.
00001 <?php
00028 function autoIncludeCss() {
00029     if (empty($_GET["module"])) $module = "";
00030     else $module = $_GET["module"];
00031     if (empty($_GET["submod"])) $submod = "";
00032     else $submod = $_GET["submod"];
00033     $css = "modules/" . $module . "/graph/" . $submod . "/index.css";
00034     //if (file_exists($css) && $module != "base" && $submod != "samba") include($css);
00035     if (file_exists($css)) {
00036         include($css);
00037     }
00038 }
00039 
00040 print '<style type="text/css"><!--';
00041 autoIncludeCss();
00042 print "--></style>";
00043 
00044 ?>

Generated on Tue May 4 11:47:19 2010 for MMC web interface by  doxygen 1.5.8