first commit

This commit is contained in:
aschwarz
2023-04-25 13:25:59 +02:00
commit 086d1e1e9e
1774 changed files with 396049 additions and 0 deletions

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/ermaessigung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3a40b414_39222634',
'file_dependency' =>
array (
'01eb22abcc1db312d1b9f4ca589b8955a2d0b402' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/ermaessigung.html',
1 => 1658378536,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3a40b414_39222634 ($_smarty_tpl) {
?>
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.min.js'><?php echo '</script'; ?>
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
margin-bottom: 5px;
}
.active, .accordion:hover {
background-color: #277DA8;
color: white;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
color: white;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Ermäßigungen <?php echo $_smarty_tpl->tpl_vars['erm_jahrgang']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erm_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erm_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erm_abschluss']->value == '0') {?>
<p>Indem Sie auf die Überschriften klicken können Sie die Teilbereiche auf- und zuklappen.</p>
<button class="accordion">1) Ruhestand während des Studienjahres</button>
<div class="panel">
<iframe src='erm_ruhestand.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">2) Forschungssemester/Praxissemester/Abordnungen</button>
<div class="panel">
<iframe src='erm_abordnung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">3) Schwerbehinderung</button>
<div class="panel">
<iframe src='erm_behinderung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">4) Teilzeit</button>
<div class="panel">
<iframe src='erm_teilzeit.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">5) Mutterschutz/Elternzeit</button>
<div class="panel">
<iframe src='erm_mutterschutz.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">6) Ermäßigung/Freistellung Rektorat/Dekanat (§§ 7, 8 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_rektorat_dekanat.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">7) Deputatsermäßigung aufgrund einer Funktion/Beauftragung (§ 11 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_funktion.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">8) Deputatsermäßigung aufgrund von Forschungs- und Entwicklungsaufgaben (§ 2 Abs. 8, 9 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_forschung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">9) Abweichender Lehrbedarf</button>
<div class="panel">
<iframe src='erm_abw_lehrbedarf.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">10) Krankheit</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<?php }?>
<br>
<br>
</div>
<?php echo '<script'; ?>
>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>iFrameResize({
log : false, // Enable console logging
heightCalculationMethod : 'documentElementOffset',
autoResize : true,
scrolling : true,
tolerance : 1000,
sizeHeight : true,
});<?php echo '</script'; ?>
>
</body>
</html><?php }
}

View File

