mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 09:52:22 +00:00
sync_stpldev_stpl.php: Spalte anmerkung nur syncen, wenn im Config "LVPLAN_ANMERKUNG_ANZEIGEN" true ist.
student.rdf.php: Datenfeld "Max_Semester" des Studiengangs. lehreinheit.class.php: Die Anmerkungen der Lehreinheit werden beim Reinziehen in den Stundenplan nicht mehr in jede Einheit übertragen. Das ist nicht notwendig. Im Tempus wird ohnehin auch die Spalte "Anmerkung Lehreinheit" angezeigt. bewerbung.php: Link zu "jquery-ui1.10.3.js" eintfernt, da nicht vorhanden
This commit is contained in:
@@ -408,7 +408,7 @@ else
|
||||
<link rel="stylesheet" href="../../skin/styles/jquery-ui-1.10.3.custom.css" />
|
||||
<link href="../../skin/style.css.php" rel="stylesheet" type="text/css">
|
||||
<script src="../../include/js/jquery1.9.min.js"></script>
|
||||
<script src="../../include/js/jquery-ui1.10.3.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../../include/js/jquery.idTabs.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
|
||||
@@ -10,7 +10,7 @@ define('DEFAULT_LEHREINHEIT_LEHRFORM','UE');
|
||||
define('CIS_LEHRVERANSTALTUNG_NEWSGROUPS_ANZEIGEN',true);
|
||||
define('CIS_LEHRVERANSTALTUNG_FEEDBACK_ANZEIGEN',true);
|
||||
|
||||
//Anmerkung bei Unterrichtseinheiten im LV-Plan anzeigen
|
||||
//Anmerkung bei Unterrichtseinheiten im LV-Plan anzeigen. Anmerkungen bei LV-Plan Sync mitkopieren.
|
||||
define('LVPLAN_ANMERKUNG_ANZEIGEN',true);
|
||||
//Gruppieren zeitgleicher Lehreinheiten im LV-Plan
|
||||
define('LVPLAN_LEHREINHEITEN_GRUPPIEREN',true);
|
||||
|
||||
@@ -660,7 +660,7 @@ class lehreinheit extends basis_db
|
||||
// Datenbank INSERT
|
||||
$sql_query="INSERT INTO $stpl_table
|
||||
(unr,mitarbeiter_uid,datum, stunde, ort_kurzbz,lehreinheit_id,studiengang_kz,semester,verband,
|
||||
gruppe, gruppe_kurzbz, titel, anmerkung, updatevon)
|
||||
gruppe, gruppe_kurzbz, titel, updatevon)
|
||||
VALUES ($this->unr,'".$this->mitarbeiter_uid[$i]."','$datum',$stunde,
|
||||
'$ort',$this->lehreinheit_id, ".$this->studiengang_kz[$i].",".$this->semester[$i].",
|
||||
'".$this->verband[$i]."','".$this->gruppe[$i]."'";
|
||||
@@ -668,7 +668,7 @@ class lehreinheit extends basis_db
|
||||
$sql_query.=',NULL';
|
||||
else
|
||||
$sql_query.=",'".$this->gruppe_kurzbz[$i]."'";
|
||||
$sql_query.=",'".$this->titel[$i]."','$this->anmerkung','$user')";
|
||||
$sql_query.=",'".$this->titel[$i]."','$user')";
|
||||
if (!$this->db_query($sql_query))
|
||||
{
|
||||
$this->errormsg=$this->db_last_error();
|
||||
|
||||
@@ -730,7 +730,10 @@ class wochenplan extends basis_db
|
||||
sort($anmerkung);
|
||||
$anm='';
|
||||
foreach ($anmerkung as $a)
|
||||
$anm.='<BR />'.$a;
|
||||
if ($a!='')
|
||||
$anm.='<BR />'.$a;
|
||||
else
|
||||
$anm='';
|
||||
}
|
||||
|
||||
// Blinken oder nicht ?
|
||||
@@ -875,7 +878,8 @@ class wochenplan extends basis_db
|
||||
{
|
||||
$uEinheit['anmerkung']=array_unique($uEinheit['anmerkung']);
|
||||
foreach($uEinheit['anmerkung'] as $ueAnmerkung)
|
||||
echo $ueAnmerkung."<BR />";
|
||||
if ($ueAnmerkung!='')
|
||||
echo $ueAnmerkung."<BR />";
|
||||
}
|
||||
echo '</A></DIV>';
|
||||
}
|
||||
|
||||
@@ -715,6 +715,7 @@ else
|
||||
<studiensemester_aktuell><![CDATA['.$stsem->studiensemester_kurzbz.']]></studiensemester_aktuell>
|
||||
<studienbeginn_aktuell><![CDATA['.$datum_obj->convertISODate($stsem->start).']]></studienbeginn_aktuell>
|
||||
<tagesdatum><![CDATA['.date('d.m.Y').']]></tagesdatum>
|
||||
<max_semester><![CDATA['.$studiengang->max_semester.']]></max_semester>
|
||||
</student>';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
* Uebersichtsmails werden an LV-Planung und Administration geschickt
|
||||
*/
|
||||
require_once('../../config/vilesci.config.inc.php');
|
||||
require_once('../../config/global.config.inc.php');
|
||||
require_once('../../include/functions.inc.php');
|
||||
require_once('../../include/studiensemester.class.php');
|
||||
require_once('../../include/mail.class.php');
|
||||
@@ -193,7 +194,7 @@ else
|
||||
//echo '.';flush();
|
||||
$sql_query='INSERT INTO lehre.tbl_stundenplan
|
||||
(stundenplan_id,unr,mitarbeiter_uid,datum,stunde,ort_kurzbz,studiengang_kz,semester,verband,gruppe,
|
||||
gruppe_kurzbz,titel,fix,updateamum,updatevon,insertamum,insertvon,lehreinheit_id) VALUES'; //spalte anmerkung entfent vom kindlm am 16.03.2012 da nicht relevant fuer tbl_stundenplan und nur fuer intern gedacht
|
||||
gruppe_kurzbz,titel,'.(LVPLAN_ANMERKUNG_ANZEIGEN?'anmerkung,':'').'fix,updateamum,updatevon,insertamum,insertvon,lehreinheit_id) VALUES'; //spalte anmerkung nur syncen, wenn im Config aktiv
|
||||
$sql_query.="($row->stundenplandev_id,$row->unr,'$row->uid','$row->datum',$row->stunde,'$row->ort_kurzbz',
|
||||
$row->studiengang_kz,$row->semester";
|
||||
if ($row->verband==null)
|
||||
@@ -208,8 +209,9 @@ else
|
||||
$sql_query.=',NULL';
|
||||
else
|
||||
$sql_query.=",'$row->gruppe_kurzbz'";
|
||||
//$sql_query.=",'$row->titel','$row->anmerkung'"; --> anmerkung auskommentiert vom kindlm am 16.03.2012 da nicht relevant fuer tbl_stundenplan und nur fuer intern gedacht
|
||||
$sql_query.=",'$row->titel'";
|
||||
if (LVPLAN_ANMERKUNG_ANZEIGEN) //spalte anmerkung nur syncen, wenn im Config aktiv
|
||||
$sql_query.=",'$row->anmerkung'";
|
||||
if ($row->fix=='t')
|
||||
$sql_query.=',TRUE';
|
||||
else
|
||||
|
||||
@@ -0,0 +1,204 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:output method="xml" version="1.0" indent="yes" />
|
||||
|
||||
<xsl:template match="accountinfoblaetter">
|
||||
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
|
||||
<fo:layout-master-set>
|
||||
<fo:simple-page-master page-height="297mm" page-width="210mm" margin="5mm 25mm 5mm 25mm" master-name="PageMaster">
|
||||
<fo:region-body margin="20mm 0mm 20mm 0mm"/>
|
||||
</fo:simple-page-master>
|
||||
</fo:layout-master-set>
|
||||
<xsl:apply-templates select="infoblatt"/>
|
||||
</fo:root>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="infoblatt">
|
||||
<fo:page-sequence master-reference="PageMaster">
|
||||
<fo:flow ><!--flow-name="xsl-region-body"-->
|
||||
<!-- Logo -->
|
||||
<fo:block>
|
||||
<!-- <fo:external-graphic src="../skin/images/logo.jpg" posx="140" posy="15" width="60mm" height="20mm" /> -->
|
||||
<fo:external-graphic posx="167" posy="15" height="20mm" >
|
||||
<xsl:attribute name="src">
|
||||
<xsl:value-of select="logopath" />logo.jpg
|
||||
</xsl:attribute>
|
||||
</fo:external-graphic>
|
||||
</fo:block>
|
||||
|
||||
<fo:block-container position="absolute" top="30mm" left="80mm">
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="12pt" font-weight="bold">
|
||||
Account Information
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="40mm" left="15mm">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="30mm"/>
|
||||
<fo:table-column column-width="130mm"/>
|
||||
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="14pt">
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="30mm" text-align="left">
|
||||
Name:
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="130mm" text-align="left">
|
||||
<xsl:value-of select="name" />
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="30mm"/>
|
||||
<fo:table-column column-width="50mm"/>
|
||||
<fo:table-column column-width="15mm"/>
|
||||
<fo:table-column column-width="30mm"/>
|
||||
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="14pt">
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="30mm" text-align="left">
|
||||
Account:
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-family="sans-serif" font-weight="bold" font-size="12pt" content-width="50mm" text-align="left">
|
||||
<xsl:value-of select="account" />
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="15mm" text-align="left">
|
||||
Email:
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="30mm" text-align="left">
|
||||
<xsl:value-of select="email" />
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="30mm"/>
|
||||
<fo:table-column column-width="130mm"/>
|
||||
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="14pt">
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="30mm" text-align="left">
|
||||
Passwort:
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="130mm" text-align="left">
|
||||
<xsl:value-of select="passwort" />
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
<xsl:if test="bezeichnung">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="30mm"/>
|
||||
<fo:table-column column-width="300mm"/>
|
||||
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="14pt">
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="30" text-align="left">
|
||||
Studiengang:
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell>
|
||||
<fo:block font-weight="bold" font-family="sans-serif" font-size="12pt" content-width="300mm" text-align="left">
|
||||
<xsl:value-of select="bezeichnung" />
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</xsl:if>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="80mm" left="80mm">
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="12pt" font-weight="bold">
|
||||
Account Mini FAQ
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="90mm" left="15mm">
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt" font-weight="bold">
|
||||
Ändern des Passwortes
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
Windows XP/7: In den EDV-Räumen.\n
|
||||
Loggen Sie sich mit Ihrem Account unter Windows XP/7 ein, drücken Sie <STRG> + <ALT> + <ENTF> und wählen Sie den Punkt "Kennwort ändern".\n
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt" font-weight="bold">
|
||||
Wie kann ich meine Mails von zu Hause aus abrufen?
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
Eine Anleitung zur Einrichtung Ihres Mail-Clients finden Sie auf http://www.ktu-linz.ac.at unter dem Punkt FAQ.\n
|
||||
</fo:block>
|
||||
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt" font-weight="bold">
|
||||
Wo erhalte ich weitere Informationen?
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
Die primäre Anlaufstelle für Fragen rund um den Netzwerkbetrieb ist die Webseite\n
|
||||
</fo:block>
|
||||
<fo:block text-align="center" content-width='180mm' font-family="sans-serif" font-size="10pt">
|
||||
http://www.ktu-linz.ac.at\n
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
Verwenden Sie die Informationen auf dieser Seite, um einen Überblick über die vorhandenen Möglichkeiten zu erhalten.
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<!-- Englische Version -->
|
||||
<fo:block font-size="16pt"
|
||||
font-family="sans-serif"
|
||||
space-after.optimum="15pt"
|
||||
text-align="center"
|
||||
>
|
||||
<!--break-before="page" -->
|
||||
</fo:block>
|
||||
<fo:block-container position="absolute" top="180mm" left="80mm">
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="12pt" font-weight="bold">
|
||||
Account Mini FAQ
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
<fo:block-container position="absolute" top="190mm" left="15mm">
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt" font-weight="bold">
|
||||
Password Change:
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
In the computer labs of KTU Linz\n
|
||||
In Windows XP and Windows 7, hold down <ctrl> + <alt> + <delete> simultaneously. Select "Kennwort ändern" (Change Password). Then change your password.\n
|
||||
</fo:block>
|
||||
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt" font-weight="bold">
|
||||
Looking for further information?
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
For questions concerning the KTU Linz network services, see\n
|
||||
</fo:block>
|
||||
<fo:block text-align="center" content-width='180mm' font-family="sans-serif" font-size="10pt">
|
||||
http://www.ktu-linz.ac.at\n
|
||||
</fo:block>
|
||||
<fo:block text-align="left" font-family="sans-serif" font-size="10pt">
|
||||
These pages will give you a detailed overview of all services available
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
</fo:flow>
|
||||
</fo:page-sequence>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet >
|
||||
Reference in New Issue
Block a user