- Anlegen von Projekttasks

- Infoterminal und Infoscreen an neue News angepasst
This commit is contained in:
Andreas Österreicher
2011-08-11 13:22:08 +00:00
parent 6fb63bd1ab
commit c8c8d95ba9
10 changed files with 170 additions and 175 deletions
+13 -1
View File
@@ -1,3 +1,4 @@
<?php
/* Copyright (C) 2006 Technikum-Wien
*
* This program is free software; you can redistribute it and/or modify
@@ -23,6 +24,9 @@
*
* enthaelt globale JS Funktionen
*/
require_once('../config/vilesci.config.inc.php');
require_once('../include/functions.inc.php');
?>
// ****
// * Liefert den Value aus einer XML-Datasource
@@ -246,4 +250,12 @@ String.prototype.trim = function() {
// * StartsWidth Member Function fuer Strings
// ****
String.prototype.startsWith = function(str)
{return (this.match("^"+str)==str)}
{return (this.match("^"+str)==str)}
// ****
// * Liefert den Usernamne des eingeloggten Users
// ****
function getUsername()
{
return '<?php echo get_uid(); ?>';
}