home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / NVinst.exe / Scripts / HTTP / 127.0.0.3 / ReloadCMS / admin / module.php < prev    next >
Encoding:
PHP Script  |  2007-02-10  |  1.2 KB  |  25 lines

  1. <?php 
  2. ////////////////////////////////////////////////////////////////////////////////
  3. //   Copyright (C) ReloadCMS Development Team                                 //
  4. //   http://reloadcms.sf.net                                                  //
  5. //                                                                            //
  6. //   This program is distributed in the hope that it will be useful,          //
  7. //   but WITHOUT ANY WARRANTY, without even the implied warranty of           //
  8. //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                     //
  9. //                                                                            //
  10. //   This product released under GNU General Public License v2                //
  11. ////////////////////////////////////////////////////////////////////////////////
  12. if(empty($system)) die();
  13. ?>
  14. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=<?=$system->config['encoding']?>">
  18. <link rel="stylesheet" href="<?=ADMIN_PATH?>style.css" type="text/css">
  19. </head>
  20. <body>
  21. <?php
  22. include(ADMIN_PATH . 'modules/' . $module[0] . '/' . $module[1] . '.php');
  23. ?>
  24. </body>
  25. </html>