- Binding fuer Datumsfeld

- Notenansicht Erstversion
- Anpassung der Felder bei Konto XML
- XML fuer Inskriptionsbestaetigung erstellt
This commit is contained in:
Andreas Österreicher
2007-06-06 15:43:55 +00:00
parent 4fff2c6355
commit cc3d62247c
17 changed files with 1485 additions and 126 deletions
+9
View File
@@ -111,5 +111,14 @@ class datum
$datum+=3600;
return $datum;
}
/**
* Konvertiert das ISO Datumsformat (YYYY-MM-DD)
* nach (DD.MM.YYYY)
*/
function convertISODate($datum)
{
return (strlen($datum)>0?date('d.m.Y',strtotime($datum)):'');
}
}
?>