mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
This commit is contained in:
@@ -36,9 +36,9 @@ echo '<?xml-stylesheet href="'.APP_ROOT.'skin/tempus.css" type="text/css"?>';
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
>
|
||||
<vbox>
|
||||
<hbox>
|
||||
<hbox style="margin-top: 20px">
|
||||
<spacer flex="1"/>
|
||||
<image src='<?php echo APP_ROOT; ?>skin/images/fhcomplete.png' width="290" height="160"/>
|
||||
<image src='<?php echo APP_ROOT; ?>skin/images/fh_complete_logo.png' width="392" height="60"/>
|
||||
<spacer flex="1"/>
|
||||
</hbox>
|
||||
<hbox>
|
||||
@@ -67,8 +67,9 @@ echo '<?xml-stylesheet href="'.APP_ROOT.'skin/tempus.css" type="text/css"?>';
|
||||
|
||||
Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
||||
Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at>,
|
||||
Rudolf Hangl <rudolf.hangl@technikum-wien.at> and
|
||||
Gerald Raab <gerald.raab@technikum-wien.at>.
|
||||
Rudolf Hangl <rudolf.hangl@technikum-wien.at>,
|
||||
Gerald Raab <gerald.raab@technikum-wien.at> and
|
||||
Gerald Simane-Sequens <gerald.simane-sequence@technikum-wien.at>
|
||||
</description>
|
||||
</groupbox>
|
||||
<spacer flex="1"/>
|
||||
|
||||
@@ -97,6 +97,7 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
|
||||
<command id="menu-statistic-mitarbeiterstatistik:command" oncommand="StatistikPrintMitarbeiterstatistik();"/>
|
||||
<command id="menu-statistic-studentendetails:command" oncommand="StatistikPrintStudentExportExtended();"/>
|
||||
<command id="menu-statistic-lektorenstatistik:command" oncommand="StatistikPrintLektorenstatistik();"/>
|
||||
<command id="menu-statistic-stromanalyse:command" oncommand="StatistikPrintStromanalyse();"/>
|
||||
<command id="menu-dokumente-inskriptionsbestaetigung:command" oncommand="StudentPrintInskriptionsbestaetigung();"/>
|
||||
<command id="menu-dokumente-zeugnis:command" oncommand="StudentCreateZeugnis('Zeugnis');"/>
|
||||
<command id="menu-dokumente-zeugniseng:command" oncommand="StudentCreateZeugnis('ZeugnisEng');"/>
|
||||
@@ -404,6 +405,12 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
|
||||
label = "&menu-statistic-mitarbeiterstatistik.label;"
|
||||
command = "menu-statistic-mitarbeiterstatistik:command"
|
||||
accesskey = "&menu-statistic-mitarbeiterstatistik.accesskey;"/>
|
||||
<menuitem
|
||||
id = "menu-statistic-stromanalyse"
|
||||
key = "menu-statistic-stromanalyse:key"
|
||||
label = "&menu-statistic-stromanalyse.label;"
|
||||
command = "menu-statistic-stromanalyse:command"
|
||||
accesskey = "&menu-statistic-stromanalyse.accesskey;"/>
|
||||
</menupopup>
|
||||
</menu>
|
||||
</menupopup>
|
||||
|
||||
@@ -1007,6 +1007,19 @@ function StatistikPrintMitarbeiterstatistik()
|
||||
window.open('<?php echo APP_ROOT ?>content/statistik/mitarbeiterstatistik.php?stsem='+stsem,'Mitarbeiterstatistik');
|
||||
}
|
||||
|
||||
// ****
|
||||
// * Liefert eine Stromanalyse der Studenten
|
||||
// ****
|
||||
function StatistikPrintStromanalyse()
|
||||
{
|
||||
var stsem = getStudiensemester();
|
||||
if(stsem.startsWith('WS'))
|
||||
param = "?studiensemester_kurzbz="+stsem;
|
||||
else
|
||||
param ='';
|
||||
window.open('<?php echo APP_ROOT ?>content/statistik/stromanalyse.php'+param,'Stromanalyse');
|
||||
}
|
||||
|
||||
function StatistikPrintStudentExportExtended()
|
||||
{
|
||||
var tree = document.getElementById('student-tree');
|
||||
|
||||
@@ -238,4 +238,10 @@ function getTreeCellText(tree, col, idx)
|
||||
// ****
|
||||
String.prototype.trim = function() {
|
||||
return this.replace(/^\s+|\s+$/g,"");
|
||||
}
|
||||
}
|
||||
|
||||
// ****
|
||||
// * StartsWidth Member Function fuer Strings
|
||||
// ****
|
||||
String.prototype.startsWith = function(str)
|
||||
{return (this.match("^"+str)==str)}
|
||||
@@ -168,6 +168,10 @@
|
||||
<!ENTITY menu-statistic-studentendetails.label "Personendetails Excel">
|
||||
<!ENTITY menu-statistic-studentendetails.accesskey "P">
|
||||
|
||||
<!ENTITY menu-statistic-stromanalyse.key "S">
|
||||
<!ENTITY menu-statistic-stromanalyse.label "Stromanalyse">
|
||||
<!ENTITY menu-statistic-stromanalyse.accesskey "S">
|
||||
|
||||
<!-- Dokumente -->
|
||||
<!ENTITY menu-dokumente.label "Dokumente">
|
||||
<!ENTITY menu-dokumente.accesskey "D">
|
||||
|
||||
Reference in New Issue
Block a user