@ -0,0 +1,82 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:45
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\menu_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b321876b87_36837632',
'file_dependency' =>
array (
'048dc9555eac9fdbacf2cb730d8717ea9d6d2344' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\menu_eingabe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b321876b87_36837632 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<h3><span>Erfassungsbereich</span></h3>
<ul>
<li class="abstand"><a href="jahrgang.php" target="eingabe_haupt"><span>1.) Studienjahr wählen</span></a></li>
<li class="abstand"><a href="ermaessigung.php" target="eingabe_haupt"><span>2.) Ermäßigungen</span></a></li>
<li class="abstand"><a href="erfassen_eingabe.php?new=1" target="eingabe_haupt"><span>3.) Deputate erfassen</span></a></li>
<li class="abstand"><a href="erfassen_sonstige.php" target="eingabe_haupt"><span>4.) Sonstige Deputate</span></a></li>
<li class="abstand"><a href="abschlussarbeiten.php" target="eingabe_haupt"><span>5.) Abschlussarbeiten</span></a></li>
<li class="abstand"><a href="jahresabschluss.php" target="eingabe_haupt"><span>6.) Jahresabschluss</span></a></li>
<li class="abstand"><a href="erfassen_status.php?id=1" target="eingabe_haupt"><span>Ausdruck</span></a></li>
</ul>
<!--
<h3><span onmousemove="if(document.searchform)document.searchform.patrone.focus();return false;">Suche nach ID</span></h3>
<ul>
<li class="abstand"> <input class="eingabe_search" type="text" id="suchid" name="suchid" onkeyup="ajax_showOptions(this,'getWord',event)"></li>
<p align="right"><input type="submit" value="suche" name="b1" /></p> <!-- Auf Button kann verzichtet werden
</ul>
-->
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,83 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-28 14:04:02
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/menu_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62e27b32399598_40083610',
'file_dependency' =>
array (
'0604a69f128a80df368d8ed2e6788c4d3efc77c4' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/menu_eingabe.html',
1 => 1659009819,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62e27b32399598_40083610 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<h3><span>Erfassungsbereich</span></h3>
<ul>
<li class="abstand"><a href="jahrgang.php" target="eingabe_haupt"><span>1.) Studienjahr wählen</span></a></li>
<li class="abstand"><a href="ermaessigung.php" target="eingabe_haupt"><span>2.) Ermäßigungen</span></a></li>
<li class="abstand"><a href="erfassen_eingabe.php?new=1" target="eingabe_haupt"><span>3.) Deputate erfassen</span></a></li>
<li class="abstand"><a href="erfassen_sonstige.php" target="eingabe_haupt"><span>4.) Sonstige Deputate</span></a></li>
<li class="abstand"><a href="krankheit.php" target="eingabe_haupt"><span>5.) Längere Krankheit</span></a></li>
<li class="abstand"><a href="abschlussarbeiten.php" target="eingabe_haupt"><span>6.) Abschlussarbeiten</span></a></li>
<li class="abstand"><a href="jahresabschluss.php" target="eingabe_haupt"><span>7.) Jahresabschluss</span></a></li>
<li class="abstand"><a href="erfassen_status.php?id=1" target="eingabe_haupt"><span>Ausdruck</span></a></li>
</ul>
<!--
<h3><span onmousemove="if(document.searchform)document.searchform.patrone.focus();return false;">Suche nach ID</span></h3>
<ul>
<li class="abstand"> <input class="eingabe_search" type="text" id="suchid" name="suchid" onkeyup="ajax_showOptions(this,'getWord',event)"></li>
<p align="right"><input type="submit" value="suche" name="b1" /></p> <!-- Auf Button kann verzichtet werden
</ul>
-->
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,182 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:44:28
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\freischaltung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab91fcc25b39_43029372',
'file_dependency' =>
array (
'09c365e9363209630a38920452fd9d0dc5e8ff3e' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\freischaltung.html',
1 => 1521021772,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab91fcc25b39_43029372 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['access_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Dozenten hinzufügen (Diese können sich am System anmelden)</b>
</legend>
<br />
<br />
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['access_mitgl_ausw']->value;?>
</strong>
</td>
<td>
<select size="10" name="dozent">
<!--
<option value="">Bitte ausw&auml;hlen</option>
-->
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['uid'];?>
"><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['vorname'];?>
&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<td width=40<?php echo '%>';?>
&nbsp;
</td>
<td>
<input type="submit" name="senden" value="Dozent hinzuf&uuml;gen">
</td>
</tr>
<tr>
</table>
<br />
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Dozenten im System</b>
</legend>
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=15<?php echo '%>';?>
<b>Anrede</b>
</td>
<td width=15<?php echo '%>';?>
<b>Name</b>
</td>
<td width=15<?php echo '%>';?>
<b>Vorname</b>
</td>
<td width=15<?php echo '%>';?>
<b>Benutzerkennung</b>
</td>
<td width=15<?php echo '%>';?>
<b>Fakultät</b>
</td>
<td width=15<?php echo '%>';?>
<b>L&ouml;schen</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td width=15<?php echo '%>';?>
<iframe src='ch_anrede.php?imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
' scrolling='no' marginheight='0' marginwidth='0' height='25' frameborder='0'></iframe>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nachname'];?>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['vorname'];?>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['uid'];?>
</td>
<td width=15<?php echo '%>';?>
<iframe src='ch_fakultaet.php?imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
' scrolling='no' marginheight='0' marginwidth='0' height='25' frameborder='0'></iframe>
</td>
<td width=15<?php echo '%>';?>
<a href="?action=del&imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
"><img title = 'Dozent l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
</table>
</fieldset>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_forschung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ac7e9e4_11314134',
'file_dependency' =>
array (
'0dddb66528030c9a11c7b96a258999a643698e2e' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_forschung.html',
1 => 1656405946,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ac7e9e4_11314134 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,433 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:56:46
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\abschlussarbeiten.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_6298430e891475_15712244',
'file_dependency' =>
array (
'0f666404f4bef42d1bc1d442f008d07b43fa1202' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\abschlussarbeiten.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_6298430e891475_15712244 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>
function felder_einblenden() {
/* Bei Master darf eine Betreuungspauschle eingegeben werden */
if (document.getElementById("kaid").value == "2") {
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).show();
$("#" + id2).hide();
});
//]]>
}else{
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).hide();
$("#" + id2).show();
});
//]]>
}
}
<?php echo '</script'; ?>
>
</head>
<body onload="felder_einblenden();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['abschluss_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['abschluss_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abschluss_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['abschluss_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Abschlussarbeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="20%" height="25">
Name des Studierenden
</td>
<td valign="top">
<input type="text" name="name" id="name" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_name']->value;?>
">
</td>
</tr>
<tr>
<td width="20%" height="39">
Art der Abschlussarbeit
</td>
<td valign="top">
<select name="kaid" id="kaid" size=2 onchange='felder_einblenden();'>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid'];?>
" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_kaid']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr id="pauschaleblock1">
<td width="20%" height="25">
Betreuungspauschale (LVS)
</td>
<td valign="top">
<input type="text" class="spinner" name="pauschale" id="pauschale" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_pauschale']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="pauschaleblock2">
<td width="20%" height="25">
&nbsp;
</td>
<td valign="top">
&nbsp;
</td>
</tr>
<tr>
<td width="20%" height="25">
Semester
</td>
<td valign="top">
<select name="semester" id="semester" size=2>
<option value="WS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "WS") {?> selected <?php }?> >Wintersemester</option>
<option value="SS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "SS") {?> selected <?php }?> >Sommersemester</option>
</select>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<br>
<table width="70%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Es können höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_arbeiten']->value;?>
Abschlussarbeiten pro Semester erfasst werden.</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Wintersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ws_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Sommersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ss_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,62 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:12
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/hauptframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b670c02e01_90885180',
'file_dependency' =>
array (
'1002c6e80a3b99c2ce984cf946c69880ce0fc00b' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/hauptframe.html',
1 => 1523279530,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b670c02e01_90885180 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_text1']->value;?>
<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value+1;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,80 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:15
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/jahrgang.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b6733ea5c6_29567260',
'file_dependency' =>
array (
'1737584bde5dceaf44bccc0a6e1015da2a0e8e49' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/jahrgang.html',
1 => 1561639084,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b6733ea5c6_29567260 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jahrgang_titel']->value;?>
</div>
</div>
</div>
<form action=?action=jahr method="POST">
<div class="pat_list_box">
<p align="center">
<select size="5" name="jahr">
<?php
$_from = $_smarty_tpl->tpl_vars['jahrgang']->value;
if (!is_array($_from) && !is_object($_from)) {
settype($_from, 'array');
}
$__foreach_aktuellerjahrgang_0_saved_item = isset($_smarty_tpl->tpl_vars['aktuellerjahrgang']) ? $_smarty_tpl->tpl_vars['aktuellerjahrgang'] : false;
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = new Smarty_Variable();
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = false;
foreach ($_from as $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = true;
$__foreach_aktuellerjahrgang_0_saved_local_item = $_smarty_tpl->tpl_vars['aktuellerjahrgang'];
?>
<option value='<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
' <?php if ($_smarty_tpl->tpl_vars['aktuellerjahrgang']->value == $_smarty_tpl->tpl_vars['jahrgang_cur_jahrgang']->value) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value+1;?>
&nbsp;&nbsp;</option>
<?php
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_local_item;
}
if ($__foreach_aktuellerjahrgang_0_saved_item) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_item;
}
?>
</select>
<br>
<br>
<input type="submit" value="Abschicken" name="B1"> </p>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,416 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-13 08:45:28
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_freist_rektorat_dekanat.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d7b3b081d1c30_80129803',
'file_dependency' =>
array (
'1bba41cd56a02be8ccd960f01fafed0ff4c560cf' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_freist_rektorat_dekanat.html',
1 => 1568357121,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d7b3b081d1c30_80129803 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
> <?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,295 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_behinderung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ab5aa37_56725878',
'file_dependency' =>
array (
'1caee6addfeb34afebcc0bf7a58194d1a40742c1' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_behinderung.html',
1 => 1656339888,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ab5aa37_56725878 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['beh_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['beh_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Höhe der prozentualen Ermäßigung</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Höhe der Ermäßigung in Prozent angeben.<br>
(Von der Personalabteilung gewährte Höhe)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
"> %-->
<input type="text" class="spinner" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"> %
</td>
</tr>
<tr>
<td>
Beginn der Ermäßigung
</td>
<td>
<input type="text" class="datepicker" name="beginn_behinderung" id="beginn_behinderung" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_beginn']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine Schwerbehinderung wird monatsgenau gewährt.</li>
<li>Nimmt eine Ermäßigung der Schwerbehinderung zu bzw. ab, ist die Ermäßigung auf Monatsersten zu erfassen.</li>
<li>Die prozentulae Ermäßigung wird mit der LVS verrechnet (594LVS x 12% Ermäßigung aufgrund Behinderung => 522,72 Soll-LVS).</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['behinderungsgrad'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Ermäßigung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,295 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 16:24:55
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_behinderung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9bdb74a9ed4_28355870',
'file_dependency' =>
array (
'2775f215a21e80ac664dca97737ca805a207b729' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_behinderung.html',
1 => 1656339889,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9bdb74a9ed4_28355870 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['beh_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['beh_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Höhe der prozentualen Ermäßigung</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Höhe der Ermäßigung in Prozent angeben.<br>
(Von der Personalabteilung gewährte Höhe)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
"> %-->
<input type="text" class="spinner" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"> %
</td>
</tr>
<tr>
<td>
Beginn der Ermäßigung
</td>
<td>
<input type="text" class="datepicker" name="beginn_behinderung" id="beginn_behinderung" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_beginn']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine Schwerbehinderung wird monatsgenau gewährt.</li>
<li>Nimmt eine Ermäßigung der Schwerbehinderung zu bzw. ab, ist die Ermäßigung auf Monatsersten zu erfassen.</li>
<li>Die prozentulae Ermäßigung wird mit der LVS verrechnet (594LVS x 12% Ermäßigung aufgrund Behinderung => 522,72 Soll-LVS).</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['behinderungsgrad'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Ermäßigung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,182 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-15 14:22:03
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/freischaltung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dcea67b3ad4e7_88391242',
'file_dependency' =>
array (
'2b0c8a07fa8c2b6c01ef339cb420b2176d0f7172' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/freischaltung.html',
1 => 1521021772,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dcea67b3ad4e7_88391242 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['access_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Dozenten hinzufügen (Diese können sich am System anmelden)</b>
</legend>
<br />
<br />
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['access_mitgl_ausw']->value;?>
</strong>
</td>
<td>
<select size="10" name="dozent">
<!--
<option value="">Bitte ausw&auml;hlen</option>
-->
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['uid'];?>
"><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['vorname'];?>
&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<td width=40<?php echo '%>';?>
&nbsp;
</td>
<td>
<input type="submit" name="senden" value="Dozent hinzuf&uuml;gen">
</td>
</tr>
<tr>
</table>
<br />
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Dozenten im System</b>
</legend>
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=15<?php echo '%>';?>
<b>Anrede</b>
</td>
<td width=15<?php echo '%>';?>
<b>Name</b>
</td>
<td width=15<?php echo '%>';?>
<b>Vorname</b>
</td>
<td width=15<?php echo '%>';?>
<b>Benutzerkennung</b>
</td>
<td width=15<?php echo '%>';?>
<b>Fakultät</b>
</td>
<td width=15<?php echo '%>';?>
<b>L&ouml;schen</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td width=15<?php echo '%>';?>
<iframe src='ch_anrede.php?imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
' scrolling='no' marginheight='0' marginwidth='0' height='25' frameborder='0'></iframe>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nachname'];?>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['vorname'];?>
</td>
<td width=15<?php echo '%>';?>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['uid'];?>
</td>
<td width=15<?php echo '%>';?>
<iframe src='ch_fakultaet.php?imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
' scrolling='no' marginheight='0' marginwidth='0' height='25' frameborder='0'></iframe>
</td>
<td width=15<?php echo '%>';?>
<a href="?action=del&imtuid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['imtuid'];?>
"><img title = 'Dozent l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
</table>
</fieldset>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,287 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_teilzeit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ab30778_39042746',
'file_dependency' =>
array (
'30472568dadb7d9d426587cc8fcdf8d5004f9f2c' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_teilzeit.html',
1 => 1657864750,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ab30778_39042746 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['tz_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['tz_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Teilzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Prozent
</td>
<td valign="top">
<select size="1" id='umfang' name='umfang'>
<option value="1.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "1.00") {?> selected <?php }?>>100&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.95" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.95") {?> selected <?php }?>>95&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.90" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.90") {?> selected <?php }?>>90&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.85" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.85") {?> selected <?php }?>>85&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.80" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.80") {?> selected <?php }?>>80&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.75" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.75") {?> selected <?php }?>>75&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.70" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.70") {?> selected <?php }?>>70&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.65" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.65") {?> selected <?php }?>>65&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.60" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.60") {?> selected <?php }?>>60&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.55" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.55") {?> selected <?php }?>>55&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.50" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.50") {?> selected <?php }?>>50&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.45" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.45") {?> selected <?php }?>>45&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.40" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.40") {?> selected <?php }?>>40&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.35" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.35") {?> selected <?php }?>>35&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.30" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.30") {?> selected <?php }?>>30&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.25" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.25") {?> selected <?php }?>>25&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.20" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.20") {?> selected <?php }?>>20&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.15" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.15") {?> selected <?php }?>>15&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.10" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.10") {?> selected <?php }?>>10&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.05" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.05") {?> selected <?php }?>>5&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.00") {?> selected <?php }?>>0&nbsp;%&nbsp;&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Beginn der Teilzeit
</td>
<td>
<input type="text" class="datepicker" name="beginn_teilzeit" id="beginn_teilzeit" value="<?php echo $_smarty_tpl->tpl_vars['tz_value_beginn']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine ältere Teilzeit endet dann, wenn eine neue Teilzeit erfasst wird.</li>
<li>Es wird immer der Monatserste als Beginntag festgelegt!</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Teilzeit</b>
</legend>
<br>
<b>Basiswert der Lehrveranstaltungsstunden in diesem Studienjahr: <?php echo $_smarty_tpl->tpl_vars['tz_baselvs']->value;?>
</b>
<br>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['prozent'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Teilzeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="2">&nbsp;</td>
<td align="right">EVTL FALSCH. Reihenfolge für Abzüge berücksichtigen. Haug 25.7.19<b>Lehrveranstaltungsstunden: <?php echo $_smarty_tpl->tpl_vars['tz_value_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 07:40:09
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_freist_funktion.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bbe5b90cd454_62297206',
'file_dependency' =>
array (
'31f32d36c21f2f7a61e7ecad517e440dd24d48a0' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_freist_funktion.html',
1 => 1656405400,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bbe5b90cd454_62297206 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,733 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-06 13:38:21
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erfassen_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc2bebdcfc9d8_10338042',
'file_dependency' =>
array (
'3298107f941b705098acff2041b61663d59aa5f3' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erfassen_eingabe.html',
1 => 1573043846,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc2bebdcfc9d8_10338042 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="erfassen_eingabe.js"><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body onload="show('<?php echo $_smarty_tpl->tpl_vars['erf_value_gemlv']->value;?>
','<?php echo $_smarty_tpl->tpl_vars['erf_value_art']->value;?>
', '<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_tage']->value;?>
');">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erf_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erf_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erf_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erf_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?><font color="red">* <?php }?>Studiengang<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?></font><?php }?>
</td>
<td>
<select name="studiengang" id="studiengang" size=5 onchange="fetch_select();">
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_studiengang']->value == $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?><font color="red">* <?php }?>Art der LV<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
</select>
<!-- Bei Master soll nur Vorlesung zur Auswahl angeboten werden-->
<select name="art" id="art2" size=5 onchange="einblenden();">
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == 1) {?> selected <?php }?> >Vorlesung</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?><font color="red">* <?php }?>Titel der Lehrveranstaltung (LV)<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
">
<select id='module' name='module' onchange="fetch_select2();"></select>
<select id='schwerpunkt' name='schwerpunkt' onchange="fetch_schwerpunkt2();"></select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="anz_agtage">
<td width="30%">
Anzahl der Arbeitsgemeinschaften (AG)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<select id='anz_ag' name='anz_ag' onchange="fetch_anzahl();">
<option value='1' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '1') {?> selected <?php }?>>1</option>
<option value='2' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '2') {?> selected <?php }?>>2</option>
<option value='3' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '3') {?> selected <?php }?>>3</option>
<option value='4' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '4') {?> selected <?php }?>>4</option>
<option value='5' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '5') {?> selected <?php }?>>5</option>
<option value='6' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '6') {?> selected <?php }?>>6</option>
<option value='7' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '7') {?> selected <?php }?>>7</option>
<option value='8' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '8') {?> selected <?php }?>>8</option>
<option value='9' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '9') {?> selected <?php }?>>9</option>
<option value='10' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '10') {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="extracurr">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Extracurricularer Klausurenkurs</b><br>
<ul>
<li>Es dürfen höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_extracur']->value;?>
Lehrstunden (LVS) pro <?php echo $_smarty_tpl->tpl_vars['abschluss_einheit_max_extracur']->value;?>
erfasst werden.</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
<tr>
<td width="30%">Krankheitsbedingte Merkmale
</td>
<td><label for="krankheit1"><input type="radio" name="krankheit" id="krankheit1" value="0" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 0) {?> checked <?php }?> onclick="func_krankheit(1);"> keine</label><br>
<label for="krankheit2"><input type="radio" name="krankheit" id="krankheit2" value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 1) {?> checked <?php }?> onclick="func_krankheit(2);"> Lehrveranstaltung übernommen</label><br>
<label for="krankheit3"><input type="radio" name="krankheit" id="krankheit3" value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 2) {?> checked <?php }?> onclick="func_krankheit(3);"> Lehrveranstaltung nachgeholt</label>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
</table>
<fieldset id="teachingblock_field">
<legend>Teamteaching</legend>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr id="teachingblock0">
<td width="30%">
gemeinsame&nbsp;LV
</td>
<td valign="top">
<select name="gemlv" id="gemlv" onchange='felder_aktiv(0);' size=2>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock1">
<td width="30%">
fachübergreifende&nbsp;LV
</td>
<td valign="top">
<select name="fachlv" id="fachlv" disabled size=2 onchange='felder_aktiv(1);'>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock2">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Anzahl der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="anzgemlv" id="anzgemlv" disabled>
<option value="">Anzahl der Lehrenden</option>
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "1") {?> selected <?php }?>>1</option>
<option value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "2") {?> selected <?php }?>>2</option>
<option value="3" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "3") {?> selected <?php }?>>3</option>
<option value="4" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "4") {?> selected <?php }?>>4</option>
<option value="5" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "5") {?> selected <?php }?>>5</option>
<option value="6" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "6") {?> selected <?php }?>>6</option>
<option value="7" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "7") {?> selected <?php }?>>7</option>
<option value="8" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "8") {?> selected <?php }?>>8</option>
<option value="9" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "9") {?> selected <?php }?>>9</option>
<option value="10" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "10") {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr id="teachingblock3">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?><font color="red">* <?php }?>Namen der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<textarea name="namegemlv" id="namegemlv" disabled><?php echo $_smarty_tpl->tpl_vars['erf_value_namegemlv']->value;?>
</textarea>
</td>
</tr>
<tr id="teachingblock5">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Basiswert (LVS) der LV<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onchange='gesvol_calc();'>-->
<!-- onchange='gesvol_calc();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="teachingblock4">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?><font color="red">* <?php }?>Teachingfaktor<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="teamteaching" id="teamteaching" disabled size="5" onchange='gesvol_calc();'>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_teamteaching']->value == $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">
&nbsp;
</td>
<td>
&nbsp;
</td>
</tr>
<tr id="teachingblock_hinw">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Gesamtvolumen</b><br>
<ul>
<li>Der Teachingfaktor gibt vor, zu wieviel Prozent einer Lehrveranstaltung Lehrende gemeinsam lehren dürfen.</li>
<li>Bei einem Faktor von 0,5 dürfen also bis zu 50 % einer Veranstaltung von zwei Lehrenden miteinander gestaltet werden.</li>
<li>Bsp: Sind für ein Fachprojekt 56 LVS vorgesehen, gilt der Faktor 0,5.<br>
Das bedeutet, dass höchstens 28 LVS gemeinsam gestaltet werden dürfen.<br>
Daraus resultiert ein Gesamtvolumen von 56 LVS + (0,5 Faktor x 56 LVS) = 84 LVS.<br>
Das Gesamtvolumen steht den beiden Dozierenden zur Aufteilung (nach eigenem Ermessen) zu.<br>
Der einzelne Dozent darf sich aber nicht mehr als 56 LVS zurechnen
</li>
<li>Der Basiswert dient nur zur Berechnung des Gesamtvolumens.<br>Die tatsächliche LVS bitte in das Feld "Summe eigene Lehrstunden" eintragen!</li>
</ul>
<div style="float: left;">Aktuelles Gesamtvolumen:&nbsp;</div>
<div style="float: left;" id="gesamtvolumen_count"></div>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
</fieldset>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="exkursion1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?><font color="red">* <?php }?>Exkursionsstunden<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<label for="tage_exkursion1"><input type="radio" name="tage_exkursion" id="tage_exkursion1"value="1" checked onclick="senden_aktiv();"> Eintägig</label><br>
<table>
<tr>
<td width=200><b>Datum:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon1"value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br><br>
<label for="tage_exkursion2"><input type="radio" name="tage_exkursion" id="tage_exkursion2" value="2" onclick="senden_aktiv();"> Mehrtägig</label><br>
<table>
<tr>
<td width=200><b>Datum von:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Datum bis:</b></td>
<td><input type="text" class="datepicker" name="exk_datumbis" id="exk_datumbis2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumbis']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden Anreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
<tr>
<td width=200><b>Stunden Abreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br>
<table width="80%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Die Stunden werden mit dem Faktor <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_faktor']->value;?>
multipliziert, um die LVS zu erhalten.</li>
<li>Tageshöchstsatz liegt bei 10 Std. Das entspricht <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS.</li>
<li>Ganze Tage werden mit dem Höchstsatz <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS berechnet.</li>
<li>Bei mehrtägigen Exkursionen: Geben Sie immer die Stunden am Anreise- und Abreisetag an, <font color="red"<b>sonst werden diese Tage nicht berechnet!</b></font></li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
<tr id="lehrstd1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?><font color="red">* <?php }?>Summe eigene Lehrstunden (LVS)<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
<input type="hidden" name="std_default" id="std_default" size="101">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erf_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td width=15<?php echo '%>';?>
<b>Studiengang (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td width=20<?php echo '%>';?>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene<br>Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_3_total = $__section_table_data2_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_3_total != 0) {
for ($__section_table_data2_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_3_iteration <= $__section_table_data2_3_total; $__section_table_data2_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['studiengang'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['std'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>&nbsp;<a href="?action=del&did=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_3_saved;
}
?>
<tr>
<td colspan="6">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,433 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 17:15:16
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\abschlussarbeiten.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9c9842dbb44_29249872',
'file_dependency' =>
array (
'345bdd93d869b31aec5b71220e4fb057aa2f5585' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\abschlussarbeiten.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9c9842dbb44_29249872 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>
function felder_einblenden() {
/* Bei Master darf eine Betreuungspauschle eingegeben werden */
if (document.getElementById("kaid").value == "2") {
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).show();
$("#" + id2).hide();
});
//]]>
}else{
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).hide();
$("#" + id2).show();
});
//]]>
}
}
<?php echo '</script'; ?>
>
</head>
<body onload="felder_einblenden();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['abschluss_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['abschluss_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abschluss_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['abschluss_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Abschlussarbeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="20%" height="25">
Name des Studierenden
</td>
<td valign="top">
<input type="text" name="name" id="name" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_name']->value;?>
">
</td>
</tr>
<tr>
<td width="20%" height="39">
Art der Abschlussarbeit
</td>
<td valign="top">
<select name="kaid" id="kaid" size=2 onchange='felder_einblenden();'>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid'];?>
" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_kaid']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr id="pauschaleblock1">
<td width="20%" height="25">
Betreuungspauschale (LVS)
</td>
<td valign="top">
<input type="text" class="spinner" name="pauschale" id="pauschale" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_pauschale']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="pauschaleblock2">
<td width="20%" height="25">
&nbsp;
</td>
<td valign="top">
&nbsp;
</td>
</tr>
<tr>
<td width="20%" height="25">
Semester
</td>
<td valign="top">
<select name="semester" id="semester" size=2>
<option value="WS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "WS") {?> selected <?php }?> >Wintersemester</option>
<option value="SS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "SS") {?> selected <?php }?> >Sommersemester</option>
</select>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<br>
<table width="70%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Es können höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_arbeiten']->value;?>
Abschlussarbeiten pro Semester erfasst werden.</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Wintersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ws_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Sommersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ss_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,103 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:52:07
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\logout.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab93c72eb0c1_12133556',
'file_dependency' =>
array (
'347a4e682ce53e8effd76310ed0169aad045dd46' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\logout.html',
1 => 1520417784,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab93c72eb0c1_12133556 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['logout_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['logout_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="100%" align="center">
<strong><?php echo $_smarty_tpl->tpl_vars['logout_text']->value;?>
</strong>
</td>
</tr>
<tr>
<td width="100%" align="center">
&nbsp;
</td>
</tr>
<tr>
<td align="center">
<a class="squarebutton_blue" href="index.php" target="_self"><span>Login</span></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,111 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:44:24
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\titel.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab91f807d839_73769182',
'file_dependency' =>
array (
'36f10f357b07aeb497a9007bbb85b357b1187f67' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\titel.html',
1 => 1520413432,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab91f807d839_73769182 ($_smarty_tpl) {
?>
<html>
<head>
<title>Testseite</title>
<meta name="generator" content="Namo WebEditor">
<base target="detail">
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
<?php echo '</script'; ?>
>
</head>
<style type="text/css">
body {
background-image: url("templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/backgr/ground.png");
background-repeat: repeat-x;
background-position: left -1614px;
}
</style>
<body>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="250" height="60" valign="top">
<h2>Deputatverwaltung</h2>
</td>
<td width="73">&nbsp;</td>
<td width="159">&nbsp;</td>
<td width="71">&nbsp;</td>
<td width="2%">&nbsp;</td>
<td width="">&nbsp;</td>
<td width="157" valign="top">
<p align="right"><a class="navbar" href="logout.php" target="_parent">Logout</a></p>
</td>
<td width="25">&nbsp;</td>
</tr>
</table>
<div id="filltab" class="animatedtabs">
<ul>
<li><a href="eingabe_frame.php" selected><span>Eingabebereich</span></a></li>
<?php if ($_smarty_tpl->tpl_vars['titel_admin']->value == '1') {?>
<li><a href="admin_frame.php" ><span>Adminbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_ausschuss']->value == '1') {?>
<li><a href="ausschuss_frame.php" ><span>Ausschussbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_beteiligte']->value == '1') {?>
<li><a href="beteiligte_frame.php" ><span>Beteiligtenbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_gutachter']->value == '1') {?>
<li><a href="gutachter_frame.php" ><span>Gutachterbereich</span></a></li>
<?php }?>
<!--
<li><a href="link.php"><span>Gutachterbereich</span></a></li>
<li><a href="link.php"><span>Beteiligtenbereich</span></a></li>
<li><a href="link.php"><span>Ausschussbereich</span></a></li>
-->
</ul>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,44 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:42:05
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\eingabe_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f9de209b9_07468097',
'file_dependency' =>
array (
'374623944c6a14cc18e198f9745a709421b2a18a' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\eingabe_frame.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f9de209b9_07468097 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_eingabe" scrolling="auto" marginwidth="10" marginheight="14" src="menu_eingabe.php">
<frame name="eingabe_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="jahrgang.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,419 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-28 14:06:27
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/krankheit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62e27bc36499e6_00908910',
'file_dependency' =>
array (
'39b78d59d1632c26b8c8c78f10c3614b33f49c4c' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/krankheit.html',
1 => 1659009971,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62e27bc36499e6_00908910 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<!--
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_krankheit = document.getElementById('beginn_krankheit').value;
var ende_krankheit = document.getElementById('ende_krankheit').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_krankheit: beginn_krankheit,
get_ende_krankheit: ende_krankheit
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['krank_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body>
<br>
<br>
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['krank_titel']->value;?>
</div>
</div>
</div>
<form action="?action=save" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['krank_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['krank_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Beginn des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_krankheit" id="beginn_krankheit" value="<?php echo $_smarty_tpl->tpl_vars['krank_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_krankheit" id="beginn_krankheit" value="<?php echo $_smarty_tpl->tpl_vars['krank_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_krankheit" id="ende_krankheit" value="<?php echo $_smarty_tpl->tpl_vars['krank_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_krankheit" id="ende_krankheit" value="<?php echo $_smarty_tpl->tpl_vars['krank_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweise zu längerer Krankheit</b><br>
<ul>
<li>Längere Krankheitstage sind Krankheitstage größer 28 Tage am Stück</li>
<li>Die Krankheitstage müssen innerhalb der Vorlesungszeit liegen</li>
<li>Erfasst wird ein Zeitraum inklusive Wochenende</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Krankheitstage</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<!--
<td>
<b>Funktion</b>
</td>
-->
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<!--
<td align="right">
<b>Ermäßigung SWS</b>
</td>
-->
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
-->
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&krid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['krank_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</div>
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,80 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:45
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\jahrgang.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b3217e8ae4_52069589',
'file_dependency' =>
array (
'39fd4dce536474ceb379cc16b71465f1d467c2ba' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\jahrgang.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b3217e8ae4_52069589 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jahrgang_titel']->value;?>
</div>
</div>
</div>
<form action=?action=jahr method="POST">
<div class="pat_list_box">
<p align="center">
<select size="5" name="jahr">
<?php
$_from = $_smarty_tpl->tpl_vars['jahrgang']->value;
if (!is_array($_from) && !is_object($_from)) {
settype($_from, 'array');
}
$__foreach_aktuellerjahrgang_0_saved_item = isset($_smarty_tpl->tpl_vars['aktuellerjahrgang']) ? $_smarty_tpl->tpl_vars['aktuellerjahrgang'] : false;
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = new Smarty_Variable();
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = false;
foreach ($_from as $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = true;
$__foreach_aktuellerjahrgang_0_saved_local_item = $_smarty_tpl->tpl_vars['aktuellerjahrgang'];
?>
<option value='<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
' <?php if ($_smarty_tpl->tpl_vars['aktuellerjahrgang']->value == $_smarty_tpl->tpl_vars['jahrgang_cur_jahrgang']->value) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value+1;?>
&nbsp;&nbsp;</option>
<?php
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_local_item;
}
if ($__foreach_aktuellerjahrgang_0_saved_item) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_item;
}
?>
</select>
<br>
<br>
<input type="submit" value="Abschicken" name="B1"> </p>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,46 @@
<?php
/* Smarty version 3.1.29, created on 2019-06-27 13:12:15
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\admin_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d14a48f74b106_57775178',
'file_dependency' =>
array (
'3aa0ca45f68dd071b8eaf6c7cdd725ef10c3c0ca' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\admin_frame.html',
1 => 1561633111,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d14a48f74b106_57775178 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_admin" scrolling="auto" marginwidth="10" marginheight="14" namo_target_frame="detail" src="menu_admin.php" />
<frame name="admin_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe_admin.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,320 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-05 11:07:59
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_mutterschutz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d70d06f830a84_17659709',
'file_dependency' =>
array (
'3e23f94cdba4d8de253e863b4831f922cbd6c703' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_mutterschutz.html',
1 => 1567674437,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d70d06f830a84_17659709 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_muschu() {
/*
Diese Funktion berechnet die LVS
*/
var sws = 1;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_mutterschutz.php',
data: {
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['muschu_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_muschu, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['muschu_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['muschu_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Mutterschutz/Elternzeit/Pflegezeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<td>
Beginn des Mutterschutzes / der Elternzeit / Pflegezeit
</td>
<td>
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumvon']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Mutterschutzes / der Elternzeit / Pflegezeit
</td>
<td>
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumbis']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: LVS-(Anzahl der Mutterschutztage / Anzahl der Tage im Jahr x LVS)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Mutterschutzeit / Elternzeit / Pflegezeit</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['art'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['muschu_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,112 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-15 10:57:20
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\menu_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d12bf0cc33b5_47425129',
'file_dependency' =>
array (
'3f759d3f1692eb1a9fe8d745a4ae9b60634f2476' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\menu_admin.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d12bf0cc33b5_47425129 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list_admin.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Bearbeitung</span></h3>
<ul>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</ul>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Administration</span></h3>
<ul>
<?php
$__section_table_data3_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_1_total = $__section_table_data3_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_1_total != 0) {
for ($__section_table_data3_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_1_iteration <= $__section_table_data3_1_total; $__section_table_data3_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data3_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_1_saved;
}
?>
</ul>
<?php }?>
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,198 @@
<?php
/* Smarty version 3.1.29, created on 2019-07-25 07:37:58
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\behinderung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d394036c7f0e3_94448355',
'file_dependency' =>
array (
'409d878e394256c48c7dd91598dbbe8e407c930c' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\behinderung.html',
1 => 1564033069,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d394036c7f0e3_94448355 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="jquery/jquery-1.9.1.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['beh_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['beh_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Behinderungsgrad erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
behinderungsgrad der Behinderung
</td>
<td valign="top">
<input type="number" step="0.1" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
"> %
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine Schwerbehinderung wird rückwirkend auf das Studienjahr gewährt.</li>
<li>Der Behinderungsgrad wird mit der LVS verrechnet (594LVS x 50% Behinderung = 297 LVS neu)</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasster Behinderungsgrad</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>behinderungsgrad</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['behinderungsgrad'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Behinderungsgrad bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Behinderungsgrad l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,824 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:57
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/jahresabschluss.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb5dc571b3_51266393',
'file_dependency' =>
array (
'43a2dcac68acd6dece6d74de95c4f9d65b3897f0' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/jahresabschluss.html',
1 => 1657878114,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb5dc571b3_51266393 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<style type='text/css'>
.nextprev:link, .nextprev:visited {
background-color: #D6DFF7;
color: black;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
.nextprev:active, .nextprev:hover {
background-color: #6487DC;
color: #FFFFFF;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jaabschl_titel']->value;?>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['jaabschl_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_error_text']->value;?>
</td>
</tr>
</table>
<?php }?>
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="5" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Hinweis</b>
</td>
<td>
<b>Beginn</b>
</td>
<td>
<b>Ende</b>
</td>
<td align="right">
<b>Berechnungszeitraum</b>
</td>
<td>
<b>SWS</b>
</td>
<td align="right">
<b>Ermäßigung in LVS</b>
</td>
<td align="right" width="20%">
<b>Berechnung (Soll-LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
)</b>
</td>
<tr>
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] = $__section_table_data0_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['art'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['hinweis'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['beginn_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ende_form'];?>
</td>
<td align="right">
<?php if ($_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['monate'] > 0) {?>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['monate'];?>
Monat(e)
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['tage'] > 0) {?>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['tage'];?>
Tag(e)
<?php }?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['sws'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['anz_lvs'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['cur_lvs'];?>
- <?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ber_lvs'];?>
= <?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['erg_lvs'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
</tr>
<tr>
<td colspan="7" rowspan=2>&nbsp;</td>
<td align="right">
<b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
</b>
</td>
<td align="right">
<font color="red"><b>Zu leistende LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_zu_leisten']->value;?>
</b></font><br>
<i><small>(Rechenweg: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
- <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
)</small></i>
</td>
</tr>
<tr>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
</td>
<tr>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] = $__section_table_data1_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['std'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Sonstige Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Name</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Semester</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td width="20%">
&nbsp;
</td>
<tr>
<?php
$__section_table_data3_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_3_total = $__section_table_data3_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_3_total != 0) {
for ($__section_table_data3_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_3_iteration <= $__section_table_data3_3_total; $__section_table_data3_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_3_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Gesamtbetrachtung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
Erfasste Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Sonstige Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Erfasste Abschlussarbeiten
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
<b>Jahressumme</b>
</td>
<td align="right" width="20%">
<b><?php echo $_smarty_tpl->tpl_vars['abschluss_gesamt']->value;?>
</b>
</td>
<td width="20%">&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Synopse <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Anfangsstand</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres</b>
</td>
<td>
<b>Übertrag Folgejahr</b>
</td>
</tr>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_endwert_vorjahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_soll']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_ist']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_uber_unter_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_abbau_jahr']->value;?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_verfall_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_verfall']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt_nach_verfall']->value;?>
</td>
</tr>
<tr>
<td colspan=10>
<br>
<b>Veränderungen der Vorjahre durch das aktuelle Jahr</b>
</td>
</tr>
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Jahresendstand bisher</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres alt</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres neu</b>
</td>
</tr>
<?php
$__section_table_data4_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4'] : false;
$__section_table_data4_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data4']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data4_4_total = $__section_table_data4_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = new Smarty_Variable(array());
if ($__section_table_data4_4_total != 0) {
for ($__section_table_data4_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] = 0; $__section_table_data4_4_iteration <= $__section_table_data4_4_total; $__section_table_data4_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['vorjahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt_nach_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['soll'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['ist'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['uber_unter_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['differenz'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['endwert'];?>
</td>
</tr>
<?php
}
}
if ($__section_table_data4_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = $__section_table_data4_4_saved;
}
?>
<tr>
</table>
</fieldset>
<br>
<?php if ($_smarty_tpl->tpl_vars['jaabschl_closed']->value == 0) {?>
<table valign='middle' style='border-top: 2px solid #6487DC; border-bottom: 2px solid #6487DC;' width='100%' align='center' border='0' cellpadding='0' cellspacing='0'>
<tbody>
<tr>
<td valign='middle' width='100%' height='30px' class='nextprev'>
<a href='?action=abschluss' class='nextprev'><font size='3'>&nbsp;</font>Studienjahr abschließen und absenden<font size='3'>&nbsp;</font></a>
</td>
</tr>
</tbody>
</table>
<?php }?>
<br>
<br
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Sind Sie sicher, dass sie das aktuelle Jahr <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
abschließen möchten?
<br>
Danach sind keine Änderungen mehr möglich!
<br>
<br>
<input type="button" onclick="location.href='?action=abschluss2';" value="Ja" />&nbsp;<input type="button" onclick="location.href='?';" value="Nein" />
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss2') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Der Jahrgang <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
wurde gespeichert!
<br>
<br>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,60 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-15 10:57:20
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\hauptframe_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d12bf0bdfd89_77561589',
'file_dependency' =>
array (
'44ddd1cda7a0da424ee368f6754191793eaca1e2' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\hauptframe_admin.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d12bf0bdfd89_77561589 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="90%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text1']->value;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,48 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:12
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/indexframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b67070bb96_35528966',
'file_dependency' =>
array (
'478857de9c613a5de5ea1266802bd09636a9515f' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/indexframe.html',
1 => 1520588406,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b67070bb96_35528966 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="103, 79%" cols="1*" border="0">
<frame name="banner" scrolling="no" marginwidth="10" marginheight="0" namo_target_frame="detail" src="titel.php" noresize>
<frameset rows="1*" cols="100%">
<frame name="detail" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,214 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-19 08:25:24
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_mutterschutz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d64e54f33c60_50745280',
'file_dependency' =>
array (
'478858eb2f2625d1277f982742b1158bff0486a6' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_mutterschutz.html',
1 => 1658138657,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d64e54f33c60_50745280 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_muschu() {
/*
Diese Funktion berechnet die LVS
*/
var sws = 1;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_mutterschutz.php',
data: {
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['muschu_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_muschu, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['muschu_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['muschu_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Mutterschutz/Elternzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Das Dekanat wird sich mit Ihnen bezüglich der Berechnung Ihrer LVS aufgrund Ihrer Mutterschutz/Elterzeiten in Verbindung setzen
und mit Ihnen die Berechnung besprechen.</li>
<li>Danach wird die LVS-Stundenanzahl aufgrund Ihrer Mutterschutz/Elternzeit in das Programm vom Dekanat eingetragen.</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<?php if ($_smarty_tpl->tpl_vars['muschu_erf']->value == 1) {?>
<input type='submit' name='senden' value="Mutterschutz/Elternzeit beantragen (hier klicken)">
<?php } elseif ($_smarty_tpl->tpl_vars['muschu_erf']->value == 2) {?>
<label>Antrag auf Mutterschutz/Elternzeit wurde bearbeitet</label>
<?php } else { ?>
<input type='submit' name='senden' value="Antrag Mutterschutz/Elternzeit löschen (Antragsdatum vom <?php echo $_smarty_tpl->tpl_vars['muschu_erf_dat']->value;?>
)">
<?php }?>
</p>
<br />
</fieldset>
</form>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,433 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:21:41
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/abschlussarbeiten.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b7f5afc677_47667507',
'file_dependency' =>
array (
'48804e6c8a7fd478f5de8b5ce684ab13c6aaaac7' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/abschlussarbeiten.html',
1 => 1573107697,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b7f5afc677_47667507 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>
function felder_einblenden() {
/* Bei Master darf eine Betreuungspauschle eingegeben werden */
if (document.getElementById("kaid").value == "2") {
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).show();
$("#" + id2).hide();
});
//]]>
}else{
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).hide();
$("#" + id2).show();
});
//]]>
}
}
<?php echo '</script'; ?>
>
</head>
<body onload="felder_einblenden();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['abschluss_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['abschluss_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abschluss_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['abschluss_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Abschlussarbeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="20%" height="25">
Name des Studierenden
</td>
<td valign="top">
<input type="text" name="name" id="name" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_name']->value;?>
">
</td>
</tr>
<tr>
<td width="20%" height="39">
Art der Abschlussarbeit
</td>
<td valign="top">
<select name="kaid" id="kaid" size=2 onchange='felder_einblenden();'>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid'];?>
" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_kaid']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr id="pauschaleblock1">
<td width="20%" height="25">
Betreuungspauschale (LVS)
</td>
<td valign="top">
<input type="text" class="spinner" name="pauschale" id="pauschale" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_pauschale']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="pauschaleblock2">
<td width="20%" height="25">
&nbsp;
</td>
<td valign="top">
&nbsp;
</td>
</tr>
<tr>
<td width="20%" height="25">
Semester
</td>
<td valign="top">
<select name="semester" id="semester" size=2>
<option value="WS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "WS") {?> selected <?php }?> >Wintersemester</option>
<option value="SS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "SS") {?> selected <?php }?> >Sommersemester</option>
</select>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<br>
<table width="70%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Es können höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_arbeiten']->value;?>
Abschlussarbeiten pro Semester erfasst werden.</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Wintersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ws_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Sommersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ss_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,293 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 16:00:56
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_teilzeit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b818871986_91398157',
'file_dependency' =>
array (
'503983a8d6b763a642ef5a78cbaa6dc0ffc09273' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_teilzeit.html',
1 => 1656338451,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b818871986_91398157 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['tz_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['tz_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Teilzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Prozent
</td>
<td valign="top">
<select size="1" id='umfang' name='umfang'>
<option value="1.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "1.00") {?> selected <?php }?>>100&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.95" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.95") {?> selected <?php }?>>95&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.90" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.90") {?> selected <?php }?>>90&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.85" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.85") {?> selected <?php }?>>85&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.80" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.80") {?> selected <?php }?>>80&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.75" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.75") {?> selected <?php }?>>75&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.70" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.70") {?> selected <?php }?>>70&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.65" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.65") {?> selected <?php }?>>65&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.60" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.60") {?> selected <?php }?>>60&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.55" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.55") {?> selected <?php }?>>55&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.50" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.50") {?> selected <?php }?>>50&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.45" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.45") {?> selected <?php }?>>45&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.40" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.40") {?> selected <?php }?>>40&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.35" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.35") {?> selected <?php }?>>35&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.30" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.30") {?> selected <?php }?>>30&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.25" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.25") {?> selected <?php }?>>25&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.20" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.20") {?> selected <?php }?>>20&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.15" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.15") {?> selected <?php }?>>15&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.10" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.10") {?> selected <?php }?>>10&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.05" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.05") {?> selected <?php }?>>5&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.00") {?> selected <?php }?>>0&nbsp;%&nbsp;&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Beginn der Teilzeit
</td>
<td>
<input type="text" class="datepicker" name="beginn_teilzeit" id="beginn_teilzeit" value="<?php echo $_smarty_tpl->tpl_vars['tz_value_beginn']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine ältere Teilzeit endet dann, wenn eine neue Teilzeit erfasst wird.</li>
<li>Es wird immer der Monatserste als Beginntag festgelegt!</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Teilzeit</b>
</legend>
<br>
<b>Basiswert der Lehrveranstaltungsstunden in diesem Studienjahr: <?php echo $_smarty_tpl->tpl_vars['tz_baselvs']->value;?>
</b>
<br>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['prozent'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Teilzeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="2">&nbsp;</td>
<td align="right">EVTL FALSCH. Reihenfolge für Abzüge berücksichtigen. Haug 25.7.19<b>Lehrveranstaltungsstunden: <?php echo $_smarty_tpl->tpl_vars['tz_value_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,62 @@
<?php
/* Smarty version 3.1.29, created on 2018-04-09 15:19:36
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\hauptframe_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5acb6868609e05_87834677',
'file_dependency' =>
array (
'5496a13970bb6cf0dbfc21ae0017dc877a2c2401' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\hauptframe_eingabe.html',
1 => 1523279945,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5acb6868609e05_87834677 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="90%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_text1']->value;?>
<?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_cur_jahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_cur_jahrgang']->value+1;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_eingabe_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,112 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 20:23:28
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/menu_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc46f30f0f2a1_94539830',
'file_dependency' =>
array (
'57a2099f8319929d5a2416f369ba339de98cc5e7' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/menu_admin.html',
1 => 1521036708,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc46f30f0f2a1_94539830 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list_admin.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Bearbeitung</span></h3>
<ul>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</ul>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Administration</span></h3>
<ul>
<?php
$__section_table_data3_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_1_total = $__section_table_data3_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_1_total != 0) {
for ($__section_table_data3_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_1_iteration <= $__section_table_data3_1_total; $__section_table_data3_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data3_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_1_saved;
}
?>
</ul>
<?php }?>
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,596 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-15 14:28:49
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/rollen.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dcea811919a24_77654731',
'file_dependency' =>
array (
'57db823cd7c5ca9e95d3167baf7a0d16ba1a7af9' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/rollen.html',
1 => 1521021854,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dcea811919a24_77654731 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_titel']->value;?>
</div>
</div>
</div>
<form action="?action=admin" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['rollen_pflichtfelder']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['rollen_error_text']->value;?>
</td>
</tr>
</table>
<br>
<?php }?>
<fieldset>
<legend>
<b>Rolle auswählen</b>
</legend>
<br />
<br />
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_auswahl']->value;?>
</strong>
</td>
<td>
<select size="5" name="rolle">
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['roid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['select'] == 'Y') {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_neu']->value;?>
</strong>
</td>
<td>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_bez']->value;?>
</strong><br>
<input type="text" name="rolle_neu" size="30">
</td>
</tr>
<tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width=40<?php echo '%>';?>
&nbsp;
</td>
<td>
<input type="submit" name="senden" value="Weiter">
</td>
</tr>
</table>
<br />
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'admin') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type='text/javascript' src='./overlib/overlib.js'><?php echo '</script'; ?>
>
<style type="text/css">
.link{
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_admin_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rolle bearbeiten</b>
</legend>
<br />
<br />
<table width="100%">
<tr>
<td width="19%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_bez']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_ren']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_del']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_zuw']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_inforights']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_infouser']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_ben_zuw']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_info_ohnerolle']->value;?>
</td>
</tr>
<tr>
<td width="19%">
<?php echo $_smarty_tpl->tpl_vars['rollen_bezeichnung']->value;?>
</td>
<td width="11%">
<a href=?action=edit><img title = "Rolle umbenennen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<!-- Wenn maximale Anzahl der Bef&uuml;llvarianten erreicht, dann ausgrauen-->
<?php if ($_smarty_tpl->tpl_vars['rollen_button_del']->value == '1') {?>
<a href=?action=del><img title = "Rolle l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<img title="L&ouml;schen nicht m&ouml;glich, Anzahl Rechte/User > 0" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
<td width="11%">
<a href=?action=rechte><img title = "Rechte zuweisen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<a class=link href="javascript:void(0);" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_zugeordnete_rechte']->value;?>
', CAPTION, 'Zugeordnete Rechte: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_rechte']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber zugewiesene Rechte" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_rechte']->value;?>
)</a>
</td>
<td width="11%">
<a class=link href="javascript:void(0);" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_zugeordnete_user']->value;?>
', CAPTION, 'Zugeordnete Benutzer: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_user']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber zugewiesene Benutzer" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_user']->value;?>
)</a>
</td>
<td width="11%">
<a href="?action=user"><img title = "Benutzerverwaltung der Rolle" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<a class=link href="?action=user" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_user_ohnezugeordnete_rolle']->value;?>
', CAPTION, 'Benutzer ohne Rechte/Rollen: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_ohnerechte']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber Benutzer ohne Rechte/Rollen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_ohnerechte']->value;?>
)</a>
</td>
</tr>
</table>
<br><br>
<p align='center'>
<input type="button" value="Zur&uuml;ck" onclick="window.location.href = '?'">
</p>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'edit') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_edit_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rolle umbenennen</b>
</legend>
<br />
<br />
<form action=?action=edit1 method="POST">
<table border="0" cellpadding="0" cellspacing="0" style="border-width:0; border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="142">
<tr>
<td width='40%' style="border-style: none; border-width: medium" height="25">
<b><?php echo $_smarty_tpl->tpl_vars['rollen_edit_field_bez']->value;?>
</b>
</td>
<td width='60%' align="left" style="border-style: none; border-width: medium" height="25">
<input type="text" name="rolle_neu" value="<?php echo $_smarty_tpl->tpl_vars['rollen_edit_bez']->value;?>
" size="30">
</td>
</tr>
</table>
<br><br>
<p align='center'>
<input type="submit" value="Speichern" name="B1">
</p>
</form>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'rechte') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_rechte_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rechte bearbeiten</b>
</legend>
<br />
<br />
<form action=?action=rechte1 method="POST" name="beleg1">
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="115">
<tr>
<td width="25%">
</td>
<td width="25%">&nbsp;</td>
<td width="25%">
<p>&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
<p align="center">
<select size="15" name="admre[]" multiple>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['reid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['select'] == '1') {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
(<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bereich'];?>
)</option>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
</select>
<br>
<?php echo $_smarty_tpl->tpl_vars['rollen_rechte_subtitel']->value;?>
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
</td>
<td width="50%"colspan="2" align="center">
<input type="submit" value="Markierte Rechte vergeben" name="B1">
</td>
<td width="25%">
</td>
</tr>
</table>
</form>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'user') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_user_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<br />
<br />
<form action=?action=user1 method="POST" name="beleg1">
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="115">
<tr>
<td width="25%">
</td>
<td width="25%">&nbsp;</td>
<td width="25%">
<p>&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
<p align="center">
<select size="10" name="user[]" multiple>
<?php
$__section_table_data1_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_2_total = $__section_table_data1_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_2_total != 0) {
for ($__section_table_data1_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_2_iteration <= $__section_table_data1_2_total; $__section_table_data1_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['imtuid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['select'] == '1') {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data1_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_2_saved;
}
?>
</select>
<br />
<?php echo $_smarty_tpl->tpl_vars['rollen_user_subtitel']->value;?>
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
</td>
<td width="50%"colspan="2" align="center">
<input type="submit" value="Benutzer zur Rolle zuweisen" name="B1">
</td>
<td width="25%">
</td>
</tr>
</table>
</form>
<br />
<br />
<?php if ($_smarty_tpl->tpl_vars['rollen_rollenanz']->value > '0') {?>
<table width="100%">
<tr>
<td width="45%">
<b>Benutzer</b>
</td>
<td width="30%">
<b>Rollen</b>
</td>
<td align="right" width="20%">
<b>Rolle l&ouml;schen</b>
</td>
</tr>
<?php
$__section_outer_loop_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] : false;
$__section_outer_loop_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_outer_loop_3_total = $__section_outer_loop_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] = new Smarty_Variable(array());
if ($__section_outer_loop_3_total != 0) {
for ($__section_outer_loop_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] = 0; $__section_outer_loop_3_iteration <= $__section_outer_loop_3_total; $__section_outer_loop_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']++){
?>
<tr>
<td width="45%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['vorname'];?>
</td>
<td width="30%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php
$__section_inner_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_inner']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner'] : false;
$__section_inner_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner']) ? count($_loop) : max(0, (int) $_loop));
$__section_inner_4_total = $__section_inner_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = new Smarty_Variable(array());
if ($__section_inner_4_total != 0) {
for ($__section_inner_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] = 0; $__section_inner_4_iteration <= $__section_inner_4_total; $__section_inner_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']++){
?>
<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['bezeichnung'];?>
<br>
<?php
}
}
if ($__section_inner_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = $__section_inner_4_saved;
}
?>
</td>
<td width="20%" align="right" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php
$__section_inner_5_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_inner']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner'] : false;
$__section_inner_5_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner']) ? count($_loop) : max(0, (int) $_loop));
$__section_inner_5_total = $__section_inner_5_loop;
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = new Smarty_Variable(array());
if ($__section_inner_5_total != 0) {
for ($__section_inner_5_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] = 0; $__section_inner_5_iteration <= $__section_inner_5_total; $__section_inner_5_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']++){
?>
<a href="?action=deluserrol&roid=<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['roid_ges'];?>
&imtuid=<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['imtuid'];?>
"><img title = "Rolle bei Benutzer l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a><br>
<?php
}
}
if ($__section_inner_5_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = $__section_inner_5_saved;
}
?>
</td>
</tr>
<?php
}
}
if ($__section_outer_loop_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] = $__section_outer_loop_3_saved;
}
?>
</table
<?php }?>
<br />
<br />
<p align="center">
<input type="button" value="Zur&uuml;ck" onclick="window.location.href = '?action=admin'">
&nbsp;
<input type="button" value="Ende" onclick="window.location.href = '?new=1'">
</p>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,44 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:45
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\eingabe_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b321613f64_27213506',
'file_dependency' =>
array (
'582dc26987267396089d31cc6fc81ebcad03aec2' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\eingabe_frame.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b321613f64_27213506 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_eingabe" scrolling="auto" marginwidth="10" marginheight="14" src="menu_eingabe.php">
<frame name="eingabe_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="jahrgang.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,281 @@
<?php
/* Smarty version 3.1.29, created on 2019-07-25 13:30:27
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_freist_mutterschutz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d3992d3087613_80622505',
'file_dependency' =>
array (
'5dcb141a0245794e020cf894a8248e297dcdee74' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_freist_mutterschutz.html',
1 => 1564054222,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d3992d3087613_80622505 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="jquery/jquery-1.9.1.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_muschu() {
/*
Diese Funktion berechnet die LVS
*/
var sws = 1;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_mutterschutz.php',
data: {
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['muschu_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_muschu, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['muschu_error']->value == '1') {?>
<div class="pat_list_box">
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['muschu_error_text']->value;?>
</td>
</tr>
</table>
<br />
</div>
<?php }?>
<fieldset>
<legend>
<b>Mutterschutz erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<td>
Beginn des Mutterschutzes
</td>
<td>
<input type="date" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumvon']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Mutterschutzes
</td>
<td>
<input type="date" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumbis']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: LVS-(Anzahl der Mutterschutztage / Anzahl der Tage im Jahr x LVS)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['art'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['muschu_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,214 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_mutterschutz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ab455f5_98876890',
'file_dependency' =>
array (
'60131ce480b533c2461b470618e17ce8066a9ebe' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_mutterschutz.html',
1 => 1658138656,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ab455f5_98876890 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_muschu() {
/*
Diese Funktion berechnet die LVS
*/
var sws = 1;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_mutterschutz.php',
data: {
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['muschu_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_muschu, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['muschu_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['muschu_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Mutterschutz/Elternzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Das Dekanat wird sich mit Ihnen bezüglich der Berechnung Ihrer LVS aufgrund Ihrer Mutterschutz/Elterzeiten in Verbindung setzen
und mit Ihnen die Berechnung besprechen.</li>
<li>Danach wird die LVS-Stundenanzahl aufgrund Ihrer Mutterschutz/Elternzeit in das Programm vom Dekanat eingetragen.</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<?php if ($_smarty_tpl->tpl_vars['muschu_erf']->value == 1) {?>
<input type='submit' name='senden' value="Mutterschutz/Elternzeit beantragen (hier klicken)">
<?php } elseif ($_smarty_tpl->tpl_vars['muschu_erf']->value == 2) {?>
<label>Antrag auf Mutterschutz/Elternzeit wurde bearbeitet</label>
<?php } else { ?>
<input type='submit' name='senden' value="Antrag Mutterschutz/Elternzeit löschen (Antragsdatum vom <?php echo $_smarty_tpl->tpl_vars['muschu_erf_dat']->value;?>
)">
<?php }?>
</p>
<br />
</fieldset>
</form>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_rektorat_dekanat.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ab8e533_87583946',
'file_dependency' =>
array (
'60c1118676fe033d180d0633de34507f850aebfb' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_rektorat_dekanat.html',
1 => 1656405392,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ab8e533_87583946 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,381 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_abw_lehrbedarf.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ad16533_71910583',
'file_dependency' =>
array (
'6232baf6491fd7127634956faad8f47116973a54' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_abw_lehrbedarf.html',
1 => 1658381468,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ad16533_71910583 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:-300,
max:300,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['abwlehrb_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['abwlehrb_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abwlehrb_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Abweichender Lehrbedarf in LVS eintragen
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="spinner" name="lvs" id="lvs" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr>
<td>
Befristung bis:
</td>
<td>
<input type="text" class="datepicker" name="befristung_bis" id="befristung_bis" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_befristung_bis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweise</b><br>
<ul>
<li>§ 6 LVVO regelt einen abweichenden Lehrbedarf.</li>
<li>Der eingegebene Wert wird für die manuelle Berechnung zugrunde gelegt</li>
<!--<li>Bei einer Verringerung des Lehrangebots tragen Sie die LVS mit einem negativen Wert ein</li>-->
<li>Falls die Lehrverpflichtung in Absprache mit dem Dekanat zeitlich befristet erhöht worden ist, bitte das Forumlar ausfüllen und absenden</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Befristung bis</b>
</td>
<td align="right">
<b>Beantragung in LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Abweichung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Abweichung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,111 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:40:21
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\titel.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f3505d615_37243608',
'file_dependency' =>
array (
'632eeb3e7ef8cfb8964b31800a29956af0c83b92' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\titel.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f3505d615_37243608 ($_smarty_tpl) {
?>
<html>
<head>
<title>Testseite</title>
<meta name="generator" content="Namo WebEditor">
<base target="detail">
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.2- <20> Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
<?php echo '</script'; ?>
>
</head>
<style type="text/css">
body {
background-image: url("templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/backgr/ground.png");
background-repeat: repeat-x;
background-position: left -1614px;
}
</style>
<body>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="250" height="60" valign="top">
<h2>Deputatverwaltung</h2>
</td>
<td width="73">&nbsp;</td>
<td width="159">&nbsp;</td>
<td width="71">&nbsp;</td>
<td width="2%">&nbsp;</td>
<td width="">&nbsp;</td>
<td width="157" valign="top">
<p align="right"><a class="navbar" href="logout.php" target="_parent">Logout</a></p>
</td>
<td width="25">&nbsp;</td>
</tr>
</table>
<div id="filltab" class="animatedtabs">
<ul>
<li><a href="eingabe_frame.php" selected><span>Eingabebereich</span></a></li>
<?php if ($_smarty_tpl->tpl_vars['titel_admin']->value == '1') {?>
<li><a href="admin_frame.php" ><span>Adminbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_ausschuss']->value == '1') {?>
<li><a href="ausschuss_frame.php" ><span>Ausschussbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_beteiligte']->value == '1') {?>
<li><a href="beteiligte_frame.php" ><span>Beteiligtenbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_gutachter']->value == '1') {?>
<li><a href="gutachter_frame.php" ><span>Gutachterbereich</span></a></li>
<?php }?>
<!--
<li><a href="link.php"><span>Gutachterbereich</span></a></li>
<li><a href="link.php"><span>Beteiligtenbereich</span></a></li>
<li><a href="link.php"><span>Ausschussbereich</span></a></li>
-->
</ul>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,144 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:44:31
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\kat_anrede.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab91ff16d671_95512842',
'file_dependency' =>
array (
'673788c6acd1ed71f64db45fa3fd9942adbc4728' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\kat_anrede.html',
1 => 1521026673,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab91ff16d671_95512842 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['anrede_titel']->value;?>
</div>
</div>
</div>
<form action="?action=edit" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['anrede_pflichtfelder']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['anrede_error_text']->value;?>
</td>
</tr>
</table>
<br>
<?php }?>
<fieldset>
<legend>
<b>Anrede erstellen / bearbeiten</b>
</legend>
<br />
<br />
<p align="center">
<select size="10" id='anrede' name='anrede'>
<option style="font-weight:bold;font-style: italic;" value="new">Neue Anrede erstellen&nbsp;&nbsp;&nbsp;&nbsp;</option>
<option disabled>&nbsp;</option>
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['arid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['select'] == 'Y') {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
<br />
<br />
<br />
<input type="submit" name="senden" value="Weiter">
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'edit') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body onload="if(document.erfassen)document.erfassen.anrede_bez.focus();return false;">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['anrede_edit_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<form action="?action=save" method='post' name='erfassen'>
<fieldset>
<br />
<br />
<p align="center">
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 1) {
echo $_smarty_tpl->tpl_vars['anrede_edit_desc_new']->value;?>
:&nbsp;<?php }?>
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 0) {
echo $_smarty_tpl->tpl_vars['anrede_edit_desc_exist']->value;?>
:&nbsp;<?php }?>
<input value="<?php echo $_smarty_tpl->tpl_vars['anrede_sav_value']->value;?>
" type="text" name="anrede_bez" size="30">
<br />
<br />
<input type="submit" name="senden" value="Speichern">
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 0) {?>
<input type="button" value="Diesen Wert löschen" onclick="window.location.href = '?action=del'">
&nbsp;
<?php }?>
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,80 @@
<?php
/* Smarty version 3.1.29, created on 2019-06-27 14:38:06
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\jahrgang.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d14b8ae2fcd72_34565979',
'file_dependency' =>
array (
'693777c4549dedf4ed8ac5b7eb4ae194805babe7' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\jahrgang.html',
1 => 1561639084,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d14b8ae2fcd72_34565979 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jahrgang_titel']->value;?>
</div>
</div>
</div>
<form action=?action=jahr method="POST">
<div class="pat_list_box">
<p align="center">
<select size="5" name="jahr">
<?php
$_from = $_smarty_tpl->tpl_vars['jahrgang']->value;
if (!is_array($_from) && !is_object($_from)) {
settype($_from, 'array');
}
$__foreach_aktuellerjahrgang_0_saved_item = isset($_smarty_tpl->tpl_vars['aktuellerjahrgang']) ? $_smarty_tpl->tpl_vars['aktuellerjahrgang'] : false;
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = new Smarty_Variable();
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = false;
foreach ($_from as $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = true;
$__foreach_aktuellerjahrgang_0_saved_local_item = $_smarty_tpl->tpl_vars['aktuellerjahrgang'];
?>
<option value='<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
' <?php if ($_smarty_tpl->tpl_vars['aktuellerjahrgang']->value == $_smarty_tpl->tpl_vars['jahrgang_cur_jahrgang']->value) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value+1;?>
&nbsp;&nbsp;</option>
<?php
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_local_item;
}
if ($__foreach_aktuellerjahrgang_0_saved_item) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_item;
}
?>
</select>
<br>
<br>
<input type="submit" value="Abschicken" name="B1"> </p>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,48 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:40:20
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\indexframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f34e74f74_42568886',
'file_dependency' =>
array (
'6bb8be7ca37aabb406bd8e4c9e22ff763859742d' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\indexframe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f34e74f74_42568886 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="103, 79%" cols="1*" border="0">
<frame name="banner" scrolling="no" marginwidth="10" marginheight="0" namo_target_frame="detail" src="titel.php" noresize>
<frameset rows="1*" cols="100%">
<frame name="detail" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 07:40:08
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_freist_rektorat_dekanat.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bbe5b8b0a059_92237035',
'file_dependency' =>
array (
'74824dc37a4737b395d7c00b6bb73e80e0653bcf' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_freist_rektorat_dekanat.html',
1 => 1656405393,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bbe5b8b0a059_92237035 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_funktion.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3ac33010_92849925',
'file_dependency' =>
array (
'792ea294c53bc4298417c9d819c94441f67d4c25' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_freist_funktion.html',
1 => 1656405400,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3ac33010_92849925 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,733 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:42:15
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erfassen_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983fa7acac60_39138762',
'file_dependency' =>
array (
'7e26d0f6b15f169cd37251d922955a78c9509bba' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erfassen_eingabe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983fa7acac60_39138762 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="erfassen_eingabe.js"><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body onload="show('<?php echo $_smarty_tpl->tpl_vars['erf_value_gemlv']->value;?>
','<?php echo $_smarty_tpl->tpl_vars['erf_value_art']->value;?>
', '<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_tage']->value;?>
');">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erf_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erf_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erf_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erf_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?><font color="red">* <?php }?>Studiengang<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?></font><?php }?>
</td>
<td>
<select name="studiengang" id="studiengang" size=5 onchange="fetch_select();">
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_studiengang']->value == $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?><font color="red">* <?php }?>Art der LV<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
</select>
<!-- Bei Master soll nur Vorlesung zur Auswahl angeboten werden-->
<select name="art" id="art2" size=5 onchange="einblenden();">
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == 1) {?> selected <?php }?> >Vorlesung</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?><font color="red">* <?php }?>Titel der Lehrveranstaltung (LV)<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
">
<select id='module' name='module' onchange="fetch_select2();"></select>
<select id='schwerpunkt' name='schwerpunkt' onchange="fetch_schwerpunkt2();"></select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="anz_agtage">
<td width="30%">
Anzahl der Arbeitsgemeinschaften (AG)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<select id='anz_ag' name='anz_ag' onchange="fetch_anzahl();">
<option value='1' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '1') {?> selected <?php }?>>1</option>
<option value='2' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '2') {?> selected <?php }?>>2</option>
<option value='3' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '3') {?> selected <?php }?>>3</option>
<option value='4' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '4') {?> selected <?php }?>>4</option>
<option value='5' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '5') {?> selected <?php }?>>5</option>
<option value='6' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '6') {?> selected <?php }?>>6</option>
<option value='7' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '7') {?> selected <?php }?>>7</option>
<option value='8' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '8') {?> selected <?php }?>>8</option>
<option value='9' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '9') {?> selected <?php }?>>9</option>
<option value='10' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '10') {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="extracurr">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Extracurricularer Klausurenkurs</b><br>
<ul>
<li>Es dürfen höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_extracur']->value;?>
Lehrstunden (LVS) pro <?php echo $_smarty_tpl->tpl_vars['abschluss_einheit_max_extracur']->value;?>
erfasst werden.</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
<tr>
<td width="30%">Krankheitsbedingte Merkmale
</td>
<td><label for="krankheit1"><input type="radio" name="krankheit" id="krankheit1" value="0" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 0) {?> checked <?php }?> onclick="func_krankheit(1);"> keine</label><br>
<label for="krankheit2"><input type="radio" name="krankheit" id="krankheit2" value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 1) {?> checked <?php }?> onclick="func_krankheit(2);"> Lehrveranstaltung übernommen</label><br>
<label for="krankheit3"><input type="radio" name="krankheit" id="krankheit3" value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 2) {?> checked <?php }?> onclick="func_krankheit(3);"> Lehrveranstaltung nachgeholt</label>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
</table>
<fieldset id="teachingblock_field">
<legend>Teamteaching</legend>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr id="teachingblock0">
<td width="30%">
gemeinsame&nbsp;LV
</td>
<td valign="top">
<select name="gemlv" id="gemlv" onchange='felder_aktiv(0);' size=2>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock1">
<td width="30%">
fachübergreifende&nbsp;LV
</td>
<td valign="top">
<select name="fachlv" id="fachlv" disabled size=2 onchange='felder_aktiv(1);'>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock2">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Anzahl der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="anzgemlv" id="anzgemlv" disabled>
<option value="">Anzahl der Lehrenden</option>
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "1") {?> selected <?php }?>>1</option>
<option value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "2") {?> selected <?php }?>>2</option>
<option value="3" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "3") {?> selected <?php }?>>3</option>
<option value="4" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "4") {?> selected <?php }?>>4</option>
<option value="5" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "5") {?> selected <?php }?>>5</option>
<option value="6" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "6") {?> selected <?php }?>>6</option>
<option value="7" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "7") {?> selected <?php }?>>7</option>
<option value="8" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "8") {?> selected <?php }?>>8</option>
<option value="9" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "9") {?> selected <?php }?>>9</option>
<option value="10" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "10") {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr id="teachingblock3">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?><font color="red">* <?php }?>Namen der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<textarea name="namegemlv" id="namegemlv" disabled><?php echo $_smarty_tpl->tpl_vars['erf_value_namegemlv']->value;?>
</textarea>
</td>
</tr>
<tr id="teachingblock5">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Basiswert (LVS) der LV<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onchange='gesvol_calc();'>-->
<!-- onchange='gesvol_calc();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="teachingblock4">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?><font color="red">* <?php }?>Teachingfaktor<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="teamteaching" id="teamteaching" disabled size="5" onchange='gesvol_calc();'>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_teamteaching']->value == $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">
&nbsp;
</td>
<td>
&nbsp;
</td>
</tr>
<tr id="teachingblock_hinw">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Gesamtvolumen</b><br>
<ul>
<li>Der Teachingfaktor gibt vor, zu wieviel Prozent einer Lehrveranstaltung Lehrende gemeinsam lehren dürfen.</li>
<li>Bei einem Faktor von 0,5 dürfen also bis zu 50 % einer Veranstaltung von zwei Lehrenden miteinander gestaltet werden.</li>
<li>Bsp: Sind für ein Fachprojekt 56 LVS vorgesehen, gilt der Faktor 0,5.<br>
Das bedeutet, dass höchstens 28 LVS gemeinsam gestaltet werden dürfen.<br>
Daraus resultiert ein Gesamtvolumen von 56 LVS + (0,5 Faktor x 56 LVS) = 84 LVS.<br>
Das Gesamtvolumen steht den beiden Dozierenden zur Aufteilung (nach eigenem Ermessen) zu.<br>
Der einzelne Dozent darf sich aber nicht mehr als 56 LVS zurechnen
</li>
<li>Der Basiswert dient nur zur Berechnung des Gesamtvolumens.<br>Die tatsächliche LVS bitte in das Feld "Summe eigene Lehrstunden" eintragen!</li>
</ul>
<div style="float: left;">Aktuelles Gesamtvolumen:&nbsp;</div>
<div style="float: left;" id="gesamtvolumen_count"></div>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
</fieldset>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="exkursion1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?><font color="red">* <?php }?>Exkursionsstunden<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<label for="tage_exkursion1"><input type="radio" name="tage_exkursion" id="tage_exkursion1"value="1" checked onclick="senden_aktiv();"> Eintägig</label><br>
<table>
<tr>
<td width=200><b>Datum:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon1"value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br><br>
<label for="tage_exkursion2"><input type="radio" name="tage_exkursion" id="tage_exkursion2" value="2" onclick="senden_aktiv();"> Mehrtägig</label><br>
<table>
<tr>
<td width=200><b>Datum von:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Datum bis:</b></td>
<td><input type="text" class="datepicker" name="exk_datumbis" id="exk_datumbis2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumbis']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden Anreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
<tr>
<td width=200><b>Stunden Abreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br>
<table width="80%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Die Stunden werden mit dem Faktor <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_faktor']->value;?>
multipliziert, um die LVS zu erhalten.</li>
<li>Tageshöchstsatz liegt bei 10 Std. Das entspricht <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS.</li>
<li>Ganze Tage werden mit dem Höchstsatz <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS berechnet.</li>
<li>Bei mehrtägigen Exkursionen: Geben Sie immer die Stunden am Anreise- und Abreisetag an, <font color="red"<b>sonst werden diese Tage nicht berechnet!</b></font></li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
<tr id="lehrstd1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?><font color="red">* <?php }?>Summe eigene Lehrstunden (LVS)<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
<input type="hidden" name="std_default" id="std_default" size="101">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erf_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td width=15<?php echo '%>';?>
<b>Studiengang (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td width=20<?php echo '%>';?>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene<br>Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_3_total = $__section_table_data2_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_3_total != 0) {
for ($__section_table_data2_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_3_iteration <= $__section_table_data2_3_total; $__section_table_data2_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['studiengang'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['std'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>&nbsp;<a href="?action=del&did=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_3_saved;
}
?>
<tr>
<td colspan="6">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,112 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:41:58
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\menu_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab916680dcc6_44973495',
'file_dependency' =>
array (
'7ea329229c14491aa4bd27d71734573c06d8dec0' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\menu_admin.html',
1 => 1521036709,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab916680dcc6_44973495 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list_admin.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Bearbeitung</span></h3>
<ul>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</ul>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['menu_admin_bearb']->value == '1') {?>
<h3><span>Administration</span></h3>
<ul>
<?php
$__section_table_data3_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_1_total = $__section_table_data3_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_1_total != 0) {
for ($__section_table_data3_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_1_iteration <= $__section_table_data3_1_total; $__section_table_data3_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<li class="abstand"><a href="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['dateiname'];?>
" target="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['target'];?>
"><span><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['beschreibung'];?>
</span></a></li>
<?php
}
}
if ($__section_table_data3_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_1_saved;
}
?>
</ul>
<?php }?>
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,408 @@
<?php
/* Smarty version 3.1.29, created on 2018-04-09 08:46:45
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erf_fz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5acb0c552556e7_68512854',
'file_dependency' =>
array (
'7ead1ca12141cb85e2446e5651e2561d11c8ef48' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erf_fz.html',
1 => 1523256401,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5acb0c552556e7_68512854 ($_smarty_tpl) {
?>
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['fz_titel']->value;?>
</div>
</div>
</div>
<form action="?action=lbfzerf" method='post' name='erfassen'>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Funktion auswählen</b>
</legend>
<br />
<br />
<p align="center">
<select size="10" id='funktion' name='funktion'>
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['kfid'];?>
"><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
<br />
<br />
<br />
<input type="submit" name="senden" value="Weiter">
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['action']->value == 'lbfzerf') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<!-- Kalender Beginn // -->
<link rel='stylesheet' href='./datepicker/dynCalendar.css' type='text/css' media='screen'>
<?php echo '<script'; ?>
src='./datepicker/browserSniffer.js' type='text/javascript' language='javascript'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='./datepicker/dynCalendar.js' type='text/javascript' language='javascript'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type='text/javascript'>
<!--
// Calendar callback. When a date is clicked on the calendar
// this function is called so you can do as you want with it
function calendarCallback(date, month, year, pos)
{
if(date<10){date='0'+date;}
if(month<10){month='0'+month;}
date_tag = date;
date_mon = month;
date_jahr = year;
document.getElementById('tag'+pos).value = date_tag;
document.getElementById('mon'+pos).value = date_mon;
document.getElementById('jahr'+pos).value = date_jahr;
}
// -->
<?php echo '</script'; ?>
>
<!-- Kalender Ende // -->
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
function start() {
if (document.adm_anleg)
document.adm_anleg.atelier.focus();
return false;
}
//-->
<?php echo '</script'; ?>
>
</head>
<body onload="start();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['fz_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<form action=?action=save method="POST" name="adm_anleg">
<fieldset>
<legend><b>Erfassung</b></legend>
<br>
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="194">
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_betrag']->value;?>
*</b>
</td>
<td width="60%">
<input align="right" type="number" min="0.00" step="0.01" name="wert" value='<?php echo $_smarty_tpl->tpl_vars['fz_wert']->value;?>
'> &euro;
</td>
</tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_starttag']->value;?>
*</b>
</td>
<td width="60%">
<input type='text' name='tag1' id='tag1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_tag']->value;?>
' size=1>.<input type='text' name='mon1' id='mon1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_mon']->value;?>
' size=1>.<input type='text' name='jahr1' id='jahr1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_jahr']->value;?>
' size=3>
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
startdat = new dynCalendar('startdat', 'calendarCallback', './datepicker/images/', '', '1');
//-->
<?php echo '</script'; ?>
>
</td>
</tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_endtag']->value;?>
</b>
</td>
<td width="60%">
<input type='text' name='tag3' id='tag3' value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_tag']->value;?>
' size=1>.<input type='text' name='mon3' id='mon3'value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_mon']->value;?>
' size=1>.<input type='text' name='jahr3' id='jahr3' value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_jahr']->value;?>
' size=3>
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
endtag = new dynCalendar('endtag', 'calendarCallback', './datepicker/images/', '', '3');
//-->
<?php echo '</script'; ?>
>
</td>
<tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_prof']->value;?>
</b>
</td>
<td width="60%">
<select size="5" id='prof' name='prof'>
<?php
$__section_table_data3_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_1_total = $__section_table_data3_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_1_total != 0) {
for ($__section_table_data3_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_1_iteration <= $__section_table_data3_1_total; $__section_table_data3_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['imtuid'];?>
" <?php if ($_smarty_tpl->tpl_vars['fz_imtuid']->value == $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['imtuid']) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['titel'];?>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['vorname'];?>
&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data3_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_1_saved;
}
?>
</select>
</td>
<tr>
<tr>
<td width="40%">
* = Pflichtfelder
</td>
<td width="60%">
&nbsp;
</td>
</tr>
</table>
</fieldset>
<br>
<fieldset>
<legend><b>Gespeicherte Zulagen</b></legend>
<table width='100%' border='0'>
<tr>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_starttag']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_betrag']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_name']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_endtag']->value;?>
</b>
</td>
<td align='center'>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_aktionen']->value;?>
</b>
</td>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['startdat_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['wert'];?>
&nbsp;&euro;
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['enddat_form'];?>
</td>
<td align='center'>
<a href="?action=lbfzerf&edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lbfzid'];?>
"><img title = "Daten bearbeiten" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&lbfzid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lbfzid'];?>
"><img title = "Daten l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
<tr>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
</table>
<br>
</fieldset>
<p align='center'>
<input type="submit" value="Speichern" name="B1">
</p>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'save') {?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_pc.php" type="text/css">
<title><?php echo $_smarty_tpl->tpl_vars['fz_inserterr_titel']->value;?>
</title>
</head>
<body>
<table border="0" style="border-collapse: collapse" width="100%" cellpadding="0" height="100%" id="table1">
<tr>
<td>
<div align="center">
<table cellspacing="0" cellpadding="0" width="550" border="0">
<tr>
<td width="10" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e1.gif">
<img height="40" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td nowrap="nowrap" align="left" width="3%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_top.gif" valign="top"></td>
<td width="95%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_top.gif">
<img height="10" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="1"><br>
<span class="sh"><?php echo $_smarty_tpl->tpl_vars['fz_save_titel']->value;?>
</span><br>
<img height="5" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="1">
</td>
<td nowrap="nowrap" align="right" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e2.gif">
<img height="40" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
<tr>
<td width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_l.gif">
<img height="1" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td colspan="2">
<br>
<p align="left"><b><?php echo $_smarty_tpl->tpl_vars['fz_save_text']->value;?>
</b></p>
<p align="center"><a href="?">
<img border="0" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/zurueck.gif" width="77" height="22"></a><br>
</p>
<p></p>
<p></p>
<p></p>
<p></p>
<p><br>
</p>
</td>
<td width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_r.gif">
<img height="1" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
<tr>
<td nowrap="nowrap" align="left" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e3.gif">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td nowrap="nowrap" align="left" width="98%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_bottom.gif" colspan="2">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="8">
</td>
<td nowrap="nowrap" align="right" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e4.gif">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>
<?php }?>
<?php }
}

View File

@ -0,0 +1,381 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:31:17
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_abw_lehrbedarf.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8e4a5397723_47851058',
'file_dependency' =>
array (
'83e8c2f33062dfc3ea2b471c290ef267f717dc9b' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_abw_lehrbedarf.html',
1 => 1658381468,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8e4a5397723_47851058 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:-300,
max:300,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['abwlehrb_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['abwlehrb_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abwlehrb_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Abweichender Lehrbedarf in LVS eintragen
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="spinner" name="lvs" id="lvs" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr>
<td>
Befristung bis:
</td>
<td>
<input type="text" class="datepicker" name="befristung_bis" id="befristung_bis" value="<?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_befristung_bis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweise</b><br>
<ul>
<li>§ 6 LVVO regelt einen abweichenden Lehrbedarf.</li>
<li>Der eingegebene Wert wird für die manuelle Berechnung zugrunde gelegt</li>
<!--<li>Bei einer Verringerung des Lehrangebots tragen Sie die LVS mit einem negativen Wert ein</li>-->
<li>Falls die Lehrverpflichtung in Absprache mit dem Dekanat zeitlich befristet erhöht worden ist, bitte das Forumlar ausfüllen und absenden</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Befristung bis</b>
</td>
<td align="right">
<b>Beantragung in LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Abweichung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Abweichung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abwlehrb_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,151 @@
<?php
/* Smarty version 3.1.29, created on 2019-07-26 07:07:53
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\ermaessigung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d3a8aa9c65776_70956635',
'file_dependency' =>
array (
'8577b26b452298ddb7c9b67be2a9286cd7a47905' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\ermaessigung.html',
1 => 1564117628,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d3a8aa9c65776_70956635 ($_smarty_tpl) {
?>
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.min.js'><?php echo '</script'; ?>
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
margin-bottom: 5px;
}
.active, .accordion:hover {
background-color: #277DA8;
color: white;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
color: white;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Ermäßigungen</div>
</div>
</div>
<div class="pat_list_box">
<p>Indem Sie auf die Überschriften klicken können Sie die Teilbereiche auf- und zuklappen.</p>
<button class="accordion">Ermäßigung/Freistellung Rektorat/Dekanat (§§ 7, 8 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_rektorat_dekanat.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Deputatsermäßigung aufgrund einer Funktion/Beauftragung (§ 11 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_funktion.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Deputatsermäßigung aufgrund von Forschungs- und Entwicklungsaufgaben (§ 2 Abs. 8, 9 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_forschung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Teilzeit</button>
<div class="panel">
<iframe src='erm_teilzeit.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Schwerbehinderung</button>
<div class="panel">
<iframe src='erm_behinderung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Mutterschutz/Elternzeit/Pflegezeit</button>
<div class="panel">
<iframe src='erm_mutterschutz.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Forschungssemester/Praxissemester/Abordnungen</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Ruhestand während des Studienjahres</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Veränderungen Lehrverpflichtung</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">Krankheit</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<br>
<br>
</div>
<?php echo '<script'; ?>
>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>iFrameResize({
log : false, // Enable console logging
enablePublicMethods : true, // Enable methods within iframe hosted page
heightCalculationMethod : 'lowestElement',
});<?php echo '</script'; ?>
>
</body>
</html><?php }
}

View File

@ -0,0 +1,46 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 20:23:28
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/admin_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc46f30d10d08_23517869',
'file_dependency' =>
array (
'85d3ca8da1ec4940bd91e2dae28727f9af797901' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/admin_frame.html',
1 => 1561633110,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc46f30d10d08_23517869 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_admin" scrolling="auto" marginwidth="10" marginheight="14" namo_target_frame="detail" src="menu_admin.php" />
<frame name="admin_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe_admin.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-28 11:48:18
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_freist_forschung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bace620b8017_65558292',
'file_dependency' =>
array (
'8738ec39812aa4872b72a631f7fb7a77fc9850ef' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_freist_forschung.html',
1 => 1656405946,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bace620b8017_65558292 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,62 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:43
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\hauptframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b31f198857_07275820',
'file_dependency' =>
array (
'87edde91c103da72ca78f64b0283d9f02b443091' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\hauptframe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b31f198857_07275820 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_text1']->value;?>
<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value+1;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,824 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-15 11:41:59
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\jahresabschluss.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d136675d4379_49124251',
'file_dependency' =>
array (
'8c7b6024f61c243469a584cacfbdcb027c13022a' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\jahresabschluss.html',
1 => 1657878115,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d136675d4379_49124251 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<style type='text/css'>
.nextprev:link, .nextprev:visited {
background-color: #D6DFF7;
color: black;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
.nextprev:active, .nextprev:hover {
background-color: #6487DC;
color: #FFFFFF;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jaabschl_titel']->value;?>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['jaabschl_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_error_text']->value;?>
</td>
</tr>
</table>
<?php }?>
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="5" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Hinweis</b>
</td>
<td>
<b>Beginn</b>
</td>
<td>
<b>Ende</b>
</td>
<td align="right">
<b>Berechnungszeitraum</b>
</td>
<td>
<b>SWS</b>
</td>
<td align="right">
<b>Ermäßigung in LVS</b>
</td>
<td align="right" width="20%">
<b>Berechnung (Soll-LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
)</b>
</td>
<tr>
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] = $__section_table_data0_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['art'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['hinweis'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['beginn_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ende_form'];?>
</td>
<td align="right">
<?php if ($_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['monate'] > 0) {?>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['monate'];?>
Monat(e)
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['tage'] > 0) {?>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['tage'];?>
Tag(e)
<?php }?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['sws'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['anz_lvs'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['cur_lvs'];?>
- <?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ber_lvs'];?>
= <?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['erg_lvs'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
</tr>
<tr>
<td colspan="7" rowspan=2>&nbsp;</td>
<td align="right">
<b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
</b>
</td>
<td align="right">
<font color="red"><b>Zu leistende LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_zu_leisten']->value;?>
</b></font><br>
<i><small>(Rechenweg: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
- <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
)</small></i>
</td>
</tr>
<tr>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
</td>
<tr>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] = $__section_table_data1_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['std'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Sonstige Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Name</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Semester</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td width="20%">
&nbsp;
</td>
<tr>
<?php
$__section_table_data3_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_3_total = $__section_table_data3_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_3_total != 0) {
for ($__section_table_data3_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_3_iteration <= $__section_table_data3_3_total; $__section_table_data3_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_3_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Gesamtbetrachtung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
Erfasste Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Sonstige Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Erfasste Abschlussarbeiten
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
<b>Jahressumme</b>
</td>
<td align="right" width="20%">
<b><?php echo $_smarty_tpl->tpl_vars['abschluss_gesamt']->value;?>
</b>
</td>
<td width="20%">&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Synopse <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Anfangsstand</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres</b>
</td>
<td>
<b>Übertrag Folgejahr</b>
</td>
</tr>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_endwert_vorjahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_soll']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_ist']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_uber_unter_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_abbau_jahr']->value;?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_verfall_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_verfall']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt_nach_verfall']->value;?>
</td>
</tr>
<tr>
<td colspan=10>
<br>
<b>Veränderungen der Vorjahre durch das aktuelle Jahr</b>
</td>
</tr>
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Jahresendstand bisher</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres alt</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres neu</b>
</td>
</tr>
<?php
$__section_table_data4_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4'] : false;
$__section_table_data4_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data4']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data4_4_total = $__section_table_data4_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = new Smarty_Variable(array());
if ($__section_table_data4_4_total != 0) {
for ($__section_table_data4_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] = 0; $__section_table_data4_4_iteration <= $__section_table_data4_4_total; $__section_table_data4_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['vorjahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt_nach_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['soll'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['ist'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['uber_unter_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['differenz'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['endwert'];?>
</td>
</tr>
<?php
}
}
if ($__section_table_data4_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = $__section_table_data4_4_saved;
}
?>
<tr>
</table>
</fieldset>
<br>
<?php if ($_smarty_tpl->tpl_vars['jaabschl_closed']->value == 0) {?>
<table valign='middle' style='border-top: 2px solid #6487DC; border-bottom: 2px solid #6487DC;' width='100%' align='center' border='0' cellpadding='0' cellspacing='0'>
<tbody>
<tr>
<td valign='middle' width='100%' height='30px' class='nextprev'>
<a href='?action=abschluss' class='nextprev'><font size='3'>&nbsp;</font>Studienjahr abschließen und absenden<font size='3'>&nbsp;</font></a>
</td>
</tr>
</tbody>
</table>
<?php }?>
<br>
<br
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Sind Sie sicher, dass sie das aktuelle Jahr <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
abschließen möchten?
<br>
Danach sind keine Änderungen mehr möglich!
<br>
<br>
<input type="button" onclick="location.href='?action=abschluss2';" value="Ja" />&nbsp;<input type="button" onclick="location.href='?';" value="Nein" />
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss2') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Der Jahrgang <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
wurde gespeichert!
<br>
<br>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-28 10:36:53
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_freist_funktion.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62babda5acfc60_61396051',
'file_dependency' =>
array (
'8e8a7d2d06c50c8405ded6643566e35a100d0b11' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_freist_funktion.html',
1 => 1656405400,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62babda5acfc60_61396051 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,433 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-06 15:03:12
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\abschlussarbeiten.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc2d2a019c812_07816864',
'file_dependency' =>
array (
'9346a7459f32a0e5c9bd059397fafebf21fbf785' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\abschlussarbeiten.html',
1 => 1573048989,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc2d2a019c812_07816864 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>
function felder_einblenden() {
/* Bei Master darf eine Betreuungspauschle eingegeben werden */
if (document.getElementById("kaid").value == "2") {
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).show();
$("#" + id2).hide();
});
//]]>
}else{
//<![CDATA[
$(document).ready(function () {
var id1 = "pauschaleblock1";
var id2 = "pauschaleblock2";
$("#" + id1).hide();
$("#" + id2).show();
});
//]]>
}
}
<?php echo '</script'; ?>
>
</head>
<body onload="felder_einblenden();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['abschluss_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['abschluss_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abschluss_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['abschluss_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Abschlussarbeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="20%" height="25">
Name des Studierenden
</td>
<td valign="top">
<input type="text" name="name" id="name" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_name']->value;?>
">
</td>
</tr>
<tr>
<td width="20%" height="39">
Art der Abschlussarbeit
</td>
<td valign="top">
<select name="kaid" id="kaid" size=2 onchange='felder_einblenden();'>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid'];?>
" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_kaid']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['kaid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr id="pauschaleblock1">
<td width="20%" height="25">
Betreuungspauschale (LVS)
</td>
<td valign="top">
<input type="text" class="spinner" name="pauschale" id="pauschale" size="101" value="<?php echo $_smarty_tpl->tpl_vars['abschluss_value_pauschale']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="pauschaleblock2">
<td width="20%" height="25">
&nbsp;
</td>
<td valign="top">
&nbsp;
</td>
</tr>
<tr>
<td width="20%" height="25">
Semester
</td>
<td valign="top">
<select name="semester" id="semester" size=2>
<option value="WS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "WS") {?> selected <?php }?> >Wintersemester</option>
<option value="SS" <?php if ($_smarty_tpl->tpl_vars['abschluss_value_semester']->value == "SS") {?> selected <?php }?> >Sommersemester</option>
</select>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<br>
<table width="70%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Es können höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_arbeiten']->value;?>
Abschlussarbeiten pro Semester erfasst werden.</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Wintersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['semesterbez'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ws_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten im Sommersemester</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width="5%">
<b>lfd.Nr.</b>
</td>
<td width="20%">
<b>Name</b>
</td>
<td width="20%">
<b>Art</b>
</td>
<td width="20%">
<b>Semester</b>
</td>
<td width="10%">
<b>Betreuungspauschale</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td align="center" width="5%">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['pauschale'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
><img title = "Abschlussarbeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&daid=<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['daid'];?>
"><img title = 'Abschlussarbeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_ss_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:33:17
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\index.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983d8d09d366_86079654',
'file_dependency' =>
array (
'94dc780312073f0c47140a9bf5b3885498ea3d3e' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\index.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983d8d09d366_86079654 ($_smarty_tpl) {
?>
<!-- index gegen LDAP und DB bei externer Kennung-->
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_login.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery-1.5.1.min.js"><?php echo '</script'; ?>
>
<!-- DATEI GIBTS NICHT <?php echo '<script'; ?>
>!window.jQuery && document.write('<?php echo '<script'; ?>
src="jquery-1.4.3.min.js"><\/script>');<?php echo '</script'; ?>
>-->
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(document).ready(function() {
$(".box").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : true,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
<?php echo '</script'; ?>
>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<?php if ($_smarty_tpl->tpl_vars['index_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['index_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_user']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="text" name="user" value="<?php echo $_smarty_tpl->tpl_vars['index_user']->value;?>
" tabindex="1"></td>
</td>
</tr>
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_pass']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="password" name="password" tabindex="2"></td>
</td>
</tr>
<tr>
<td width="100%" colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width="40%">
&nbsp;
</td>
<td>
<input type="submit" value="Login">
</td>
</tr>
</table>
</td>
</tr>
</table>
<p align="center">
<font color="red"><?php echo $_smarty_tpl->tpl_vars['index_register']->value;?>
</font>
<!--
<br />
<br />
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
-->
</p>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:36:10
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\index.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b24ae1dfb3_13044465',
'file_dependency' =>
array (
'9a78efd44590e7ffed55df0015b79dae793ccb40' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\index.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b24ae1dfb3_13044465 ($_smarty_tpl) {
?>
<!-- index gegen LDAP und DB bei externer Kennung-->
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_login.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery-1.5.1.min.js"><?php echo '</script'; ?>
>
<!-- DATEI GIBTS NICHT <?php echo '<script'; ?>
>!window.jQuery && document.write('<?php echo '<script'; ?>
src="jquery-1.4.3.min.js"><\/script>');<?php echo '</script'; ?>
>-->
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(document).ready(function() {
$(".box").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : true,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
<?php echo '</script'; ?>
>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<?php if ($_smarty_tpl->tpl_vars['index_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['index_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_user']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="text" name="user" value="<?php echo $_smarty_tpl->tpl_vars['index_user']->value;?>
" tabindex="1"></td>
</td>
</tr>
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_pass']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="password" name="password" tabindex="2"></td>
</td>
</tr>
<tr>
<td width="100%" colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width="40%">
&nbsp;
</td>
<td>
<input type="submit" value="Login">
</td>
</tr>
</table>
</td>
</tr>
</table>
<p align="center">
<font color="red"><?php echo $_smarty_tpl->tpl_vars['index_register']->value;?>
</font>
<!--
<br />
<br />
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
-->
</p>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,402 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 07:01:38
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erfassen_sonstige.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_629844323fe015_64812170',
'file_dependency' =>
array (
'9b76be132390308f57a6e41752f7d45e7c465d8e' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erfassen_sonstige.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_629844323fe015_64812170 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erfs_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erfs_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erfs_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erfs_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Titel der Lehrveranstaltung (LV)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<?php echo '<script'; ?>
language="javascript" type="text/javascript">
function einblenden ($verid) {
/* Bei Exkursionen Erfassungsfeld einblenden*/
if (document.getElementById("art").value == "5") {
document.getElementById("exkursion1").style.visibility = "visible";
document.getElementById("lehrstd1").style.visibility = "hidden";
document.getElementById("exk_datumvon2").disabled = true;
document.getElementById("exk_datumbis2").disabled = true;
document.getElementById("exk_beschreibung2").disabled = true;
document.getElementById("exk_stdanreise2").disabled = true;
document.getElementById("exk_stdabreise2").disabled = true;
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeIn("slow");
$("#" + id2).fadeOut("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}else{
document.getElementById("exkursion1").style.visibility = "hidden";
document.getElementById("lehrstd1").style.visibility = "visible";
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}
if (document.getElementById("art").value == "6") {
/*Hinweis zu Extracurricularer Klausurenkurs einblenden*/
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeIn("slow");
});
//]]>
}
}
<?php echo '</script'; ?>
>
<tr>
<td>
Art der LV
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erfs_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="lehrstd1">
<td>
Summe eigene Lehrstunden (LVS)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erfs_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&dsid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }?>
<?php }
}

View File

@ -0,0 +1,425 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-06 09:54:01
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_freist_funktion.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d72109903bc97_80419727',
'file_dependency' =>
array (
'9c718d718c0f612c5c15751e4ebd1d47cb6b9387' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_freist_funktion.html',
1 => 1567756432,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d72109903bc97_80419727 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,287 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-15 07:59:14
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_teilzeit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d10232cd7eb8_09241192',
'file_dependency' =>
array (
'9f79693dfcb6a7fc79d702acd349d9e3eaf9aee4' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_teilzeit.html',
1 => 1657864750,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d10232cd7eb8_09241192 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['tz_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['tz_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Teilzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Prozent
</td>
<td valign="top">
<select size="1" id='umfang' name='umfang'>
<option value="1.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "1.00") {?> selected <?php }?>>100&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.95" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.95") {?> selected <?php }?>>95&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.90" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.90") {?> selected <?php }?>>90&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.85" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.85") {?> selected <?php }?>>85&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.80" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.80") {?> selected <?php }?>>80&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.75" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.75") {?> selected <?php }?>>75&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.70" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.70") {?> selected <?php }?>>70&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.65" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.65") {?> selected <?php }?>>65&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.60" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.60") {?> selected <?php }?>>60&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.55" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.55") {?> selected <?php }?>>55&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.50" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.50") {?> selected <?php }?>>50&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.45" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.45") {?> selected <?php }?>>45&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.40" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.40") {?> selected <?php }?>>40&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.35" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.35") {?> selected <?php }?>>35&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.30" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.30") {?> selected <?php }?>>30&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.25" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.25") {?> selected <?php }?>>25&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.20" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.20") {?> selected <?php }?>>20&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.15" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.15") {?> selected <?php }?>>15&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.10" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.10") {?> selected <?php }?>>10&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.05" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.05") {?> selected <?php }?>>5&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.00") {?> selected <?php }?>>0&nbsp;%&nbsp;&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Beginn der Teilzeit
</td>
<td>
<input type="text" class="datepicker" name="beginn_teilzeit" id="beginn_teilzeit" value="<?php echo $_smarty_tpl->tpl_vars['tz_value_beginn']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine ältere Teilzeit endet dann, wenn eine neue Teilzeit erfasst wird.</li>
<li>Es wird immer der Monatserste als Beginntag festgelegt!</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Teilzeit</b>
</legend>
<br>
<b>Basiswert der Lehrveranstaltungsstunden in diesem Studienjahr: <?php echo $_smarty_tpl->tpl_vars['tz_baselvs']->value;?>
</b>
<br>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['prozent'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Teilzeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="2">&nbsp;</td>
<td align="right">EVTL FALSCH. Reihenfolge für Abzüge berücksichtigen. Haug 25.7.19<b>Lehrveranstaltungsstunden: <?php echo $_smarty_tpl->tpl_vars['tz_value_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,291 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-05 11:23:01
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_teilzeit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d70d3f59fba44_69901460',
'file_dependency' =>
array (
'a11fc644885a54cf4777c553d86b0a78959c55e5' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_teilzeit.html',
1 => 1567675370,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d70d3f59fba44_69901460 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['tz_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['tz_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Teilzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Prozent
</td>
<td valign="top">
<select size="1" id='umfang' name='umfang'>
<option value="1.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "1.00") {?> selected <?php }?>>100&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.95" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.95") {?> selected <?php }?>>95&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.90" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.90") {?> selected <?php }?>>90&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.85" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.85") {?> selected <?php }?>>85&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.80" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.80") {?> selected <?php }?>>80&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.75" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.75") {?> selected <?php }?>>75&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.70" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.70") {?> selected <?php }?>>70&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.65" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.65") {?> selected <?php }?>>65&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.60" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.60") {?> selected <?php }?>>60&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.55" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.55") {?> selected <?php }?>>55&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.50" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.50") {?> selected <?php }?>>50&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.45" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.45") {?> selected <?php }?>>45&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.40" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.40") {?> selected <?php }?>>40&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.35" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.35") {?> selected <?php }?>>35&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.30" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.30") {?> selected <?php }?>>30&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.25" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.25") {?> selected <?php }?>>25&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.20" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.20") {?> selected <?php }?>>20&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.15" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.15") {?> selected <?php }?>>15&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.10" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.10") {?> selected <?php }?>>10&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.05" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.05") {?> selected <?php }?>>5&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.00") {?> selected <?php }?>>0&nbsp;%&nbsp;&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Beginn der Funktion
</td>
<td>
<input type="text" class="datepicker" name="beginn_teilzeit" id="beginn_teilzeit" value="<?php echo $_smarty_tpl->tpl_vars['tz_value_beginn']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine ältere Teilzeit endet dann, wenn eine neue Teilzeit erfasst wird.</li>
<li>Es wird immer der Monatserste als Beginntag festgelegt!</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<br>
<b>Basiswert der Lehrveranstaltungsstunden in diesem Studienjahr: <?php echo $_smarty_tpl->tpl_vars['tz_baselvs']->value;?>
</b>
<br>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['prozent'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Teilzeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<tr>
<td colspan="2">&nbsp;</td>
<td align="right">EVTL FALSCH. Reihenfolge für Abzüge berücksichtigen. Haug 25.7.19<b>Lehrveranstaltungsstunden: <?php echo $_smarty_tpl->tpl_vars['tz_value_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,320 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:50
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_mutterschutz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b326b1e1d3_36889385',
'file_dependency' =>
array (
'a369b86fdec12081f8275fb4aa8da83f028219cf' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_mutterschutz.html',
1 => 1655979737,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b326b1e1d3_36889385 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_muschu() {
/*
Diese Funktion berechnet die LVS
*/
var sws = 1;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_mutterschutz.php',
data: {
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['muschu_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_muschu, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['muschu_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['muschu_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Mutterschutz/Elternzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<td>
Beginn des Mutterschutzes / der Elternzeit
</td>
<td>
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumvon']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Mutterschutzes / der Elternzeit
</td>
<td>
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['muschu_value_datumbis']->value;?>
" onchange='calc_muschu();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: LVS-(Anzahl der Mutterschutztage / Anzahl der Tage im Jahr x LVS)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Mutterschutzeit / Elternzeit / Pflegezeit</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['art'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['muschu_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,111 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:43
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\titel.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b31f1d2945_54329858',
'file_dependency' =>
array (
'ab3dc24c6cb4c53e9729da485efc4025aaf28bb8' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\titel.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b31f1d2945_54329858 ($_smarty_tpl) {
?>
<html>
<head>
<title>Testseite</title>
<meta name="generator" content="Namo WebEditor">
<base target="detail">
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.2- <20> Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
<?php echo '</script'; ?>
>
</head>
<style type="text/css">
body {
background-image: url("templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/backgr/ground.png");
background-repeat: repeat-x;
background-position: left -1614px;
}
</style>
<body>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="250" height="60" valign="top">
<h2>Deputatverwaltung</h2>
</td>
<td width="73">&nbsp;</td>
<td width="159">&nbsp;</td>
<td width="71">&nbsp;</td>
<td width="2%">&nbsp;</td>
<td width="">&nbsp;</td>
<td width="157" valign="top">
<p align="right"><a class="navbar" href="logout.php" target="_parent">Logout</a></p>
</td>
<td width="25">&nbsp;</td>
</tr>
</table>
<div id="filltab" class="animatedtabs">
<ul>
<li><a href="eingabe_frame.php" selected><span>Eingabebereich</span></a></li>
<?php if ($_smarty_tpl->tpl_vars['titel_admin']->value == '1') {?>
<li><a href="admin_frame.php" ><span>Adminbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_ausschuss']->value == '1') {?>
<li><a href="ausschuss_frame.php" ><span>Ausschussbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_beteiligte']->value == '1') {?>
<li><a href="beteiligte_frame.php" ><span>Beteiligtenbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_gutachter']->value == '1') {?>
<li><a href="gutachter_frame.php" ><span>Gutachterbereich</span></a></li>
<?php }?>
<!--
<li><a href="link.php"><span>Gutachterbereich</span></a></li>
<li><a href="link.php"><span>Beteiligtenbereich</span></a></li>
<li><a href="link.php"><span>Ausschussbereich</span></a></li>
-->
</ul>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,144 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-15 14:29:57
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/kat_anrede.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dcea855c7a7f2_02867469',
'file_dependency' =>
array (
'ada4888fbd82e9c86a0d41b98d8dcb56c4b93d38' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/kat_anrede.html',
1 => 1521026672,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dcea855c7a7f2_02867469 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['anrede_titel']->value;?>
</div>
</div>
</div>
<form action="?action=edit" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['anrede_pflichtfelder']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['anrede_error_text']->value;?>
</td>
</tr>
</table>
<br>
<?php }?>
<fieldset>
<legend>
<b>Anrede erstellen / bearbeiten</b>
</legend>
<br />
<br />
<p align="center">
<select size="10" id='anrede' name='anrede'>
<option style="font-weight:bold;font-style: italic;" value="new">Neue Anrede erstellen&nbsp;&nbsp;&nbsp;&nbsp;</option>
<option disabled>&nbsp;</option>
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['arid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['select'] == 'Y') {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
<br />
<br />
<br />
<input type="submit" name="senden" value="Weiter">
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'edit') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body onload="if(document.erfassen)document.erfassen.anrede_bez.focus();return false;">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['anrede_edit_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<form action="?action=save" method='post' name='erfassen'>
<fieldset>
<br />
<br />
<p align="center">
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 1) {
echo $_smarty_tpl->tpl_vars['anrede_edit_desc_new']->value;?>
:&nbsp;<?php }?>
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 0) {
echo $_smarty_tpl->tpl_vars['anrede_edit_desc_exist']->value;?>
:&nbsp;<?php }?>
<input value="<?php echo $_smarty_tpl->tpl_vars['anrede_sav_value']->value;?>
" type="text" name="anrede_bez" size="30">
<br />
<br />
<input type="submit" name="senden" value="Speichern">
<?php if ($_smarty_tpl->tpl_vars['anrede_new']->value == 0) {?>
<input type="button" value="Diesen Wert löschen" onclick="window.location.href = '?action=del'">
&nbsp;
<?php }?>
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,60 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 20:23:28
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/hauptframe_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc46f30f22910_80231790',
'file_dependency' =>
array (
'af87342ca6c527421da86e807836ceb49aef6064' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/hauptframe_admin.html',
1 => 1519650278,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc46f30f22910_80231790 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="90%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text1']->value;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,82 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:42:05
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\menu_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f9df0ec57_72310769',
'file_dependency' =>
array (
'b087b8167ec86d8ea23b19c1577ba2af8da54a8b' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\menu_eingabe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f9df0ec57_72310769 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<h3><span>Erfassungsbereich</span></h3>
<ul>
<li class="abstand"><a href="jahrgang.php" target="eingabe_haupt"><span>1.) Studienjahr wählen</span></a></li>
<li class="abstand"><a href="ermaessigung.php" target="eingabe_haupt"><span>2.) Ermäßigungen</span></a></li>
<li class="abstand"><a href="erfassen_eingabe.php?new=1" target="eingabe_haupt"><span>3.) Deputate erfassen</span></a></li>
<li class="abstand"><a href="erfassen_sonstige.php" target="eingabe_haupt"><span>4.) Sonstige Deputate</span></a></li>
<li class="abstand"><a href="abschlussarbeiten.php" target="eingabe_haupt"><span>5.) Abschlussarbeiten</span></a></li>
<li class="abstand"><a href="jahresabschluss.php" target="eingabe_haupt"><span>6.) Jahresabschluss</span></a></li>
<li class="abstand"><a href="erfassen_status.php?id=1" target="eingabe_haupt"><span>Ausdruck</span></a></li>
</ul>
<!--
<h3><span onmousemove="if(document.searchform)document.searchform.patrone.focus();return false;">Suche nach ID</span></h3>
<ul>
<li class="abstand"> <input class="eingabe_search" type="text" id="suchid" name="suchid" onkeyup="ajax_showOptions(this,'getWord',event)"></li>
<p align="right"><input type="submit" value="suche" name="b1" /></p> <!-- Auf Button kann verzichtet werden
</ul>
-->
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:05
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/index.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b669e223e7_05727517',
'file_dependency' =>
array (
'b1df743487ce4e198129924d84df9fe722431140' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/index.html',
1 => 1520588374,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b669e223e7_05727517 ($_smarty_tpl) {
?>
<!-- index gegen LDAP und DB bei externer Kennung-->
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_login.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery-1.5.1.min.js"><?php echo '</script'; ?>
>
<!-- DATEI GIBTS NICHT <?php echo '<script'; ?>
>!window.jQuery && document.write('<?php echo '<script'; ?>
src="jquery-1.4.3.min.js"><\/script>');<?php echo '</script'; ?>
>-->
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(document).ready(function() {
$(".box").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : true,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
<?php echo '</script'; ?>
>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<?php if ($_smarty_tpl->tpl_vars['index_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['index_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_user']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="text" name="user" value="<?php echo $_smarty_tpl->tpl_vars['index_user']->value;?>
" tabindex="1"></td>
</td>
</tr>
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_pass']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="password" name="password" tabindex="2"></td>
</td>
</tr>
<tr>
<td width="100%" colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width="40%">
&nbsp;
</td>
<td>
<input type="submit" value="Login">
</td>
</tr>
</table>
</td>
</tr>
</table>
<p align="center">
<font color="red"><?php echo $_smarty_tpl->tpl_vars['index_register']->value;?>
</font>
<!--
<br />
<br />
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
-->
</p>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,414 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 08:08:04
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_abordnung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bbec446934e2_90178740',
'file_dependency' =>
array (
'b3dd8a107737561a3dd64dd66d719c2ab5d75b2f' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_abordnung.html',
1 => 1656482879,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bbec446934e2_90178740 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<!--
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['abord_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['abord_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abord_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Beginn des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<!--
<td>
<b>Funktion</b>
</td>
-->
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<!--
<td align="right">
<b>Ermäßigung SWS</b>
</td>
-->
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
-->
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abord_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,80 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:42:06
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\jahrgang.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f9e161bd8_69386448',
'file_dependency' =>
array (
'b47c90a6c37b1229c4d45c65316f799fd9b565e3' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\jahrgang.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f9e161bd8_69386448 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jahrgang_titel']->value;?>
</div>
</div>
</div>
<form action=?action=jahr method="POST">
<div class="pat_list_box">
<p align="center">
<select size="5" name="jahr">
<?php
$_from = $_smarty_tpl->tpl_vars['jahrgang']->value;
if (!is_array($_from) && !is_object($_from)) {
settype($_from, 'array');
}
$__foreach_aktuellerjahrgang_0_saved_item = isset($_smarty_tpl->tpl_vars['aktuellerjahrgang']) ? $_smarty_tpl->tpl_vars['aktuellerjahrgang'] : false;
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = new Smarty_Variable();
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = false;
foreach ($_from as $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang']->_loop = true;
$__foreach_aktuellerjahrgang_0_saved_local_item = $_smarty_tpl->tpl_vars['aktuellerjahrgang'];
?>
<option value='<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
' <?php if ($_smarty_tpl->tpl_vars['aktuellerjahrgang']->value == $_smarty_tpl->tpl_vars['jahrgang_cur_jahrgang']->value) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['aktuellerjahrgang']->value+1;?>
&nbsp;&nbsp;</option>
<?php
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_local_item;
}
if ($__foreach_aktuellerjahrgang_0_saved_item) {
$_smarty_tpl->tpl_vars['aktuellerjahrgang'] = $__foreach_aktuellerjahrgang_0_saved_item;
}
?>
</select>
<br>
<br>
<input type="submit" value="Abschicken" name="B1"> </p>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 06:42:22
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\ermaessigung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8d92eb81802_04824613',
'file_dependency' =>
array (
'ba661ef3a442636b9ad1a8f12f9e4cd63e4b0020' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\ermaessigung.html',
1 => 1658378536,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8d92eb81802_04824613 ($_smarty_tpl) {
?>
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.min.js'><?php echo '</script'; ?>
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
margin-bottom: 5px;
}
.active, .accordion:hover {
background-color: #277DA8;
color: white;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
color: white;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Ermäßigungen <?php echo $_smarty_tpl->tpl_vars['erm_jahrgang']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erm_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erm_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erm_abschluss']->value == '0') {?>
<p>Indem Sie auf die Überschriften klicken können Sie die Teilbereiche auf- und zuklappen.</p>
<button class="accordion">1) Ruhestand während des Studienjahres</button>
<div class="panel">
<iframe src='erm_ruhestand.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">2) Forschungssemester/Praxissemester/Abordnungen</button>
<div class="panel">
<iframe src='erm_abordnung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">3) Schwerbehinderung</button>
<div class="panel">
<iframe src='erm_behinderung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">4) Teilzeit</button>
<div class="panel">
<iframe src='erm_teilzeit.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">5) Mutterschutz/Elternzeit</button>
<div class="panel">
<iframe src='erm_mutterschutz.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">6) Ermäßigung/Freistellung Rektorat/Dekanat (§§ 7, 8 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_rektorat_dekanat.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">7) Deputatsermäßigung aufgrund einer Funktion/Beauftragung (§ 11 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_funktion.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">8) Deputatsermäßigung aufgrund von Forschungs- und Entwicklungsaufgaben (§ 2 Abs. 8, 9 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_forschung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">9) Abweichender Lehrbedarf</button>
<div class="panel">
<iframe src='erm_abw_lehrbedarf.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">10) Krankheit</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<?php }?>
<br>
<br>
</div>
<?php echo '<script'; ?>
>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>iFrameResize({
log : false, // Enable console logging
heightCalculationMethod : 'documentElementOffset',
autoResize : true,
scrolling : true,
tolerance : 1000,
sizeHeight : true,
});<?php echo '</script'; ?>
>
</body>
</html><?php }
}

View File

@ -0,0 +1,111 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:12
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/titel.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b670be7ed6_80465546',
'file_dependency' =>
array (
'bc406e158fc043b09d9a52f7244c3af81b0ab5b6' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/titel.html',
1 => 1520413432,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b670be7ed6_80465546 ($_smarty_tpl) {
?>
<html>
<head>
<title>Testseite</title>
<meta name="generator" content="Namo WebEditor">
<base target="detail">
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.2- <20> Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************/
<?php echo '</script'; ?>
>
</head>
<style type="text/css">
body {
background-image: url("templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/backgr/ground.png");
background-repeat: repeat-x;
background-position: left -1614px;
}
</style>
<body>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="250" height="60" valign="top">
<h2>Deputatverwaltung</h2>
</td>
<td width="73">&nbsp;</td>
<td width="159">&nbsp;</td>
<td width="71">&nbsp;</td>
<td width="2%">&nbsp;</td>
<td width="">&nbsp;</td>
<td width="157" valign="top">
<p align="right"><a class="navbar" href="logout.php" target="_parent">Logout</a></p>
</td>
<td width="25">&nbsp;</td>
</tr>
</table>
<div id="filltab" class="animatedtabs">
<ul>
<li><a href="eingabe_frame.php" selected><span>Eingabebereich</span></a></li>
<?php if ($_smarty_tpl->tpl_vars['titel_admin']->value == '1') {?>
<li><a href="admin_frame.php" ><span>Adminbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_ausschuss']->value == '1') {?>
<li><a href="ausschuss_frame.php" ><span>Ausschussbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_beteiligte']->value == '1') {?>
<li><a href="beteiligte_frame.php" ><span>Beteiligtenbereich</span></a></li>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['titel_gutachter']->value == '1') {?>
<li><a href="gutachter_frame.php" ><span>Gutachterbereich</span></a></li>
<?php }?>
<!--
<li><a href="link.php"><span>Gutachterbereich</span></a></li>
<li><a href="link.php"><span>Beteiligtenbereich</span></a></li>
<li><a href="link.php"><span>Ausschussbereich</span></a></li>
-->
</ul>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,733 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:20
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erfassen_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b6789b0170_49980389',
'file_dependency' =>
array (
'c04336b915b2a352aae32a38904309d00d971378' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erfassen_eingabe.html',
1 => 1573043846,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b6789b0170_49980389 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
spin: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
start: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
stop: function (event, ui) {
if(this.name == 'basislvsgemlv'){
gesvol_calc();
}
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="erfassen_eingabe.js"><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body onload="show('<?php echo $_smarty_tpl->tpl_vars['erf_value_gemlv']->value;?>
','<?php echo $_smarty_tpl->tpl_vars['erf_value_art']->value;?>
', '<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_tage']->value;?>
');">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erf_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erf_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erf_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erf_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?><font color="red">* <?php }?>Studiengang<?php if ($_smarty_tpl->tpl_vars['erf_studiengang_hig']->value == 1) {?></font><?php }?>
</td>
<td>
<select name="studiengang" id="studiengang" size=5 onchange="fetch_select();">
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_studiengang']->value == $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['dsgid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?><font color="red">* <?php }?>Art der LV<?php if ($_smarty_tpl->tpl_vars['erf_art_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
</select>
<!-- Bei Master soll nur Vorlesung zur Auswahl angeboten werden-->
<select name="art" id="art2" size=5 onchange="einblenden();">
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_art']->value == 1) {?> selected <?php }?> >Vorlesung</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?><font color="red">* <?php }?>Titel der Lehrveranstaltung (LV)<?php if ($_smarty_tpl->tpl_vars['erf_titel_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
">
<select id='module' name='module' onchange="fetch_select2();"></select>
<select id='schwerpunkt' name='schwerpunkt' onchange="fetch_schwerpunkt2();"></select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="anz_agtage">
<td width="30%">
Anzahl der Arbeitsgemeinschaften (AG)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erf_value_titel']->value;?>
</textarea>-->
<select id='anz_ag' name='anz_ag' onchange="fetch_anzahl();">
<option value='1' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '1') {?> selected <?php }?>>1</option>
<option value='2' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '2') {?> selected <?php }?>>2</option>
<option value='3' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '3') {?> selected <?php }?>>3</option>
<option value='4' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '4') {?> selected <?php }?>>4</option>
<option value='5' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '5') {?> selected <?php }?>>5</option>
<option value='6' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '6') {?> selected <?php }?>>6</option>
<option value='7' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '7') {?> selected <?php }?>>7</option>
<option value='8' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '8') {?> selected <?php }?>>8</option>
<option value='9' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '9') {?> selected <?php }?>>9</option>
<option value='10' <?php if ($_smarty_tpl->tpl_vars['erf_value_anz_ag']->value == '10') {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="extracurr">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Extracurricularer Klausurenkurs</b><br>
<ul>
<li>Es dürfen höchstens <?php echo $_smarty_tpl->tpl_vars['abschluss_value_max_extracur']->value;?>
Lehrstunden (LVS) pro <?php echo $_smarty_tpl->tpl_vars['abschluss_einheit_max_extracur']->value;?>
erfasst werden.</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
<tr>
<td width="30%">Krankheitsbedingte Merkmale
</td>
<td><label for="krankheit1"><input type="radio" name="krankheit" id="krankheit1" value="0" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 0) {?> checked <?php }?> onclick="func_krankheit(1);"> keine</label><br>
<label for="krankheit2"><input type="radio" name="krankheit" id="krankheit2" value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 1) {?> checked <?php }?> onclick="func_krankheit(2);"> Lehrveranstaltung übernommen</label><br>
<label for="krankheit3"><input type="radio" name="krankheit" id="krankheit3" value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_krankheit']->value == 2) {?> checked <?php }?> onclick="func_krankheit(3);"> Lehrveranstaltung nachgeholt</label>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
</table>
<fieldset id="teachingblock_field">
<legend>Teamteaching</legend>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr id="teachingblock0">
<td width="30%">
gemeinsame&nbsp;LV
</td>
<td valign="top">
<select name="gemlv" id="gemlv" onchange='felder_aktiv(0);' size=2>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_gemlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock1">
<td width="30%">
fachübergreifende&nbsp;LV
</td>
<td valign="top">
<select name="fachlv" id="fachlv" disabled size=2 onchange='felder_aktiv(1);'>
<option value="N" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "N") {?> selected <?php }?> <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == '') {?> selected <?php }?>>Nein</option>
<option value="J" <?php if ($_smarty_tpl->tpl_vars['erf_value_fachlv']->value == "J") {?> selected <?php }?>>Ja</option>
</select>
</td>
</tr>
<tr id="teachingblock2">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Anzahl der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_anzgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="anzgemlv" id="anzgemlv" disabled>
<option value="">Anzahl der Lehrenden</option>
<option value="1" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "1") {?> selected <?php }?>>1</option>
<option value="2" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "2") {?> selected <?php }?>>2</option>
<option value="3" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "3") {?> selected <?php }?>>3</option>
<option value="4" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "4") {?> selected <?php }?>>4</option>
<option value="5" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "5") {?> selected <?php }?>>5</option>
<option value="6" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "6") {?> selected <?php }?>>6</option>
<option value="7" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "7") {?> selected <?php }?>>7</option>
<option value="8" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "8") {?> selected <?php }?>>8</option>
<option value="9" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "9") {?> selected <?php }?>>9</option>
<option value="10" <?php if ($_smarty_tpl->tpl_vars['erf_value_anzgemlv']->value == "10") {?> selected <?php }?>>10</option>
</select>
</td>
</tr>
<tr id="teachingblock3">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?><font color="red">* <?php }?>Namen der Lehrenden<?php if ($_smarty_tpl->tpl_vars['erf_namegemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<textarea name="namegemlv" id="namegemlv" disabled><?php echo $_smarty_tpl->tpl_vars['erf_value_namegemlv']->value;?>
</textarea>
</td>
</tr>
<tr id="teachingblock5">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?><font color="red">* <?php }?>Basiswert (LVS) der LV<?php if ($_smarty_tpl->tpl_vars['erf_basislvsgemlv_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onchange='gesvol_calc();'>-->
<!-- onchange='gesvol_calc();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="basislvsgemlv" disabled id="basislvsgemlv" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr id="teachingblock4">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?><font color="red">* <?php }?>Teachingfaktor<?php if ($_smarty_tpl->tpl_vars['erf_teamteaching_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<select name="teamteaching" id="teamteaching" disabled size="5" onchange='gesvol_calc();'>
<?php
$__section_table_data3_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_2_total = $__section_table_data3_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_2_total != 0) {
for ($__section_table_data3_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_2_iteration <= $__section_table_data3_2_total; $__section_table_data3_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erf_value_teamteaching']->value == $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['tid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data3_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_2_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%">
&nbsp;
</td>
<td>
&nbsp;
</td>
</tr>
<tr id="teachingblock_hinw">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Gesamtvolumen</b><br>
<ul>
<li>Der Teachingfaktor gibt vor, zu wieviel Prozent einer Lehrveranstaltung Lehrende gemeinsam lehren dürfen.</li>
<li>Bei einem Faktor von 0,5 dürfen also bis zu 50 % einer Veranstaltung von zwei Lehrenden miteinander gestaltet werden.</li>
<li>Bsp: Sind für ein Fachprojekt 56 LVS vorgesehen, gilt der Faktor 0,5.<br>
Das bedeutet, dass höchstens 28 LVS gemeinsam gestaltet werden dürfen.<br>
Daraus resultiert ein Gesamtvolumen von 56 LVS + (0,5 Faktor x 56 LVS) = 84 LVS.<br>
Das Gesamtvolumen steht den beiden Dozierenden zur Aufteilung (nach eigenem Ermessen) zu.<br>
Der einzelne Dozent darf sich aber nicht mehr als 56 LVS zurechnen
</li>
<li>Der Basiswert dient nur zur Berechnung des Gesamtvolumens.<br>Die tatsächliche LVS bitte in das Feld "Summe eigene Lehrstunden" eintragen!</li>
</ul>
<div style="float: left;">Aktuelles Gesamtvolumen:&nbsp;</div>
<div style="float: left;" id="gesamtvolumen_count"></div>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
</fieldset>
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td width="30%">&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="exkursion1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?><font color="red">* <?php }?>Exkursionsstunden<?php if ($_smarty_tpl->tpl_vars['erf_tage_exkursion_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<label for="tage_exkursion1"><input type="radio" name="tage_exkursion" id="tage_exkursion1"value="1" checked onclick="senden_aktiv();"> Eintägig</label><br>
<table>
<tr>
<td width=200><b>Datum:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon1"value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise1" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br><br>
<label for="tage_exkursion2"><input type="radio" name="tage_exkursion" id="tage_exkursion2" value="2" onclick="senden_aktiv();"> Mehrtägig</label><br>
<table>
<tr>
<td width=200><b>Datum von:</b></td>
<td><input type="text" class="datepicker" name="exk_datumvon" id="exk_datumvon2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumvon']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Datum bis:</b></td>
<td><input type="text" class="datepicker" name="exk_datumbis" id="exk_datumbis2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_datumbis']->value;?>
"></td>
</tr>
<tr>
<td width=200><b>Beschreibung/Ort:</b></td>
<td><input type="text" name="exk_beschreibung" id="exk_beschreibung2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_beschreibung']->value;?>
" size="67"></td>
</tr>
<tr>
<td width=200><b>Stunden Anreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdanreise" id="exk_stdanreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdanreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
<tr>
<td width=200><b>Stunden Abreisetag:</b></td>
<!--<td><input type="number" step="0.1" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
"></td>-->
<td><input type="text" class="spinner" name="exk_stdabreise" id="exk_stdabreise2" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_exk_stdabreise']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"></td>
</tr>
</table>
<br>
<table width="80%" class="errorTable">
<tr>
<td>
<b>Informationen</b><br>
<ul>
<li>Die Stunden werden mit dem Faktor <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_faktor']->value;?>
multipliziert, um die LVS zu erhalten.</li>
<li>Tageshöchstsatz liegt bei 10 Std. Das entspricht <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS.</li>
<li>Ganze Tage werden mit dem Höchstsatz <?php echo $_smarty_tpl->tpl_vars['erf_value_exk_max_tag']->value;?>
LVS berechnet.</li>
<li>Bei mehrtägigen Exkursionen: Geben Sie immer die Stunden am Anreise- und Abreisetag an, <font color="red"<b>sonst werden diese Tage nicht berechnet!</b></font></li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
<tr id="lehrstd1">
<td width="30%">
<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?><font color="red">* <?php }?>Summe eigene Lehrstunden (LVS)<?php if ($_smarty_tpl->tpl_vars['erf_std_hig']->value == 1) {?></font><?php }?>
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erf_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
<input type="hidden" name="std_default" id="std_default" size="101">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td width="30%">
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erf_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td width=15<?php echo '%>';?>
<b>Studiengang (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td width=20<?php echo '%>';?>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene<br>Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_3_total = $__section_table_data2_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_3_total != 0) {
for ($__section_table_data2_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_3_iteration <= $__section_table_data2_3_total; $__section_table_data2_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['studiengang'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['std'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>&nbsp;<a href="?action=del&did=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['did'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_3_saved;
}
?>
<tr>
<td colspan="6">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,62 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-02 06:40:21
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\hauptframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62983f35137af5_48307692',
'file_dependency' =>
array (
'c14ff2547629195c93536c168a8bcac3a181a614' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\hauptframe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62983f35137af5_48307692 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_text1']->value;?>
<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value+1;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,402 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-06 09:16:05
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erfassen_sonstige.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d7207b5177d10_66317685',
'file_dependency' =>
array (
'c5658c72638d856aea74b6e17afeb112eeda5edd' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erfassen_sonstige.html',
1 => 1567753692,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d7207b5177d10_66317685 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erfs_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erfs_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erfs_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erfs_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Titel der Lehrveranstaltung (LV)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<?php echo '<script'; ?>
language="javascript" type="text/javascript">
function einblenden ($verid) {
/* Bei Exkursionen Erfassungsfeld einblenden*/
if (document.getElementById("art").value == "5") {
document.getElementById("exkursion1").style.visibility = "visible";
document.getElementById("lehrstd1").style.visibility = "hidden";
document.getElementById("exk_datumvon2").disabled = true;
document.getElementById("exk_datumbis2").disabled = true;
document.getElementById("exk_beschreibung2").disabled = true;
document.getElementById("exk_stdanreise2").disabled = true;
document.getElementById("exk_stdabreise2").disabled = true;
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeIn("slow");
$("#" + id2).fadeOut("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}else{
document.getElementById("exkursion1").style.visibility = "hidden";
document.getElementById("lehrstd1").style.visibility = "visible";
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}
if (document.getElementById("art").value == "6") {
/*Hinweis zu Extracurricularer Klausurenkurs einblenden*/
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeIn("slow");
});
//]]>
}
}
<?php echo '</script'; ?>
>
<tr>
<td>
Art der LV
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erfs_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="lehrstd1">
<td>
Summe eigene Lehrstunden (LVS)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erfs_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&dsid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }?>
<?php }
}

View File

@ -0,0 +1,62 @@
<?php
/* Smarty version 3.1.29, created on 2018-04-09 15:12:17
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\hauptframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5acb66b1e28005_49697795',
'file_dependency' =>
array (
'c5be52df31cc3c4ab4fc2507c31f3b4d05845dc5' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\hauptframe.html',
1 => 1523279531,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5acb66b1e28005_49697795 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_text1']->value;?>
<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value;?>
/<?php echo $_smarty_tpl->tpl_vars['hauptframe_cur_jahrgang']->value+1;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,82 @@
<?php
/* Smarty version 3.1.29, created on 2019-07-18 13:23:37
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\menu_eingabe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d3056b9976947_01882098',
'file_dependency' =>
array (
'c8dbfc411df6f6d07e0e29538c27728a05a03b88' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\menu_eingabe.html',
1 => 1563449015,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d3056b9976947_01882098 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Menu</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" />
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/jquery.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/js/accordion.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="livesearch/ajax-dynamic-list.js"><?php echo '</script'; ?>
>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
<form action="?action=suche" method='post' name='searchform'>
<div class="accordion2">
<h3><span>Erfassungsbereich</span></h3>
<ul>
<li class="abstand"><a href="jahrgang.php" target="eingabe_haupt"><span>1.) Studienjahr wählen</span></a></li>
<li class="abstand"><a href="ermaessigung.php" target="eingabe_haupt"><span>2.) Ermäßigungen</span></a></li>
<li class="abstand"><a href="erfassen_eingabe.php?new=1" target="eingabe_haupt"><span>3.) Deputate erfassen</span></a></li>
<li class="abstand"><a href="erfassen_sonstige.php" target="eingabe_haupt"><span>4.) Sonstige Deputate</span></a></li>
<li class="abstand"><a href="abschlussarbeiten.php" target="eingabe_haupt"><span>5.) Abschlussarbeiten</span></a></li>
<li class="abstand"><a href="jahresabschluss.php" target="eingabe_haupt"><span>6.) Jahresabschluss</span></a></li>
<li class="abstand"><a href="erfassen_status.php?id=1" target="eingabe_haupt"><span>Ausdruck</span></a></li>
</ul>
<!--
<h3><span onmousemove="if(document.searchform)document.searchform.patrone.focus();return false;">Suche nach ID</span></h3>
<ul>
<li class="abstand"> <input class="eingabe_search" type="text" id="suchid" name="suchid" onkeyup="ajax_showOptions(this,'getWord',event)"></li>
<p align="right"><input type="submit" value="suche" name="b1" /></p> <!-- Auf Button kann verzichtet werden
</ul>
-->
</div>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,799 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:05:06
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\jahresabschluss.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b4129f3149_20297792',
'file_dependency' =>
array (
'c961e2e3370a2f179da0f2f6117fbaef56e86944' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\jahresabschluss.html',
1 => 1573106703,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b4129f3149_20297792 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<style type='text/css'>
.nextprev:link, .nextprev:visited {
background-color: #D6DFF7;
color: black;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
.nextprev:active, .nextprev:hover {
background-color: #6487DC;
color: #FFFFFF;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jaabschl_titel']->value;?>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['jaabschl_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_error_text']->value;?>
</td>
</tr>
</table>
<?php }?>
<br />
Ermäßigungen werden derzeit nicht angezeigt: Programmierung noch nicht abgeschlossen
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Funktion</b>
</td>
<td>
<b>Beginn</b>
</td>
<td>
<b>Ende</b>
</td>
<td>
<b>SWS</b>
</td>
<td align="right" width="20%">
<b>LVS (Jahressollwert: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
)</b>
</td>
<tr>
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] = $__section_table_data0_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['art'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['funktion'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['beginn'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ende'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['sws'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['lvs'];?>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
<tr>
<td colspan="6" rowspan=2>&nbsp;</td>
<td align="right">
<b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
</b>
</td>
</tr>
<tr>
<td align="right">
<b>Zu leistende LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_zu_leisten']->value;?>
</b><br>
<i><small>(Rechenweg: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
- <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
)</small></i>
</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
</td>
<tr>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] = $__section_table_data1_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['std'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Sonstige Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Name</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Semester</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td width="20%">
&nbsp;
</td>
<tr>
<?php
$__section_table_data3_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_3_total = $__section_table_data3_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_3_total != 0) {
for ($__section_table_data3_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_3_iteration <= $__section_table_data3_3_total; $__section_table_data3_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_3_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Gesamtbetrachtung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
Erfasste Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Sonstige Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Erfasste Abschlussarbeiten
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
<b>Jahressumme</b>
</td>
<td align="right" width="20%">
<b><?php echo $_smarty_tpl->tpl_vars['abschluss_gesamt']->value;?>
</b>
</td>
<td width="20%">&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Synopse <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Anfangsstand</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres</b>
</td>
<td>
<b>Übertrag Folgejahr</b>
</td>
</tr>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_endwert_vorjahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_soll']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_ist']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_uber_unter_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_abbau_jahr']->value;?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_verfall_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_verfall']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt_nach_verfall']->value;?>
</td>
</tr>
<tr>
<td colspan=10>
<br>
<b>Veränderungen der Vorjahre durch das aktuelle Jahr</b>
</td>
</tr>
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Jahresendstand bisher</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres alt</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres neu</b>
</td>
</tr>
<?php
$__section_table_data4_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4'] : false;
$__section_table_data4_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data4']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data4_4_total = $__section_table_data4_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = new Smarty_Variable(array());
if ($__section_table_data4_4_total != 0) {
for ($__section_table_data4_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] = 0; $__section_table_data4_4_iteration <= $__section_table_data4_4_total; $__section_table_data4_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['vorjahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt_nach_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['soll'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['ist'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['uber_unter_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['differenz'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['endwert'];?>
</td>
</tr>
<?php
}
}
if ($__section_table_data4_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = $__section_table_data4_4_saved;
}
?>
<tr>
</table>
</fieldset>
<br>
<?php if ($_smarty_tpl->tpl_vars['jaabschl_closed']->value == 0) {?>
<table valign='middle' style='border-top: 2px solid #6487DC; border-bottom: 2px solid #6487DC;' width='100%' align='center' border='0' cellpadding='0' cellspacing='0'>
<tbody>
<tr>
<td valign='middle' width='100%' height='30px' class='nextprev'>
<a href='?action=abschluss' class='nextprev'><font size='3'>&nbsp;</font>Studienjahr abschließen und absenden<font size='3'>&nbsp;</font></a>
</td>
</tr>
</tbody>
</table>
<?php }?>
<br>
<br
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Sind Sie sicher, dass sie das aktuelle Jahr <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
abschließen möchten?
<br>
Danach sind keine Änderungen mehr möglich!
<br>
<br>
<input type="button" onclick="location.href='?action=abschluss2';" value="Ja" />&nbsp;<input type="button" onclick="location.href='?';" value="Nein" />
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss2') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Der Jahrgang <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
wurde gespeichert!
<br>
<br>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,46 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-15 10:57:20
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\admin_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d12bf0af8350_00128514',
'file_dependency' =>
array (
'ca1560af870491da7c1dc478be38d8df47940989' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\admin_frame.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d12bf0af8350_00128514 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_admin" scrolling="auto" marginwidth="10" marginheight="14" namo_target_frame="detail" src="menu_admin.php" />
<frame name="admin_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe_admin.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,359 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_ruhestand.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3a9a4fc6_76165568',
'file_dependency' =>
array (
'cddbb691d938529383fb8cd0e0aab9057d6f2685' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_ruhestand.html',
1 => 1656505616,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3a9a4fc6_76165568 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<!--
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['ruhestand_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['ruhestand_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['ruhestand_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Letzter Arbeitstag (Monatsende):
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['ruhestand_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_lastday" id="beginn_lastday" value="<?php echo $_smarty_tpl->tpl_vars['ruhestand_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweise</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Professoren*Professorinnen gehen immer zu Semesterende in Pension (entweder 31.08. oder 28.02.)</li>
<li>Dauerhaft abgeordnete Dozierende können immer zum Monatsende in Pension eintreten.</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Letzter Arbeitstag</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['ruhestand_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,251 @@
<?php
/* Smarty version 3.1.29, created on 2019-07-26 06:57:24
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\teilzeit.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d3a8834837d15_25138896',
'file_dependency' =>
array (
'd17db3aca0c396c7f98ea5127f1b46f87682dcaa' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\teilzeit.html',
1 => 1564117031,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d3a8834837d15_25138896 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type="text/javascript" src="jquery/jquery-1.9.1.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['tz_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['tz_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Teilzeit erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Prozent
</td>
<td valign="top">
<select size="1" id='umfang' name='umfang'>
<option value="1.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "1.00") {?> selected <?php }?>>100&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.95" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.95") {?> selected <?php }?>>95&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.90" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.90") {?> selected <?php }?>>90&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.85" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.85") {?> selected <?php }?>>85&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.80" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.80") {?> selected <?php }?>>80&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.75" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.75") {?> selected <?php }?>>75&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.70" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.70") {?> selected <?php }?>>70&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.65" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.65") {?> selected <?php }?>>65&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.60" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.60") {?> selected <?php }?>>60&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.55" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.55") {?> selected <?php }?>>55&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.50" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.50") {?> selected <?php }?>>50&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.45" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.45") {?> selected <?php }?>>45&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.40" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.40") {?> selected <?php }?>>40&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.35" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.35") {?> selected <?php }?>>35&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.30" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.30") {?> selected <?php }?>>30&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.25" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.25") {?> selected <?php }?>>25&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.20" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.20") {?> selected <?php }?>>20&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.15" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.15") {?> selected <?php }?>>15&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.10" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.10") {?> selected <?php }?>>10&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.05" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.05") {?> selected <?php }?>>5&nbsp;%&nbsp;&nbsp;&nbsp;</option>
<option value="0.00" <?php if ($_smarty_tpl->tpl_vars['tz_value_umfang']->value == "0.00") {?> selected <?php }?>>0&nbsp;%&nbsp;&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Beginn der Funktion
</td>
<td>
<input type="date" name="beginn_teilzeit" id="beginn_teilzeit" value="<?php echo $_smarty_tpl->tpl_vars['tz_value_beginn']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine ältere Teilzeit endet dann, wenn eine neue Teilzeit erfasst wird.</li>
<li>Es wird immer der Monatserste als Beginntag festgelegt!</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<br>
<b>Basiswert der Lehrveranstaltungsstunden in diesem Studienjahr: <?php echo $_smarty_tpl->tpl_vars['tz_baselvs']->value;?>
</b>
<br>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['prozent'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dad'];?>
><img title = "Teilzeit bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&dad=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dad'];?>
"><img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<tr>
<td colspan="2">&nbsp;</td>
<td align="right">EVTL FALSCH. Reihenfolge für Abzüge berücksichtigen. Haug 25.7.19<b>Lehrveranstaltungsstunden: <?php echo $_smarty_tpl->tpl_vars['tz_value_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,48 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:44:23
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\indexframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab91f7d83611_15749130',
'file_dependency' =>
array (
'd83cd1495627f335e0f515e09f48b28d630487bf' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\indexframe.html',
1 => 1520588407,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab91f7d83611_15749130 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="103, 79%" cols="1*" border="0">
<frame name="banner" scrolling="no" marginwidth="10" marginheight="0" namo_target_frame="detail" src="titel.php" noresize>
<frameset rows="1*" cols="100%">
<frame name="detail" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,48 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:43
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\indexframe.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b31f0feb63_36667296',
'file_dependency' =>
array (
'df194e32ee6b93f6569b565298d40797fa046a91' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\indexframe.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b31f0feb63_36667296 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['global_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<style type='text/css'>
</style>
<frameset rows="103, 79%" cols="1*" border="0">
<frame name="banner" scrolling="no" marginwidth="10" marginheight="0" namo_target_frame="detail" src="titel.php" noresize>
<frameset rows="1*" cols="100%">
<frame name="detail" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,359 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 14:27:00
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_ruhestand.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bc45148a35c0_31893758',
'file_dependency' =>
array (
'df31085a49f66ea76afdae9d000493950233711f' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_ruhestand.html',
1 => 1656505616,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bc45148a35c0_31893758 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<!--
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['ruhestand_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['ruhestand_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['ruhestand_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Letzter Arbeitstag (Monatsende):
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['ruhestand_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_lastday" id="beginn_lastday" value="<?php echo $_smarty_tpl->tpl_vars['ruhestand_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweise</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Professoren*Professorinnen gehen immer zu Semesterende in Pension (entweder 31.08. oder 28.02.)</li>
<li>Dauerhaft abgeordnete Dozierende können immer zum Monatsende in Pension eintreten.</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Letzter Arbeitstag</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['ruhestand_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,239 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-06 09:18:31
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_behinderung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d720847ea2e98_53721307',
'file_dependency' =>
array (
'e12f995dfcd26bf36446b9a8892c7dc6b2547556' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_behinderung.html',
1 => 1567754306,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d720847ea2e98_53721307 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['beh_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['beh_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Behinderungsgrad erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
behinderungsgrad der Behinderung
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
"> %-->
<input type="text" class="spinner" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"> %
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine Schwerbehinderung wird rückwirkend auf das Studienjahr gewährt.</li>
<li>Der Behinderungsgrad wird mit der LVS verrechnet (594LVS x 50% Behinderung = 297 LVS neu)</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasster Behinderungsgrad</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>behinderungsgrad</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['behinderungsgrad'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Behinderungsgrad bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Behinderungsgrad l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Teilzeit l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,414 @@
<?php
/* Smarty version 3.1.29, created on 2022-07-21 07:59:22
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_abordnung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62d8eb3a9b9565_46430409',
'file_dependency' =>
array (
'e3881ae9ad048a609332655b157da29a4c93e8f8' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erm_abordnung.html',
1 => 1656482878,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62d8eb3a9b9565_46430409 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<!--
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['abord_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['abord_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['abord_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Beginn des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende des Forschungssemesters / Praxissemesters / der Abordnungen, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['abord_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<!--
<td>
<b>Funktion</b>
</td>
-->
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<!--
<td align="right">
<b>Ermäßigung SWS</b>
</td>
-->
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
-->
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abord_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,44 @@
<?php
/* Smarty version 3.1.29, created on 2019-06-27 12:58:40
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\eingabe_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d14a160c026c5_30112319',
'file_dependency' =>
array (
'e6f0ce3c3978bb1f20e8b93154046885ea2653d8' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\eingabe_frame.html',
1 => 1561633117,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d14a160c026c5_30112319 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_eingabe" scrolling="auto" marginwidth="10" marginheight="14" src="menu_eingabe.php">
<frame name="eingabe_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="jahrgang.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,427 @@
<?php
/* Smarty version 3.1.29, created on 2019-09-06 10:03:58
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\erm_freist_forschung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5d7212ee077dc4_85340512',
'file_dependency' =>
array (
'e8cdad19d42f1744c7dd6c430c71a4a32de270aa' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\erm_freist_forschung.html',
1 => 1567757032,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5d7212ee077dc4_85340512 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
<?php echo '<script'; ?>
type="text/javascript" >
function loader(){
if(document.erfassen)document.erfassen.sws.focus();return false;
}
<?php echo '</script'; ?>
>
</head>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
<body onload="setTimeout(loader, 1500);">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist tagesgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>
</ul>
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Berechnung übernehmen und speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<td align="right">
<b>Ermäßigung LVS</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:47:38
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\index.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab92ba199ea1_49279791',
'file_dependency' =>
array (
'e9f02d09ca5efc040a39f1586a40c5efc6922bff' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\index.html',
1 => 1520588374,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab92ba199ea1_49279791 ($_smarty_tpl) {
?>
<!-- index gegen LDAP und DB bei externer Kennung-->
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_login.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery-1.5.1.min.js"><?php echo '</script'; ?>
>
<!-- DATEI GIBTS NICHT <?php echo '<script'; ?>
>!window.jQuery && document.write('<?php echo '<script'; ?>
src="jquery-1.4.3.min.js"><\/script>');<?php echo '</script'; ?>
>-->
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(document).ready(function() {
$(".box").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : true,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
<?php echo '</script'; ?>
>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['index_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<?php if ($_smarty_tpl->tpl_vars['index_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['index_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_user']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="text" name="user" value="<?php echo $_smarty_tpl->tpl_vars['index_user']->value;?>
" tabindex="1"></td>
</td>
</tr>
<tr>
<td width="40%">
<strong><?php echo $_smarty_tpl->tpl_vars['index_field_pass']->value;?>
</strong>
</td>
<td>
<input class="eingabe" type="password" name="password" tabindex="2"></td>
</td>
</tr>
<tr>
<td width="100%" colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width="40%">
&nbsp;
</td>
<td>
<input type="submit" value="Login">
</td>
</tr>
</table>
</td>
</tr>
</table>
<p align="center">
<font color="red"><?php echo $_smarty_tpl->tpl_vars['index_register']->value;?>
</font>
<!--
<br />
<br />
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
-->
</p>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,44 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:14
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/eingabe_frame.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b672cbc0d2_06496550',
'file_dependency' =>
array (
'eb6f7000d6130ea2eac7d02cd5f0c893ab85a797' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/eingabe_frame.html',
1 => 1561633116,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b672cbc0d2_06496550 ($_smarty_tpl) {
?>
<html>
<head>
<title>Deputatverwaltung</title>
<link type="text/css" rel="stylesheet" href="css/styles_refill.css">
</head>
<frameset rows="1*" cols="250, 76%" border="0">
<frame name="menu_eingabe" scrolling="auto" marginwidth="10" marginheight="14" src="menu_eingabe.php">
<frame name="eingabe_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="jahrgang.php">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html><?php }
}

View File

@ -0,0 +1,60 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:41:58
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\hauptframe_admin.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab916670bfc5_25663930',
'file_dependency' =>
array (
'eb81eff92cf786e7ce1436a3ff3805017ceee233' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\hauptframe_admin.html',
1 => 1519650278,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab916670bfc5_25663930 ($_smarty_tpl) {
?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</title>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="90%" height="90%">
<tr>
<td align="center">
<b><?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text1']->value;?>
</b>
<br />
<br />
<br />
<?php echo $_smarty_tpl->tpl_vars['hauptframe_admin_text2']->value;?>
</td>
</tr>
</table>
</div>
</body>
</html><?php }
}

View File

@ -0,0 +1,799 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 17:05:08
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\jahresabschluss.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9c724c8e256_44354960',
'file_dependency' =>
array (
'ebfc88e08e42fb38158f01c6e3f7b1997dd27636' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\jahresabschluss.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9c724c8e256_44354960 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<style type='text/css'>
.nextprev:link, .nextprev:visited {
background-color: #D6DFF7;
color: black;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
.nextprev:active, .nextprev:hover {
background-color: #6487DC;
color: #FFFFFF;
font-weight:bold;
text-decoration: none;
width: 99%;
display: block;
font-size: 8pt;
text-align: center;
padding: 1px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['jaabschl_titel']->value;?>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['jaabschl_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_error_text']->value;?>
</td>
</tr>
</table>
<?php }?>
<br />
Ermäßigungen werden derzeit nicht angezeigt: Programmierung noch nicht abgeschlossen
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Funktion</b>
</td>
<td>
<b>Beginn</b>
</td>
<td>
<b>Ende</b>
</td>
<td>
<b>SWS</b>
</td>
<td align="right" width="20%">
<b>LVS (Jahressollwert: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
)</b>
</td>
<tr>
<?php
$__section_table_data0_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0'] : false;
$__section_table_data0_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data0']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data0_0_total = $__section_table_data0_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = new Smarty_Variable(array());
if ($__section_table_data0_0_total != 0) {
for ($__section_table_data0_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] = 0; $__section_table_data0_0_iteration <= $__section_table_data0_0_total; $__section_table_data0_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] = $__section_table_data0_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['art'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['funktion'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['beginn'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['ende'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['sws'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data0']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data0']->value['index'] : null)]['lvs'];?>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data0_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data0'] = $__section_table_data0_0_saved;
}
?>
<tr>
<td colspan="6" rowspan=2>&nbsp;</td>
<td align="right">
<b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
</b>
</td>
</tr>
<tr>
<td align="right">
<b>Zu leistende LVS: <?php echo $_smarty_tpl->tpl_vars['erf_value_zu_leisten']->value;?>
</b><br>
<i><small>(Rechenweg: <?php echo $_smarty_tpl->tpl_vars['erf_value_soll_lvs']->value;?>
- <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr_erm']->value;?>
)</small></i>
</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<!--
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
</td>
<tr>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] = $__section_table_data1_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['veranstaltung'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['gemlv_form'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['std'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Sonstige Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right" width="20%">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td width="20%">
<b>Hinweise</b>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_2_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Abschlussarbeiten</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td width=20>
<b>lfd.Nr.</b>
</td>
<td>
<b>Name</b>
</td>
<td>
<b>Art</b>
</td>
<td>
<b>Semester</b>
</td>
<td align="right" width="20%">
<b>LVS</b>
</td>
<td width="20%">
&nbsp;
</td>
<tr>
<?php
$__section_table_data3_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_3_total = $__section_table_data3_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_3_total != 0) {
for ($__section_table_data3_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_3_iteration <= $__section_table_data3_3_total; $__section_table_data3_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] = $__section_table_data3_3_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['abschlussarbeit'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['semesterbez'];?>
</td>
<td align="right" width="20%">
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['lvs'];?>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data3_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_3_saved;
}
?>
<tr>
<td colspan="4">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Gesamtbetrachtung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
Erfasste Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erf_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Sonstige Deputate
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
Erfasste Abschlussarbeiten
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['abschluss_value_summe_lvs']->value;?>
</td>
<td width="20%">&nbsp;</td>
</tr>
<tr>
<td>
<b>Jahressumme</b>
</td>
<td align="right" width="20%">
<b><?php echo $_smarty_tpl->tpl_vars['abschluss_gesamt']->value;?>
</b>
</td>
<td width="20%">&nbsp;</td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend>
<b>Synopse <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Anfangsstand</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres</b>
</td>
<td>
<b>Übertrag Folgejahr</b>
</td>
</tr>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_endwert_vorjahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_soll']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_ist']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_uber_unter_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_abbau_jahr']->value;?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['jaabschl_verfall_jahr']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_verfall']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt']->value;?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['jaabschl_dep_gesamt_nach_verfall']->value;?>
</td>
</tr>
<tr>
<td colspan=10>
<br>
<b>Veränderungen der Vorjahre durch das aktuelle Jahr</b>
</td>
</tr>
<tr>
<td>
<b>Jahr</b>
</td>
<td>
<b>Jahresendstand bisher</b>
</td>
<td>
<b>Deputatsumme Soll</b>
</td>
<td>
<b>Deputatsumme Ist</b>
</td>
<td>
<b>Über-/Unterdeputat im aktuellen Jahr</b>
</td>
<td>
<b>Abbau Unterdeputat durch Überdeputat Vorjahre</b>
</td>
<td>
<b>Verfall aus Jahr</b>
</td>
<td>
<b>Verfallene Std</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres alt</b>
</td>
<td>
<b>Über- Unterdeputat des Jahres neu</b>
</td>
</tr>
<?php
$__section_table_data4_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4'] : false;
$__section_table_data4_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data4']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data4_4_total = $__section_table_data4_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = new Smarty_Variable(array());
if ($__section_table_data4_4_total != 0) {
for ($__section_table_data4_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] = 0; $__section_table_data4_4_iteration <= $__section_table_data4_4_total; $__section_table_data4_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['vorjahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt_nach_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['soll'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['ist'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['uber_unter_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['differenz'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall_jahr'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_verfall'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['dep_gesamt'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data4']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data4']->value['index'] : null)]['endwert'];?>
</td>
</tr>
<?php
}
}
if ($__section_table_data4_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data4'] = $__section_table_data4_4_saved;
}
?>
<tr>
</table>
</fieldset>
<br>
<?php if ($_smarty_tpl->tpl_vars['jaabschl_closed']->value == 0) {?>
<table valign='middle' style='border-top: 2px solid #6487DC; border-bottom: 2px solid #6487DC;' width='100%' align='center' border='0' cellpadding='0' cellspacing='0'>
<tbody>
<tr>
<td valign='middle' width='100%' height='30px' class='nextprev'>
<a href='?action=abschluss' class='nextprev'><font size='3'>&nbsp;</font>Studienjahr abschließen und absenden<font size='3'>&nbsp;</font></a>
</td>
</tr>
</tbody>
</table>
<?php }?>
<br>
<br
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Sind Sie sicher, dass sie das aktuelle Jahr <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
abschließen möchten?
<br>
Danach sind keine Änderungen mehr möglich!
<br>
<br>
<input type="button" onclick="location.href='?action=abschluss2';" value="Ja" />&nbsp;<input type="button" onclick="location.href='?';" value="Nein" />
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'abschluss2') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Jahrgang abschließen</div>
</div>
</div>
<form action=?action=abschluss2 method="POST">
<div class="pat_list_box">
<p align="center">
Der Jahrgang <?php echo $_smarty_tpl->tpl_vars['jaabschl_jahrgang']->value;?>
wurde gespeichert!
<br>
<br>
</form>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-28 10:36:45
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\erm_freist_rektorat_dekanat.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62babd9d47bb74_89184876',
'file_dependency' =>
array (
'eea37f0f72e9a4bb3d055cf3b20d50074f7f82c2' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\erm_freist_rektorat_dekanat.html',
1 => 1656405393,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62babd9d47bb74_89184876 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,455 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 07:40:09
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_freist_forschung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bbe5b9550a91_95768131',
'file_dependency' =>
array (
'f2158dcc093e801a3b50e96b54a09cd0f03527df' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_freist_forschung.html',
1 => 1656405946,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bbe5b9550a91_95768131 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
change: function (event, ui) {
calc_erm_78();
},
spin: function (event, ui) {
calc_erm_78();
},
start: function (event, ui) {
calc_erm_78();
},
stop: function (event, ui) {
calc_erm_78();
},
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
<?php echo '</script'; ?>
>
-->
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<!--
<?php echo '<script'; ?>
type="text/javascript">
function calc_erm_78() {
/*
Diese Funktion berechnet die LVS
*/
var sws = document.getElementById('sws').value;
var beginn_funktion = document.getElementById('beginn_funktion').value;
var ende_funktion = document.getElementById('ende_funktion').value;
$.ajax({
type: 'POST',
url: 'fetch_lvs_erm_7-8.php',
data: {
get_option: sws,
get_beginn_funktion: beginn_funktion,
get_ende_funktion: ende_funktion
},
success: function (response) {
var str1 = response.split("||");
document.getElementById("gesamtvolumen_count").innerHTML = "<strong>" + str1[0] + "</strong>";
/* LVS Wert in hidden Inputfeld setzen, damit es mit $_POST übertragen wird beim speichern*/
document.getElementById("lvs").value = str1[1];
}
});
}
<?php echo '</script'; ?>
>
-->
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<!--
<?php if ($_smarty_tpl->tpl_vars['freistrekto_status']->value == 'edit') {?>
<?php echo '<script'; ?>
type="text/javascript">
setTimeout(calc_erm_78, 100);
<?php echo '</script'; ?>
>
<?php }?>
-->
<body onload="if(document.erfassen)document.erfassen.sws.focus();return false;">
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['freistrekto_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['freistrekto_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<fieldset>
<legend>
<b>Ermäßigung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Funktion
</td>
<td valign="top">
<select name="funktion" id="funktion" size=1>
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid'];?>
" <?php if ($_smarty_tpl->tpl_vars['freistrekto_value_funktion']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['dkeid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Angabe der Deputatsermäßigung in SWS
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onchange='calc_erm_78();'>-->
<!-- onchange='calc_erm_78();' funktioniert bei Spinner nicht. Das muss oben in das javascript rein-->
<input type="text" class="spinner" name="sws" id="sws" size="101" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Beginn der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="beginn_funktion" id="beginn_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumvon']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<td>
Ende der Funktion, falls nicht ganzjährig
</td>
<td>
<!--<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
" onchange='calc_erm_78();'>-->
<input type="text" class="datepicker" name="ende_funktion" id="ende_funktion" value="<?php echo $_smarty_tpl->tpl_vars['freistrekto_value_datumbis']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Berechnete LVS Stunden</b><br>
<ul>
<li>Die Berechnung der LVS-Stunden ist monatsgenau</li>
<li>Die Datumsgrenzen sind das jeweilige Studienjahr (01.09 - 31.08)</li>
<li>Auch wenn die Ermäßigung mehrjährig sein sollte, gilt das einzelne Studienjahr als Berechnungsgrundlage (01.09 - 31.08)</li>
<!--<li>Rechenweg: SWS x Semesterwochen x ausgeübte Tage der Funktion x Anzahl der Tage im Jahr (365 bzw. 366)</li>-->
</ul>
<!--
<div id="gesamtvolumen_count"></div>
<input type="hidden" name="lvs" id="lvs" size="101">
-->
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Funktion</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Ende</b>
</td>
<td align="right">
<b>Ermäßigung SWS</b>
</td>
<!--
<td align="right">
<b>Ermäßigung LVS</b>
</td>
-->
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['funktion'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['ende'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['sws'];?>
</td>
<!--
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
-->
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<!--
<tr>
<td colspan="5">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['freistrekto_value_summe_jahr']->value;?>
</b></td>
<td>&nbsp;</td>
</tr>
-->
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,408 @@
<?php
/* Smarty version 3.1.29, created on 2020-01-03 11:23:48
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erf_fz.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5e0f1634cf9d42_64651944',
'file_dependency' =>
array (
'f3231dc846c774d27afdeeee5817ac782ff60a26' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erf_fz.html',
1 => 1523256400,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5e0f1634cf9d42_64651944 ($_smarty_tpl) {
?>
<?php if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['fz_titel']->value;?>
</div>
</div>
</div>
<form action="?action=lbfzerf" method='post' name='erfassen'>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Funktion auswählen</b>
</legend>
<br />
<br />
<p align="center">
<select size="10" id='funktion' name='funktion'>
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['kfid'];?>
"><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
<br />
<br />
<br />
<input type="submit" name="senden" value="Weiter">
</p>
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['action']->value == 'lbfzerf') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<!-- Kalender Beginn // -->
<link rel='stylesheet' href='./datepicker/dynCalendar.css' type='text/css' media='screen'>
<?php echo '<script'; ?>
src='./datepicker/browserSniffer.js' type='text/javascript' language='javascript'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='./datepicker/dynCalendar.js' type='text/javascript' language='javascript'><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type='text/javascript'>
<!--
// Calendar callback. When a date is clicked on the calendar
// this function is called so you can do as you want with it
function calendarCallback(date, month, year, pos)
{
if(date<10){date='0'+date;}
if(month<10){month='0'+month;}
date_tag = date;
date_mon = month;
date_jahr = year;
document.getElementById('tag'+pos).value = date_tag;
document.getElementById('mon'+pos).value = date_mon;
document.getElementById('jahr'+pos).value = date_jahr;
}
// -->
<?php echo '</script'; ?>
>
<!-- Kalender Ende // -->
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
function start() {
if (document.adm_anleg)
document.adm_anleg.atelier.focus();
return false;
}
//-->
<?php echo '</script'; ?>
>
</head>
<body onload="start();">
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['fz_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<form action=?action=save method="POST" name="adm_anleg">
<fieldset>
<legend><b>Erfassung</b></legend>
<br>
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="194">
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_betrag']->value;?>
*</b>
</td>
<td width="60%">
<input align="right" type="number" min="0.00" step="0.01" name="wert" value='<?php echo $_smarty_tpl->tpl_vars['fz_wert']->value;?>
'> &euro;
</td>
</tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_starttag']->value;?>
*</b>
</td>
<td width="60%">
<input type='text' name='tag1' id='tag1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_tag']->value;?>
' size=1>.<input type='text' name='mon1' id='mon1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_mon']->value;?>
' size=1>.<input type='text' name='jahr1' id='jahr1' value='<?php echo $_smarty_tpl->tpl_vars['fz_startdat_jahr']->value;?>
' size=3>
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
startdat = new dynCalendar('startdat', 'calendarCallback', './datepicker/images/', '', '1');
//-->
<?php echo '</script'; ?>
>
</td>
</tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_endtag']->value;?>
</b>
</td>
<td width="60%">
<input type='text' name='tag3' id='tag3' value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_tag']->value;?>
' size=1>.<input type='text' name='mon3' id='mon3'value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_mon']->value;?>
' size=1>.<input type='text' name='jahr3' id='jahr3' value='<?php echo $_smarty_tpl->tpl_vars['fz_enddat_jahr']->value;?>
' size=3>
<?php echo '<script'; ?>
language='JavaScript' type='text/javascript'>
<!--
endtag = new dynCalendar('endtag', 'calendarCallback', './datepicker/images/', '', '3');
//-->
<?php echo '</script'; ?>
>
</td>
<tr>
<tr>
<td width="40%">
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_prof']->value;?>
</b>
</td>
<td width="60%">
<select size="5" id='prof' name='prof'>
<?php
$__section_table_data3_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3'] : false;
$__section_table_data3_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data3']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data3_1_total = $__section_table_data3_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = new Smarty_Variable(array());
if ($__section_table_data3_1_total != 0) {
for ($__section_table_data3_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] = 0; $__section_table_data3_1_iteration <= $__section_table_data3_1_total; $__section_table_data3_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['imtuid'];?>
" <?php if ($_smarty_tpl->tpl_vars['fz_imtuid']->value == $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['imtuid']) {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['titel'];?>
<?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['table_data3']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data3']->value['index'] : null)]['vorname'];?>
&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data3_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data3'] = $__section_table_data3_1_saved;
}
?>
</select>
</td>
<tr>
<tr>
<td width="40%">
* = Pflichtfelder
</td>
<td width="60%">
&nbsp;
</td>
</tr>
</table>
</fieldset>
<br>
<fieldset>
<legend><b>Gespeicherte Zulagen</b></legend>
<table width='100%' border='0'>
<tr>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_starttag']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_betrag']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_name']->value;?>
</b>
</td>
<td>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_endtag']->value;?>
</b>
</td>
<td align='center'>
<b><?php echo $_smarty_tpl->tpl_vars['fz_field_aktionen']->value;?>
</b>
</td>
<tr>
<?php
$__section_table_data2_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_2_total = $__section_table_data2_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_2_total != 0) {
for ($__section_table_data2_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_2_iteration <= $__section_table_data2_2_total; $__section_table_data2_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
?>
<tr>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['startdat_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['wert'];?>
&nbsp;&euro;
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['name'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['enddat_form'];?>
</td>
<td align='center'>
<a href="?action=lbfzerf&edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lbfzid'];?>
"><img title = "Daten bearbeiten" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&lbfzid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lbfzid'];?>
"><img title = "Daten l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
<tr>
<?php
}
}
if ($__section_table_data2_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_2_saved;
}
?>
</table>
<br>
</fieldset>
<p align='center'>
<input type="submit" value="Speichern" name="B1">
</p>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'save') {?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_pc.php" type="text/css">
<title><?php echo $_smarty_tpl->tpl_vars['fz_inserterr_titel']->value;?>
</title>
</head>
<body>
<table border="0" style="border-collapse: collapse" width="100%" cellpadding="0" height="100%" id="table1">
<tr>
<td>
<div align="center">
<table cellspacing="0" cellpadding="0" width="550" border="0">
<tr>
<td width="10" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e1.gif">
<img height="40" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td nowrap="nowrap" align="left" width="3%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_top.gif" valign="top"></td>
<td width="95%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_top.gif">
<img height="10" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="1"><br>
<span class="sh"><?php echo $_smarty_tpl->tpl_vars['fz_save_titel']->value;?>
</span><br>
<img height="5" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="1">
</td>
<td nowrap="nowrap" align="right" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e2.gif">
<img height="40" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
<tr>
<td width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_l.gif">
<img height="1" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td colspan="2">
<br>
<p align="left"><b><?php echo $_smarty_tpl->tpl_vars['fz_save_text']->value;?>
</b></p>
<p align="center"><a href="?">
<img border="0" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/zurueck.gif" width="77" height="22"></a><br>
</p>
<p></p>
<p></p>
<p></p>
<p></p>
<p><br>
</p>
</td>
<td width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_r.gif">
<img height="1" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
<tr>
<td nowrap="nowrap" align="left" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e3.gif">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
<td nowrap="nowrap" align="left" width="98%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_bottom.gif" colspan="2">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="8">
</td>
<td nowrap="nowrap" align="right" width="1%" background="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/box_e4.gif">
<img height="16" src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/blank.gif" width="22">
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>
<?php }?>
<?php }
}

View File

@ -0,0 +1,295 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-29 07:40:07
from "C:\xampp_7.4.24\htdocs\deputat\templates\modern\erm_behinderung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62bbe5b7dfa323_26901258',
'file_dependency' =>
array (
'f5ad12c22a96080a24faf54d491cf149bad62fa9' =>
array (
0 => 'C:\\xampp_7.4.24\\htdocs\\deputat\\templates\\modern\\erm_behinderung.html',
1 => 1656339889,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62bbe5b7dfa323_26901258 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
type="text/javascript">
$(function() {
$(".datepicker").datepicker({
prevText: '&#x3c; zur&uuml;ck', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
changeMonth: true,
changeYear: true,
nextText: 'Vor &#x3e;', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'Heute', currentStatus: '',
todayText: 'Heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schlie&szlig;en', closeStatus: '',
monthNames: ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','M&auml;r','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
weekStatus: 'Woche des Monats',
showMonthAfterYear: false,
showOn: 'focus',
firstDay: 1,
numberOfMonths : 1,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd.mm.yy",
showWeek: true
});
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
}
});
<?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.5,
numberFormat: "i",
min:0,
max:25,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.contentWindow.min.js'><?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='erfassen'>
<?php if ($_smarty_tpl->tpl_vars['beh_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['beh_error_text']->value;?>
</td>
</tr>
</table>
<br />
<br />
<?php }?>
<fieldset>
<legend>
<b>Höhe der prozentualen Ermäßigung</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Höhe der Ermäßigung in Prozent angeben.<br>
(Von der Personalabteilung gewährte Höhe)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
"> %-->
<input type="text" class="spinner" name="behinderung" id="behinderung" size="101" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_behinderungsgrad']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);"> %
</td>
</tr>
<tr>
<td>
Beginn der Ermäßigung
</td>
<td>
<input type="text" class="datepicker" name="beginn_behinderung" id="beginn_behinderung" value="<?php echo $_smarty_tpl->tpl_vars['beh_value_beginn']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
<tr>
<tr id="erm_freist_hinweis">
<td width="30%">
&nbsp;
</td>
<td valign="top">
<table width="70%" class="errorTable">
<tr>
<td>
<b>Hinweis</b><br>
<ul>
<li>Eine Schwerbehinderung wird monatsgenau gewährt.</li>
<li>Nimmt eine Ermäßigung der Schwerbehinderung zu bzw. ab, ist die Ermäßigung auf Monatsersten zu erfassen.</li>
<li>Die prozentulae Ermäßigung wird mit der LVS verrechnet (594LVS x 12% Ermäßigung aufgrund Behinderung => 522,72 Soll-LVS).</li>
<li>Betrachtet werden Zeiträume des Studienjahres: 01.09 - 31.08</li>
</ul>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Ermäßigung</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td align="right">
<b>Beginn</b>
</td>
<td align="right">
<b>Prozent</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_0_total = $__section_table_data2_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_0_total != 0) {
for ($__section_table_data2_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_0_iteration <= $__section_table_data2_0_total; $__section_table_data2_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_0_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['beginn_form'];?>
</td>
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['behinderungsgrad'];?>
%
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
><img title = "Ermäßigung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<?php if ($_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['nodel'] != 1) {?>
<a href="?action=del&deid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['deid'];?>
"><img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<!-- Es wird immer einen Startwert gesetzt beim anlegen einer Teilzeit, dieser darf nicht gelöscht werden für die Berechnung-->
<img title = 'Ermäßigung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_0_saved;
}
?>
</table>
</fieldset>
<br />
<br />
<br />
<br />
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,596 @@
<?php
/* Smarty version 3.1.29, created on 2018-03-16 10:44:30
from "D:\xampp\htdocs\kurs\utf8\deputat\templates\modern\rollen.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5aab91fe2764c8_81005601',
'file_dependency' =>
array (
'fd77bbad65098fbcff59b9732c8bf880af1a223b' =>
array (
0 => 'D:\\xampp\\htdocs\\kurs\\utf8\\deputat\\templates\\modern\\rollen.html',
1 => 1521021854,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5aab91fe2764c8_81005601 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_titel']->value;?>
</div>
</div>
</div>
<form action="?action=admin" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['rollen_pflichtfelder']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['rollen_error_text']->value;?>
</td>
</tr>
</table>
<br>
<?php }?>
<fieldset>
<legend>
<b>Rolle auswählen</b>
</legend>
<br />
<br />
<table cellspacing="1" cellpadding="1" width="100%" border="0">
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_auswahl']->value;?>
</strong>
</td>
<td>
<select size="5" name="rolle">
<?php
$__section_table_data_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data'] : false;
$__section_table_data_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data_0_total = $__section_table_data_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = new Smarty_Variable(array());
if ($__section_table_data_0_total != 0) {
for ($__section_table_data_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] = 0; $__section_table_data_0_iteration <= $__section_table_data_0_total; $__section_table_data_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['roid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['select'] == 'Y') {?> selected <?php }?>><?php echo $_smarty_tpl->tpl_vars['table_data']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data']->value['index'] : null)]['bezeichnung'];?>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data'] = $__section_table_data_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width=40<?php echo '%>';?>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_neu']->value;?>
</strong>
</td>
<td>
<strong><?php echo $_smarty_tpl->tpl_vars['rollen_field_bez']->value;?>
</strong><br>
<input type="text" name="rolle_neu" size="30">
</td>
</tr>
<tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td colspan="2" align="center">
&nbsp;
</td>
</tr>
<tr>
<td width=40<?php echo '%>';?>
&nbsp;
</td>
<td>
<input type="submit" name="senden" value="Weiter">
</td>
</tr>
</table>
<br />
<br />
</fieldset>
</form>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'admin') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
type='text/javascript' src='./overlib/overlib.js'><?php echo '</script'; ?>
>
<style type="text/css">
.link{
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_admin_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rolle bearbeiten</b>
</legend>
<br />
<br />
<table width="100%">
<tr>
<td width="19%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_bez']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_ren']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_del']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_zuw']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_inforights']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_infouser']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_ben_zuw']->value;?>
</td>
<td width="11%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['rollen_field_info_ohnerolle']->value;?>
</td>
</tr>
<tr>
<td width="19%">
<?php echo $_smarty_tpl->tpl_vars['rollen_bezeichnung']->value;?>
</td>
<td width="11%">
<a href=?action=edit><img title = "Rolle umbenennen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<!-- Wenn maximale Anzahl der Bef&uuml;llvarianten erreicht, dann ausgrauen-->
<?php if ($_smarty_tpl->tpl_vars['rollen_button_del']->value == '1') {?>
<a href=?action=del><img title = "Rolle l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
<?php } else { ?>
<img title="L&ouml;schen nicht m&ouml;glich, Anzahl Rechte/User > 0" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop_grey.png">
<?php }?>
</td>
<td width="11%">
<a href=?action=rechte><img title = "Rechte zuweisen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<a class=link href="javascript:void(0);" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_zugeordnete_rechte']->value;?>
', CAPTION, 'Zugeordnete Rechte: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_rechte']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber zugewiesene Rechte" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_rechte']->value;?>
)</a>
</td>
<td width="11%">
<a class=link href="javascript:void(0);" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_zugeordnete_user']->value;?>
', CAPTION, 'Zugeordnete Benutzer: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_user']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber zugewiesene Benutzer" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_user']->value;?>
)</a>
</td>
<td width="11%">
<a href="?action=user"><img title = "Benutzerverwaltung der Rolle" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
</td>
<td width="11%">
<a class=link href="?action=user" onmouseover="return overlib('<?php echo $_smarty_tpl->tpl_vars['rollen_user_ohnezugeordnete_rolle']->value;?>
', CAPTION, 'Benutzer ohne Rechte/Rollen: <?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_ohnerechte']->value;?>
', STATUS, '', ABOVE, TEXTFONTCLASS, 'text_overlib', TEXTSIZE, '10px', CAPTIONSIZE, '10px', CAPTIONFONT, 'Arial');" onmouseout="nd();"><img title="Informationen &uuml;ber Benutzer ohne Rechte/Rollen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/i.jpg">(<?php echo $_smarty_tpl->tpl_vars['rollen_anzahl_ohnerechte']->value;?>
)</a>
</td>
</tr>
</table>
<br><br>
<p align='center'>
<input type="button" value="Zur&uuml;ck" onclick="window.location.href = '?'">
</p>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'edit') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_edit_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rolle umbenennen</b>
</legend>
<br />
<br />
<form action=?action=edit1 method="POST">
<table border="0" cellpadding="0" cellspacing="0" style="border-width:0; border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="142">
<tr>
<td width='40%' style="border-style: none; border-width: medium" height="25">
<b><?php echo $_smarty_tpl->tpl_vars['rollen_edit_field_bez']->value;?>
</b>
</td>
<td width='60%' align="left" style="border-style: none; border-width: medium" height="25">
<input type="text" name="rolle_neu" value="<?php echo $_smarty_tpl->tpl_vars['rollen_edit_bez']->value;?>
" size="30">
</td>
</tr>
</table>
<br><br>
<p align='center'>
<input type="submit" value="Speichern" name="B1">
</p>
</form>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'rechte') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_rechte_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<legend>
<b>Rechte bearbeiten</b>
</legend>
<br />
<br />
<form action=?action=rechte1 method="POST" name="beleg1">
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="115">
<tr>
<td width="25%">
</td>
<td width="25%">&nbsp;</td>
<td width="25%">
<p>&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
<p align="center">
<select size="15" name="admre[]" multiple>
<?php
$__section_table_data1_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_1_total = $__section_table_data1_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_1_total != 0) {
for ($__section_table_data1_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_1_iteration <= $__section_table_data1_1_total; $__section_table_data1_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['reid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['select'] == '1') {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
(<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bereich'];?>
)</option>
<?php
}
}
if ($__section_table_data1_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_1_saved;
}
?>
</select>
<br>
<?php echo $_smarty_tpl->tpl_vars['rollen_rechte_subtitel']->value;?>
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
</td>
<td width="50%"colspan="2" align="center">
<input type="submit" value="Markierte Rechte vergeben" name="B1">
</td>
<td width="25%">
</td>
</tr>
</table>
</form>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
if ($_smarty_tpl->tpl_vars['action']->value == 'user') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['rollen_user_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<fieldset>
<br />
<br />
<form action=?action=user1 method="POST" name="beleg1">
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" id="AutoNumber1" height="115">
<tr>
<td width="25%">
</td>
<td width="25%">&nbsp;</td>
<td width="25%">
<p>&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
<p align="center">
<select size="10" name="user[]" multiple>
<?php
$__section_table_data1_2_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_2_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_2_total = $__section_table_data1_2_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_2_total != 0) {
for ($__section_table_data1_2_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_2_iteration <= $__section_table_data1_2_total; $__section_table_data1_2_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['imtuid'];?>
" <?php if ($_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['select'] == '1') {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['beschreibung'];?>
&nbsp;&nbsp;&nbsp;</option>
<?php
}
}
if ($__section_table_data1_2_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_2_saved;
}
?>
</select>
<br />
<?php echo $_smarty_tpl->tpl_vars['rollen_user_subtitel']->value;?>
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
<p>
</td>
<td width="50%" colspan="2">
&nbsp;
</td>
<td width="25%">
<p>
</td>
</tr>
<tr>
<td width="25%">
</td>
<td width="50%"colspan="2" align="center">
<input type="submit" value="Benutzer zur Rolle zuweisen" name="B1">
</td>
<td width="25%">
</td>
</tr>
</table>
</form>
<br />
<br />
<?php if ($_smarty_tpl->tpl_vars['rollen_rollenanz']->value > '0') {?>
<table width="100%">
<tr>
<td width="45%">
<b>Benutzer</b>
</td>
<td width="30%">
<b>Rollen</b>
</td>
<td align="right" width="20%">
<b>Rolle l&ouml;schen</b>
</td>
</tr>
<?php
$__section_outer_loop_3_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] : false;
$__section_outer_loop_3_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_outer_loop_3_total = $__section_outer_loop_3_loop;
$_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] = new Smarty_Variable(array());
if ($__section_outer_loop_3_total != 0) {
for ($__section_outer_loop_3_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] = 0; $__section_outer_loop_3_iteration <= $__section_outer_loop_3_total; $__section_outer_loop_3_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']++){
?>
<tr>
<td width="45%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['nachname'];?>
, <?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['vorname'];?>
</td>
<td width="30%" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php
$__section_inner_4_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_inner']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner'] : false;
$__section_inner_4_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner']) ? count($_loop) : max(0, (int) $_loop));
$__section_inner_4_total = $__section_inner_4_loop;
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = new Smarty_Variable(array());
if ($__section_inner_4_total != 0) {
for ($__section_inner_4_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] = 0; $__section_inner_4_iteration <= $__section_inner_4_total; $__section_inner_4_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']++){
?>
<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['bezeichnung'];?>
<br>
<?php
}
}
if ($__section_inner_4_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = $__section_inner_4_saved;
}
?>
</td>
<td width="20%" align="right" style="border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px">
<?php
$__section_inner_5_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_inner']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner'] : false;
$__section_inner_5_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner']) ? count($_loop) : max(0, (int) $_loop));
$__section_inner_5_total = $__section_inner_5_loop;
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = new Smarty_Variable(array());
if ($__section_inner_5_total != 0) {
for ($__section_inner_5_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] = 0; $__section_inner_5_iteration <= $__section_inner_5_total; $__section_inner_5_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']++){
?>
<a href="?action=deluserrol&roid=<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['roid_ges'];?>
&imtuid=<?php echo $_smarty_tpl->tpl_vars['outer_loop']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_outer_loop']->value['index'] : null)]['inner'][(isset($_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_inner']->value['index'] : null)]['imtuid'];?>
"><img title = "Rolle bei Benutzer l&ouml;schen" border="0" height=10 src="./templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a><br>
<?php
}
}
if ($__section_inner_5_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_inner'] = $__section_inner_5_saved;
}
?>
</td>
</tr>
<?php
}
}
if ($__section_outer_loop_3_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_outer_loop'] = $__section_outer_loop_3_saved;
}
?>
</table
<?php }?>
<br />
<br />
<p align="center">
<input type="button" value="Zur&uuml;ck" onclick="window.location.href = '?action=admin'">
&nbsp;
<input type="button" value="Ende" onclick="window.location.href = '?new=1'">
</p>
<br />
<br />
</fieldset>
<br />
</div>
</body>
</html>
<?php }
}
}

View File

@ -0,0 +1,173 @@
<?php
/* Smarty version 3.1.29, created on 2022-06-27 15:39:50
from "E:\xampp_7.4.12\htdocs\deputat\templates\modern\ermaessigung.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_62b9b326840457_33158536',
'file_dependency' =>
array (
'fdf587cdc44ae0228018e72aa6a4475245f25d12' =>
array (
0 => 'E:\\xampp_7.4.12\\htdocs\\deputat\\templates\\modern\\ermaessigung.html',
1 => 1655979697,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_62b9b326840457_33158536 ($_smarty_tpl) {
?>
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<?php echo '<script'; ?>
src='iframe-resizer-master/js/iframeResizer.min.js'><?php echo '</script'; ?>
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
margin-bottom: 5px;
}
.active, .accordion:hover {
background-color: #277DA8;
color: white;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
color: white;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div>Ermäßigungen <?php echo $_smarty_tpl->tpl_vars['erm_jahrgang']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erm_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erm_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erm_abschluss']->value == '0') {?>
<p>Indem Sie auf die Überschriften klicken können Sie die Teilbereiche auf- und zuklappen.</p>
<button class="accordion">1) Schwerbehinderung</button>
<div class="panel">
<iframe src='erm_behinderung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">2) Teilzeit</button>
<div class="panel">
<iframe src='erm_teilzeit.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">3) Mutterschutz/Elternzeit</button>
<div class="panel">
<iframe src='erm_mutterschutz.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">4) Ermäßigung/Freistellung Rektorat/Dekanat (§§ 7, 8 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_rektorat_dekanat.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">5) Deputatsermäßigung aufgrund einer Funktion/Beauftragung (§ 11 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_funktion.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">6) Deputatsermäßigung aufgrund von Forschungs- und Entwicklungsaufgaben (§ 2 Abs. 8, 9 LVVO)</button>
<div class="panel">
<iframe src='erm_freist_forschung.php' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">7) Forschungssemester/Praxissemester/Abordnungen</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">8) Ruhestand während des Studienjahres</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">9) Veränderungen Lehrverpflichtung</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<button class="accordion">10) Krankheit</button>
<div class="panel">
<iframe src='' width='100%' frameborder='0' ></iframe>
</div>
<?php }?>
<br>
<br>
</div>
<?php echo '<script'; ?>
>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
<?php echo '</script'; ?>
>
<?php echo '<script'; ?>
>iFrameResize({
log : false, // Enable console logging
heightCalculationMethod : 'documentElementOffset',
autoResize : true,
scrolling : true,
tolerance : 1000,
sizeHeight : true,
});<?php echo '</script'; ?>
>
</body>
</html><?php }
}

View File

@ -0,0 +1,402 @@
<?php
/* Smarty version 3.1.29, created on 2019-11-07 07:15:48
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erfassen_sonstige.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_5dc3b6944512b5_12268259',
'file_dependency' =>
array (
'ff1186b9e0b3257ab91304ff0c9c8de9fcd93ada' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/erfassen_sonstige.html',
1 => 1567753692,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_5dc3b6944512b5_12268259 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css">
<link rel="stylesheet" href="jquery/jquery-ui.css">
<?php echo '<script'; ?>
src="jquery/jquery-1.12.4.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery-ui.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/globalize.culture.de-DE.js"><?php echo '</script'; ?>
>
<?php echo '<script'; ?>
src="jquery/jquery.mousewheel.js"><?php echo '</script'; ?>
>
<style type="text/css">
.spinner {
width: 200px;
height: 15px;
font-size: 12px !important;
}
</style>
<?php echo '<script'; ?>
>
$( function() {
$( ".spinner" ).spinner({
step: 0.1,
numberFormat: "i",
min:0,
decimals:0
});
Globalize.culture( "de-DE" );
} );
function trackKeys(evnt,regEx) {
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
return !!String.fromCharCode(keyCode).match(regEx);
}
//-->
<?php echo '</script'; ?>
>
<style>
.StandardTable thead th{
background: lightgray;
border: 1px solid #656565;
font-size:12px;
font-family:Arial;
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
}
textarea{
border: 1px solid #888;
height: 6.7em;
width: 48.5em;
}
select{
width:630px;
}
</style>
</head>
<body>
<br />
<br />
<div class="header">
<div>
<div><?php echo $_smarty_tpl->tpl_vars['erfs_titel']->value;?>
</div>
</div>
</div>
<form action="?action=register" method='post' name='erfassen'>
<div class="pat_list_box">
<?php if ($_smarty_tpl->tpl_vars['erfs_error']->value == '1') {?>
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
<?php echo $_smarty_tpl->tpl_vars['erfs_error_text']->value;?>
</td>
</tr>
</table>
<br />
<?php }?>
<?php if ($_smarty_tpl->tpl_vars['erfs_abschluss']->value == '0') {?>
<fieldset>
<legend>
<b>Lehrveranstaltung erfassen</b>
</legend>
<br />
<br />
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
<tr>
<td>
Titel der Lehrveranstaltung (LV)
</td>
<td valign="top">
<!--<textarea name="titel" id="titel" size="60"><?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
</textarea>-->
<input type="text" name="titel" id="titel" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_titel']->value;?>
">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<?php echo '<script'; ?>
language="javascript" type="text/javascript">
function einblenden ($verid) {
/* Bei Exkursionen Erfassungsfeld einblenden*/
if (document.getElementById("art").value == "5") {
document.getElementById("exkursion1").style.visibility = "visible";
document.getElementById("lehrstd1").style.visibility = "hidden";
document.getElementById("exk_datumvon2").disabled = true;
document.getElementById("exk_datumbis2").disabled = true;
document.getElementById("exk_beschreibung2").disabled = true;
document.getElementById("exk_stdanreise2").disabled = true;
document.getElementById("exk_stdabreise2").disabled = true;
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeIn("slow");
$("#" + id2).fadeOut("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}else{
document.getElementById("exkursion1").style.visibility = "hidden";
document.getElementById("lehrstd1").style.visibility = "visible";
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeOut("slow");
});
//]]>
}
if (document.getElementById("art").value == "6") {
/*Hinweis zu Extracurricularer Klausurenkurs einblenden*/
//<![CDATA[
$(document).ready(function(){
var id = "exkursion1";
var id2 = "lehrstd1";
var id3 = "extracurr";
$("#" + id).fadeOut("slow");
$("#" + id2).fadeIn("slow");
$("#" + id3).fadeIn("slow");
});
//]]>
}
}
<?php echo '</script'; ?>
>
<tr>
<td>
Art der LV
</td>
<td valign="top">
<select name="art" id="art" size=5 onchange="einblenden();">
<?php
$__section_table_data1_0_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1'] : false;
$__section_table_data1_0_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data1']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data1_0_total = $__section_table_data1_0_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = new Smarty_Variable(array());
if ($__section_table_data1_0_total != 0) {
for ($__section_table_data1_0_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] = 0; $__section_table_data1_0_iteration <= $__section_table_data1_0_total; $__section_table_data1_0_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']++){
?>
<option value="<?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid'];?>
" <?php if ($_smarty_tpl->tpl_vars['erfs_value_art']->value == $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['verid']) {?> selected <?php }?> ><?php echo $_smarty_tpl->tpl_vars['table_data1']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data1']->value['index'] : null)]['bezeichnung'];?>
</option>
<?php
}
}
if ($__section_table_data1_0_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data1'] = $__section_table_data1_0_saved;
}
?>
</select>
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr id="lehrstd1">
<td>
Summe eigene Lehrstunden (LVS)
</td>
<td valign="top">
<!--<input type="number" step="0.1" name="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
">-->
<input type="text" class="spinner" name="std" id="std" size="101" value="<?php echo $_smarty_tpl->tpl_vars['erfs_value_std']->value;?>
" onKeypress="return trackKeys(event,/[0-9,]/);">
</td>
</tr>
<tr>
<td>&nbsp;
</td>
<td>&nbsp;
</td>
</tr>
<tr>
<td>
Hinweise
</td>
<td valign="top">
<textarea name="hinweise"><?php echo $_smarty_tpl->tpl_vars['erfs_value_hinweise']->value;?>
</textarea>
</td>
</tr>
</table>
<br />
<p align='center'>
<input type='submit' name='senden' value="Speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<fieldset>
<legend>
<b>Erfasste Lehrveranstaltungen</b>
</legend>
<table cellspacing="0" cellpadding="2" width="100%" border="1">
<tr>
<td>
<b>lfd.Nr.</b>
</td>
<td>
<b>Titel der Lehrveranstaltung (LV)</b>
</td>
<td>
<b>Art der LV</b>
</td>
<!--
<td>
<b>Krankheitsbedingte Merkmale</b>
</td>
<td>
<b>gemeinsame&nbsp;LV</b>
</td>
<td>
<b>Anzahl der Lehrenden</b>
</td>
<td>
<b>Maß der<br>Lehrbeteiligung (%)</b>
</td>
<td>
<b>Namen der Lehrenden</b>
</td>
<td>
<b>Teachingfaktor</b>
</td>
-->
<td align="right">
<b>Summe eigene Lehrstunden (LVS)</b>
</td>
<td>
<b>Hinweise</b>
</td>
<td align="center">
<b>Edit</b>
</td>
<tr>
<?php
$__section_table_data2_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2'] : false;
$__section_table_data2_1_loop = (is_array(@$_loop=$_smarty_tpl->tpl_vars['table_data2']->value) ? count($_loop) : max(0, (int) $_loop));
$__section_table_data2_1_total = $__section_table_data2_1_loop;
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = new Smarty_Variable(array());
if ($__section_table_data2_1_total != 0) {
for ($__section_table_data2_1_iteration = 1, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] = 0; $__section_table_data2_1_iteration <= $__section_table_data2_1_total; $__section_table_data2_1_iteration++, $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']++){
$_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] = $__section_table_data2_1_iteration;
?>
<?php if ((isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null) != '') {?>
<tr>
<td>
<?php echo (isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['rownum'] : null);?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['titel'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['veranstaltung'];?>
</td>
<!--
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['krankheitsmerkmal'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['gemlv_form'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['anzgemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['massgemlv'];?>
%
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['namegemlv'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['teamteaching_form'];?>
</td>
-->
<td align="right">
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['lvs'];?>
</td>
<td>
<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['hinweise'];?>
</td>
<td align="center">
<a href=?edit=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
><img title = "Lehrveranstaltung bearbeiten" border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/edit.png"></a>
&nbsp;
<a href="?action=del&dsid=<?php echo $_smarty_tpl->tpl_vars['table_data2']->value[(isset($_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index']) ? $_smarty_tpl->tpl_vars['__smarty_section_table_data2']->value['index'] : null)]['dsid'];?>
"><img title = 'Lehrveranstaltung l&ouml;schen' border="0" height=10 src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/drop.png"></a>
</td>
</tr>
<?php }?>
<?php
}
}
if ($__section_table_data2_1_saved) {
$_smarty_tpl->tpl_vars['__smarty_section_table_data2'] = $__section_table_data2_1_saved;
}
?>
<tr>
<td colspan="3">&nbsp;</td>
<td align="right"><b>Summe: <?php echo $_smarty_tpl->tpl_vars['erfs_value_summe_jahr']->value;?>
</b></td>
<td colspan="2">&nbsp;</td>
</tr>
</table>
</fieldset>
<?php }?>
<br />
<br />
</div>
</body>
</html>
<?php }?>
<?php }
}

View File

@ -0,0 +1,103 @@
<?php
/* Smarty version 3.1.29, created on 2022-05-12 13:30:46
from "/srv/www/htdocs-hvf/kurs/deputat/templates/modern/logout.html" */
if ($_smarty_tpl->smarty->ext->_validateCompiled->decodeProperties($_smarty_tpl, array (
'has_nocache_code' => false,
'version' => '3.1.29',
'unifunc' => 'content_627cefe6668166_45398984',
'file_dependency' =>
array (
'fffb2433087a4ba99a5692a93a780dd04d69d24f' =>
array (
0 => '/srv/www/htdocs-hvf/kurs/deputat/templates/modern/logout.html',
1 => 1583413883,
2 => 'file',
),
),
'includes' =>
array (
),
),false)) {
function content_627cefe6668166_45398984 ($_smarty_tpl) {
if ($_smarty_tpl->tpl_vars['action']->value == '') {?>
<html>
<head>
<title><?php echo $_smarty_tpl->tpl_vars['logout_titel']->value;?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/css/styles_refill.css" type="text/css">
<style>
.squarebutton_blue{
width:100px;
}
</style>
</head>
<body onload="if(document.login)document.login.user.focus();return false;">
<table height="100%" width="100%">
<tr>
<td width="20%">
&nbsp;
</td>
<td width="60%">
<div class="Header">
<div>
<div align="center"><?php echo $_smarty_tpl->tpl_vars['logout_titel']->value;?>
</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
<tr>
<td width="200px" align="center" valign="middle">
<img style="margin:10px;padding:10px;"src="templates/<?php echo $_smarty_tpl->tpl_vars['global_template']->value;?>
/images/deputat_icon.svg">
</td>
<td align="left">
<table width="100%">
<form action=?action=anmeld method="POST" name="login">
<tr>
<td width="100%" align="center">
<strong><?php echo $_smarty_tpl->tpl_vars['logout_text']->value;?>
</strong>
</td>
</tr>
<tr>
<td width="100%" align="center">
&nbsp;
</td>
</tr>
<tr>
<td align="center">
<a class="squarebutton_blue" href="index.php" target="_self"><span>Login</span></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<br />
</div>
</td>
<td width="20%">
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>
<?php }
}
}