mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-16 19:49:28 +00:00
253 lines
7.6 KiB
PHP
253 lines
7.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 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: Christian Paminger <christian.paminger@technikum-wien.at>,
|
|
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
require_once('../../config.inc.php');
|
|
require_once('../../../include/functions.inc.php');
|
|
require_once('../../../include/news.class.php');
|
|
|
|
//Connection Herstellen
|
|
if(!$sql_conn = pg_pconnect(CONN_STRING))
|
|
die('Fehler beim oeffnen der Datenbankverbindung');
|
|
|
|
$user = get_uid();
|
|
|
|
if(check_lektor($user,$sql_conn))
|
|
$is_lector=true;
|
|
else
|
|
die('Sie haben keine Berechtigung fuer diesen Bereich');
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<?php
|
|
if(isset($news_submit) && (!isset($message_sent) || $message_sent == "no"))
|
|
{
|
|
$author = chop($_POST['txtAuthor']);
|
|
$title = chop($_POST['txtTitle']);
|
|
$datum = $_POST['datum'];
|
|
$news_message = chop(str_replace("\r\n", "<br>", $txtNewsMessage));
|
|
|
|
if($author != "" && $title != "" && $news_message != "")
|
|
{
|
|
$news_obj = new news($sql_conn);
|
|
|
|
$news_obj->verfasser = $author;
|
|
$news_obj->uid = $user;
|
|
$news_obj->studiengang_kz = '0';
|
|
|
|
$news_obj->semester = '0';
|
|
$news_obj->betreff = $title;
|
|
$news_obj->text = $news_message;
|
|
$news_obj->datum = $datum;
|
|
$news_obj->datum_bis = $datum_bis;
|
|
$news_obj->updatevon = $user;
|
|
|
|
if(isset($news_id) && $news_id != "")
|
|
{
|
|
$news_obj->new=false;
|
|
$news_obj->news_id = $news_id;
|
|
}
|
|
else
|
|
$news_obj->new=true;
|
|
|
|
if($news_obj->save())
|
|
{
|
|
echo '<script language="JavaScript">';
|
|
echo " document.location.href = 'pinboard_entry.php?&message_sent=yes';";
|
|
echo '</script>';
|
|
}
|
|
else
|
|
{
|
|
echo $news_obj->errormsg;
|
|
//echo "<script language=\"JavaScript\">";
|
|
//echo " document.location.href = 'pinboard_entry.php?&message_sent=no';";
|
|
//echo "</script>";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo "<script language=\"JavaScript\">";
|
|
echo " document.location.href = 'pinboard_entry.php?message_sent=no';";
|
|
echo "</script>";
|
|
}
|
|
|
|
exit;
|
|
}
|
|
?>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<link href="../../../skin/style.css.php" rel="stylesheet" type="text/css">
|
|
|
|
<script language="JavaScript">
|
|
|
|
function focusFirstElement()
|
|
{
|
|
if(document.NewsEntry.txtAuthor != null)
|
|
{
|
|
document.NewsEntry.txtAuthor.focus();
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<?php
|
|
echo "<script language=\"JavaScript\">";
|
|
echo " parent.news_window.location.href = 'pinboard_show.php'";
|
|
echo "</script>";
|
|
?>
|
|
</head>
|
|
|
|
<body onLoad="focusFirstElement();">
|
|
<table class="tabcontent" id="inhalt">
|
|
<tr>
|
|
<td class="tdwidth10"> </td>
|
|
<td><form method="post" name="NewsEntry">
|
|
<table class="tabcontent">
|
|
<tr>
|
|
<td class="ContentHeader"><font class="ContentHeader"> Lektorenbereich - Pinboardverwaltung</font></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
</tr>
|
|
<tr>
|
|
<?php
|
|
|
|
if(isset($message_sent) && $message_sent == "yes")
|
|
{
|
|
if(isset($changed) && $changed == "yes")
|
|
{
|
|
echo " <td>";
|
|
echo "<script language=\"JavaScript\">";
|
|
echo " parent.news_window.location.href = 'pinboard_show.php'";
|
|
echo "</script>";
|
|
echo "</td>";
|
|
echo "</tr>";
|
|
echo " <td> </td>";
|
|
echo "</tr>";
|
|
echo "<tr>";
|
|
echo " <td><font class=\"h3\">Die Nachricht wurde erfolgreich geändert!</font></td>";
|
|
echo "</tr>";
|
|
}
|
|
else
|
|
{
|
|
echo " <td>";
|
|
echo "<script language=\"JavaScript\">";
|
|
echo " parent.news_window.location.href = 'pinboard_show.php'";
|
|
echo "</script>";
|
|
echo "</td>";
|
|
echo "</tr>";
|
|
echo " <td> </td>";
|
|
echo "</tr>";
|
|
echo "<tr>";
|
|
echo " <td><font class=\"h3\">Die Neuigkeit wurde erfolgreich eingetragen!</font></td>";
|
|
echo "</tr>";
|
|
}
|
|
|
|
exit;
|
|
}
|
|
else if(isset($message_sent) && $message_sent == "no")
|
|
{
|
|
echo "<td> </td>";
|
|
echo "</tr>";
|
|
echo " <td><font class=\"h3\">Die Neuigkeit wurde nicht eingetragen!</font><br>";
|
|
echo "<font class=\"h3\">Es wurden nicht alle erforderlichen Felder ausgefüllt.</font></td>";
|
|
echo "</tr>";
|
|
|
|
exit;
|
|
}
|
|
|
|
echo '<td class="ContentHeader2"> ';
|
|
|
|
if(isset($news_id) && $news_id != "")
|
|
{
|
|
$news_obj = new news($sql_conn, $news_id);
|
|
|
|
$verfasser = $news_obj->verfasser;
|
|
$betreff = $news_obj->betreff;
|
|
$text = $news_obj->text;
|
|
$datum = $news_obj->datum;
|
|
$datum_bis = $news_obj->datum_bis;
|
|
|
|
echo 'Eintrag ändern';
|
|
}
|
|
else
|
|
{
|
|
echo 'Neuen Eintrag erstellen';
|
|
}
|
|
|
|
echo '</td>';
|
|
?>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<table class="tabcontent">
|
|
<tr>
|
|
<td width="65">Verfasser:</td>
|
|
<td width="218"><input type="text" class="TextBox" name="txtAuthor" size="30"<?php if(isset($news_id) && $news_id != "") echo ' value="'.$verfasser.'"'; ?>>
|
|
</td>
|
|
<td width="80">Sichtbar ab</td>
|
|
<td><input type="text" class="TextBox" name="datum" size="10" value="<?php if(isset($news_id) && $news_id != "") echo date('d.m.Y',strtotime(strftime($datum))); else echo date('d.m.Y'); ?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Titel:</td>
|
|
<td><input type="text" class="TextBox" name="txtTitle" size="30"<?php if(isset($news_id) && $news_id != "") echo ' value="'.$betreff.'"'; ?>></td>
|
|
<td width="80">Sichtbar bis</td>
|
|
<td><input type="text" class="TextBox" name="datum_bis" size="10" value="<?php if(isset($news_id) && $news_id != "" && $datum_bis!='') echo date('d.m.Y',strtotime(strftime($datum_bis))); else echo ''; ?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2'>Bitte geben Sie hier Ihre Nachricht ein:</td>
|
|
<td colspan='2'><strong><font class="error">Hinweis:</font></strong>
|
|
Bitte beachten Sie, dass im Titel auch das jeweilige Freifach genannt wird.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<textarea class="TextBox" style="width: 99%; heigth: 166px" name="txtNewsMessage" rows="10" cols="70" maxlength="2000"><?php if(isset($news_id) && $news_id != "") echo str_replace("<br>", "\r\n", $text); ?></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap>
|
|
<input type="hidden" name="news_submit">
|
|
<input type="submit" name="btnSend" value="Abschicken">
|
|
<?php
|
|
if(isset($news_id) && $news_id != "")
|
|
{
|
|
echo "<input type=\"reset\" name=\"btnCancel\" value=\"Abbrechen\" onClick=\"document.location.href='pinboard_entry.php';\"></td>";
|
|
}
|
|
else
|
|
{
|
|
echo '<input type="reset" name="btnCancel" value="Zurücksetzen" onClick="document.NewsEntry.txtAuthor.focus();"></td>';
|
|
}
|
|
?>
|
|
</tr>
|
|
</table>
|
|
</form></td>
|
|
<td class="tdwidth30"> </td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|