home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / modules / projects / print.php < prev    next >
PHP Script  |  2004-03-08  |  930b  |  30 lines

  1. <?php
  2. /*
  3. Copyright Intermesh 2003
  4. Author: Merijn Schering <mschering@intermesh.nl>
  5. Version: 1.0 Release date: 08 July 2003
  6.  
  7. This program is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.
  11. */
  12.  
  13. require("../../Group-Office.php");
  14.  
  15.  
  16. $GO_SECURITY->authenticate();
  17. $GO_MODULES->authenticate('projects');
  18. require($GO_LANGUAGE->get_language_file('projects'));
  19.  
  20. $page_title=$menu_projects;
  21. require($GO_CONFIG->class_path."projects.class.inc");
  22. $projects = new projects();
  23.  
  24. $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : '';
  25.  
  26. require($GO_THEME->theme_path."simple_header.inc");
  27. require("load.inc");
  28. echo "\n<script type=\"text/javascript\">\nwindow.print();\n</script>\n";
  29. require($GO_THEME->theme_path."simple_footer.inc");
  30. ?>