Uebersichtsseite aller Coodle Umfragen

This commit is contained in:
Karl Burkhart
2012-10-01 13:03:07 +00:00
parent 3aef4fd29d
commit c10c89bb3c
4 changed files with 171 additions and 0 deletions
+5
View File
@@ -135,6 +135,11 @@ if(isset($_POST['save']))
{
echo '<span class="error">'.$coodle->errormsg.'</span>';
}
echo '<script>
window.opener.location.href="uebersicht.php";
</script>';
}
elseif(isset($_GET['coodle_id']))
{
+139
View File
@@ -0,0 +1,139 @@
<?php
/* Copyright (C) 2012 FH Technikum-Wien
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* Authors: Karl Burkhart <burkhart@technikum-wien.at>
*/
require_once('../../../config/cis.config.inc.php');
require_once('../../../include/coodle.class.php');
require_once('../../../include/functions.inc.php');
require_once('../../../include/phrasen.class.php');
$lang = getSprache();
$p = new phrasen($lang);
$uid = get_uid();
$message = '';
echo '
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="../../../skin/fhcomplete.css" type="text/css">
<link rel="stylesheet" href="../../../skin/style.css.php" type="text/css">'; ?>
<link href="../../../skin/style.css.php" rel="stylesheet" type="text/css">
<link href="../../../skin/tablesort.css" rel="stylesheet" type="text/css">
<link href="../../../skin/jquery.css" rel="stylesheet" type="text/css"/>
<script src="../../../include/js/tablesort/table.js" type="text/javascript"></script>
<script src="../../../include/js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#myTableFiles").tablesorter(
{
sortList: [[0,0]],
widgets: ["zebra"]
});
});
function conf_user(ersteller_uid)
{
var uid = ersteller_uid;
if(uid == '<?php echo $uid; ?>')
{
return true;
}
else
{
alert("<?php echo $p->t('global/keineBerechtigung'); ?>");
return false;
}
}
</script>
<?php
echo' <title>'.$p->t('coodle/uebersicht').'</title>
</head>
<body>';
$method = isset($_GET['method'])?$_GET['method']:'';
// coodle umfrage löschen
if($method=='delete')
{
$coodle= new coodle();
$coodle_id = isset($_GET['coodle_id'])?$_GET['coodle_id']:'';
if($coodle->load($coodle_id))
{
// löschen nur von eigenen Umfragen möglich
if($coodle->ersteller_uid!=$uid)
$message = '<span class="error">'.$p->t('global/keineBerechtigung').'</span>';
else
{
if($coodle->delete($coodle_id))
$message ='<span class="ok">'.$p->t('global/erfolgreichgelöscht').'</span>';
else
$message ='<span class="error">'.$p->t('coodle/umfrageKonnteNichtGeloeschtWerden').'</span>';
}
}
else
$message = '<span class ="error">'.$p->t('coodle/umfrageNichtGeladen').'</span>';
}
echo'<h1>'.$p->t('coodle/uebersicht').'</h1>
<br>
<div style="display:block; text-align:left; float:left;"><a href="stammdaten.php" target="_blank">'.$p->t('coodle/neueUmfrage').'</a></div><br>
<div style="display:block; text-align:right; margin-right:16px; ">'.$message.'</div>
<table id="myTableFiles" class="tablesorter">
<thead>
<tr>
<th width="5%">'.$p->t('coodle/coodleId').'</th>
<th width="20%">'.$p->t('coodle/titel').'</th>
<th width="40%">'.$p->t('coodle/beschreibung').'</th>
<th>'.$p->t('coodle/letzterStatus').'</th>
<th>'.$p->t('coodle/ersteller').'</th>
<th>'.$p->t('coodle/aktion').'</th>
</tr>
</thead>';
$coodle = new coodle();
$coodle->getCoodleFromUser($uid);
foreach($coodle->result as $c)
{
echo '<tr>
<td>'.$coodle->convert_html_chars($c->coodle_id).'</td>
<td>'.$coodle->convert_html_chars($c->titel).'</td>
<td>'.$coodle->convert_html_chars(substr($c->beschreibung,0,40)).'</td>
<td>'.$coodle->convert_html_chars($c->coodle_status_kurzbz).'</td>
<td>'.$coodle->convert_html_chars($c->ersteller_uid).'</td>
<td>
<a href="stammdaten.php?coodle_id='.$c->coodle_id.'" target="_blank" onclick="return conf_user(\''.$c->ersteller_uid.'\');">&nbsp;<img src="../../../skin/images/edit.png"></a>
<a href="'.$_SERVER['PHP_SELF'].'?method=delete&coodle_id='.$c->coodle_id.'" onclick="return conf_user(\''.$c->ersteller_uid.'\');">&nbsp;<img src="../../../skin/images/delete_x.png"></a>
</td>
</tr>';
}
?>
+10
View File
@@ -4,4 +4,14 @@ $this->phrasen['coodle/titel']='Titel';
$this->phrasen['coodle/beschreibung']='Beschreibung';
$this->phrasen['coodle/dauer']='Dauer in Minuten';
$this->phrasen['coodle/endedatum']='Umfrageende';
$this->phrasen['coodle/uebersicht']='Coodle - Übersicht';
$this->phrasen['coodle/umfrageKonnteNichtGeloeschtWerden']='Umfrage konnte nicht gelöscht werden';
$this->phrasen['coodle/umfrageNichtGeladen']='Umfrage konnte nicht geladen werden';
$this->phrasen['coodle/coodleId']='Coodle_id';
$this->phrasen['coodle/titel']='Titel';
$this->phrasen['coodle/beschreibung']='Beschreibung';
$this->phrasen['coodle/letzterStatus']='Letzter Status';
$this->phrasen['coodle/ersteller']='Ersteller';
$this->phrasen['coodle/aktion']='Aktion';
$this->phrasen['coodle/neueUmfrage']='Neue Umfrage anlegen';
?>
+17
View File
@@ -0,0 +1,17 @@
<?php
$this->phrasen['coodle/coodle']='Coodle';
$this->phrasen['coodle/titel']='Titel';
$this->phrasen['coodle/beschreibung']='Beschreibung';
$this->phrasen['coodle/dauer']='Dauer in Minuten';
$this->phrasen['coodle/endedatum']='Umfrageende';
$this->phrasen['coodle/uebersicht']='Coodle - Overview';
$this->phrasen['coodle/umfrageKonnteNichtGeloeschtWerden']='Umfrage konnte nicht gelöscht werden';
$this->phrasen['coodle/umfrageNichtGeladen']='Umfrage konnte nicht geladen werden';
$this->phrasen['coodle/coodleId']='Coodle_id';
$this->phrasen['coodle/titel']='Titel';
$this->phrasen['coodle/beschreibung']='Beschreibung';
$this->phrasen['coodle/letzterStatus']='Letzter Status';
$this->phrasen['coodle/ersteller']='Ersteller';
$this->phrasen['coodle/aktion']='Aktion';
$this->phrasen['coodle/neueUmfrage']='Neue Umfrage anlegen';
?>