summaryrefslogtreecommitdiffstats
path: root/library/Pbs
diff options
context:
space:
mode:
authormichael pereira2011-03-16 17:28:52 +0100
committermichael pereira2011-03-16 17:28:52 +0100
commitc4037e25f2dfdbe8440c3aade2bfb76bbea7c65d (patch)
treef5b4b2c8c261a42fb92d549f872baa3af132ddd9 /library/Pbs
parentKCL jetzt auf 175 zeichen begrentzt (diff)
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-c4037e25f2dfdbe8440c3aade2bfb76bbea7c65d.tar.gz
pbs2-c4037e25f2dfdbe8440c3aade2bfb76bbea7c65d.tar.xz
pbs2-c4037e25f2dfdbe8440c3aade2bfb76bbea7c65d.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'library/Pbs')
-rw-r--r--library/Pbs/PbsNotifier.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/library/Pbs/PbsNotifier.php b/library/Pbs/PbsNotifier.php
deleted file mode 100644
index b079f2d..0000000
--- a/library/Pbs/PbsNotifier.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-class Pbs_PbsNotifier{
-
-
- public function notify($boxstyle, $action, $result){
- switch($boxstyle){
- default:
- case "info":
- $boxstyle = 'infobox';
- break;
- case "warning":
- $boxstyle = 'warning';
- break;
- case "ok":
- $boxstyle = 'okbox';
- break;
- case "error":
- $boxstyle = 'errorbox';
- break;
- }
-
-
- }
-}
-
-?>