|
1 <?php |
|
2 |
|
3 /** |
|
4 * @author Bettina Schwarzer, Fritz-Haber-Institut |
|
5 * @copyright 02/2013 |
|
6 * |
|
7 * Reportauswahl Projekte |
|
8 * |
|
9 */ |
|
10 |
|
11 |
|
12 |
|
13 error_reporting(E_ALL ^ E_NOTICE); |
|
14 |
|
15 session_start(); |
|
16 if (! isset($_SESSION["userid"])) |
|
17 { |
|
18 include_once ("inc/func_lib.inc.php"); |
|
19 login($_SERVER["PHP_SELF"]); |
|
20 exit; |
|
21 } |
|
22 |
|
23 if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("pzr",$_SESSION["recht"]) && !in_array("pze",$_SESSION["recht"]) && |
|
24 !in_array("ddr",$_SESSION["recht"]) && !in_array("dde",$_SESSION["recht"]))) |
|
25 { |
|
26 header("Location: start.php"); |
|
27 exit; |
|
28 } |
|
29 |
|
30 ?> |
|
31 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
32 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|
33 |
|
34 <head> |
|
35 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> |
|
36 <link href="css/db.css" rel="STYLESHEET" type="TEXT/CSS" /> |
|
37 <link href="css/navio.css" rel="STYLESHEET" type="TEXT/CSS" /> |
|
38 <meta name="author" content="Bettina Schwarzer,FHI" /> |
|
39 |
|
40 <title>Reports Projekte</title> |
|
41 </head> |
|
42 |
|
43 <body> |
|
44 <?php |
|
45 echo " "; |
|
46 echo "<div class=\"float-br smaller\" valign='top'>"; |
|
47 echo " user: " . $_SESSION["userid"]; |
|
48 echo " <a class='sc' href='/fhiiqm/logout.php' title='Session beenden'>logout</a></div>\n"; |
|
49 echo "<div class=\"float-r sc\"><img src=\"/fhiiqm/img/sheduled_task.png\" border=\"0\" alt=\"Berichte Projekte\" title=\"Berichte Projekte\"/></div>\n"; |
|
50 ?> |
|
51 <h3> Berichte Projekte</h3> |
|
52 <div align="center"> |
|
53 <table width="94%" cellspacing="4" cellpadding="4"> |
|
54 <tr> |
|
55 <td class="bigger"> |
|
56 <a href="/fhiiqm/report/proz_short_report.php" title="Projekte">Projekte - Übersicht</a> |
|
57 <br /> Auswahl: Status, Produktgruppe |
|
58 <br /> Ansicht: Projekt, Beschreibung, Produkt, Verantwortlicher, Status |
|
59 </td> |
|
60 </tr> |
|
61 <tr> |
|
62 <td class="bigger"> |
|
63 <a href="/fhiiqm/report/prozess_report.php" title="Projekte">Projekte - Details</a> |
|
64 <br /> Auswahl: Status, Produktgruppe |
|
65 <br /> Ansicht: Projekt, Verantwortlicher, Auftraggeber, Plan-Datum, -Kosten, Ist-Datum, -Kosten, Status, Schritte |
|
66 </td> |
|
67 </tr> |
|
68 </table> |
|
69 </div> |
|
70 |
|
71 </body> |
|
72 </html> |