fhiiqm/keytyp_report.php
author Bettina Schwarzer <schwarzer@fhi-berlin.mpg.de>
Wed, 31 Jul 2013 15:10:48 +0200
changeset 39 4ce411ed28b6
parent 38 45c139f74ea4
child 40 6f4b105daa24
permissions -rw-r--r--
+ Keytyp: delDepot, userVW; Korrekturen

<?php

/**
 * @author Bettina Schwarzer, Fritz-Haber-Institut
 * @copyright 06/2013
 * 
 * Reportauswahl Keytyp
 * 
 */



    error_reporting(E_ALL ^ E_NOTICE);
    
    session_start();
    if (! isset($_SESSION["userid"]))
    { 
        include_once ("inc/func_lib.inc.php");	
        login($_SERVER["PHP_SELF"]);
        exit;
    }
    
    if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("kr",$_SESSION["recht"]) && !in_array("ke",$_SESSION["recht"])))
    {
        header("Location: start.php");
        exit;
    }    
    
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
	<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
   	<link href="css/db.css" rel="STYLESHEET" type="TEXT/CSS" /> 
   	<link href="css/navio.css" rel="STYLESHEET" type="TEXT/CSS" /> 
	<meta name="author" content="Bettina Schwarzer,FHI" />

	<title>Reports Keytyp</title>
</head>

<body>
<?php
    echo "&nbsp;";  
    echo "<div class=\"float-br smaller\" valign='top'>";
    echo "&nbsp;&nbsp;&nbsp;user: " . $_SESSION["userid"];
    echo "&nbsp;&nbsp;&nbsp;<a class='sc' href='/fhiiqm/logout.php' title='Session beenden'>logout</a></div>\n";
    echo "<div class=\"float-r sc\"><img src=\"/fhiiqm/img/key.png\" border=\"0\" alt=\"Berichte Keytyp\" title=\"Berichte Schl&uuml;sseltyp\"/></div>\n";
?>
    <h3>&nbsp;&nbsp;&nbsp;Berichte Schl&uuml;sseltyp</h3>
    <div align="center">
    <table width="94%" cellspacing="4" cellpadding="4">
        <tr>
            <td class="bigger">
                <a href="/fhiiqm/report/keytyp_dep_anz_report.php" title="Keytypbestand-Depot">Schl&uuml;sseltyp-Bestand - Depot</a>
                <br />&nbsp;&nbsp;&nbsp;Auswahl: Depot, Schl&uuml;sseltyp
                <br />&nbsp;&nbsp;&nbsp;Ansicht: Depot, Schl&uuml;sseltyp, Anzahl Zugang, Abgang, Verlust, Bestand
            </td>
        </tr>
        <tr>
            <td class="bigger">
                <a href="/fhiiqm/report/keytyp_dep_history_report.php" title="Keytyphistorie-Depot">Schl&uuml;sseltyp-Historie - Depot</a>
                <br />&nbsp;&nbsp;&nbsp;Auswahl: Depot, Schl&uuml;sseltyp
                <br />&nbsp;&nbsp;&nbsp;Ansicht: Schl&uuml;sseltyp, Depot, Datum, Aktion, Anzahl, Bemerkung
            </td>
        </tr>
    </table>
    </div>    

</body>
</html>