Untersuchungsergebnis.php Download desShell {Shell[132] Ada[208] Abap[489]}zum Wurzelverzeichnis wechseln
<?php
#---------------------------------------------------------------------------------
#au_u_0100 = Statuskontrolle Objektorientiert
#
#---------------------------------------------------------------------------------
?>
<html>
<title>
::::Sprecherarchiv Statuskontrolle ::::
</title>
<style type="text/css" media="all">
body {
margin: 15 0 0 15;
background-color: #23130E;
/*background-color: navy;*/
/*ckground-image: url(./images/logo_sprecherarchiv.jpg);*/
background-repeat: no-repeat;
background-position: top right;
}
h1, h2, h3 {
font-family: Arial, Helvetica;
color : green;
}
h4, h5, h6 {
font-family: Arial, Helvetica;
color : green;
}
th {
color: white;
}
td#t0 {
color: white;
}
td#t1 {
color: gray;
}
td#t7 {
color: olive;
}
td#t8 {
color: green;
}
td#t9 {
color: silver;
}
td#tx {
color: red;
}
td#tb {
color: blue;
}
td#tpk {
color: yellow;
}
td#tpkm {
color: #BBAB1E;
}
td#ta {
color: teal;
}
</style>
<head>
<title>Kontrolle Sprecherarchiv</title>
<meta http-equiv='content-type' content='text/html; charset=iso-8859-1'>
</head>
<?
$datum=date("d.m.Y G:i:s");
#echo "<h2><font color='yellow'><u>Statistik Sprecherarchiv, Stand: $datum </u></font></h3>";
echo "Stand: $datum
";
require_once("au_uc_0100.php"); #Class au_uc_0100
#----------------------------------------------------------------
$au_0100 = new au_uc_0100; #Alle Informationen besorgen (Class->Methoden)
#----------------------------------------------------------------
#-----------------------------------------------------------------------------------------Informationen 1 anzeigen
$counter=$au_0100->counter;
anzeigen_teil1($counter);
#-----------------------------------------------------------------Informationen 2 (Sprecherstati) anzeigen und erklären
$counter2=$au_0100->counter2;
anzeigen_teil2($counter2);
#----------------------------------------------------------------------------------------die letzten 50 login anzeigen
$log=$au_0100->log;
anzeigen_teil3($log);
function anzeigen_teil1($counter){
#---------------------------------------------------------------
#alle Daten des Sprecherarchivs als Counter andrucken
#---------------------------------------------------------------
?>
<h4><u>1. User im Sprecherarchiv</u></h4>
<table width='50%'>
<th align = 'left'>User-Typ</th>
<th align='right'>gesamt</th>
<th align='right'>OK.</th>
<th align='right'>gelöscht</th>
<th align='right'>gesperrt</th>
<th align='center'>temp. Proben</th>
<th align='center'>mp3-Backup</th>
<th align='center'>Aufträge in arbeit</th>
<?
foreach ($counter as $wert1 => $inhalt1){
echo "";
echo "" . $wert1 . " | ";
$i=0;
foreach($inhalt1 as $wert2 => $inhalt2){
$i++;
switch ($i){
case 3: //gesperrte User
if ($inhalt2 > 0)
echo "" . $inhalt2 . " | ";
else
echo "" . $inhalt2 . " | ";
break;
case 4: //gesperrte User
if ($inhalt2 > 0)
echo "" . $inhalt2 . " | ";
else
echo "" . $inhalt2 . " | ";
break;
case 5: //temp. Proben
if ($inhalt2 > 0)
echo "" . $inhalt2 . " | ";
else
echo "" . $inhalt2 . " | ";
break;
case 6: //mp3-Backup
if ($inhalt2 > 0)
echo "" . $inhalt2 . " | ";
else
echo "" . $inhalt2 . " | ";
break;
case 7: //Kundenaufträge in arbeit
if ($inhalt2 > 0)
echo "" . $inhalt2 . " | ";
else
echo "" . $inhalt2 . " | ";
break;
default:
echo "" . $inhalt2 . " | ";
}
}
echo "
";
}
echo "