summaryrefslogtreecommitdiff
path: root/includes/funktionen.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-11 17:01:41 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-11 17:01:41 +0200
commit80a1a65aefcd2f33951dc60c72d29df1ad19b187 (patch)
tree4eca664739b7798df65be5d35741e80c452c159d /includes/funktionen.php
parent23c113ed32bc59feb5887fa0179c84b9778e72ba (diff)
tmp commit
Diffstat (limited to 'includes/funktionen.php')
-rw-r--r--includes/funktionen.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/includes/funktionen.php b/includes/funktionen.php
deleted file mode 100644
index fb63b708..00000000
--- a/includes/funktionen.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
- /* Schichtverplanung im Adminbereich */
- function Dsubstr($DateString, $re) {
- if ($re == 1)
- return substr($DateString, 0, 2);
- elseif ($re == 2)
- return substr($DateString, 3, 2);
- else
- return substr($DateString, 6, 4);
- }
-
- /* Schichtverplanung im Engelbereich */
- function engeldate($edate, $m) {
- if ($m == t)
- return substr($edate, 8, 2);
- elseif ($m == m)
- return substr($edate, 5, 2);
- elseif ($m == u)
- return substr($edate, 11, 5);
- else
- return substr($edate, 0, 4);
- }
-?>