summaryrefslogtreecommitdiffstats
path: root/library/Pbs/PbsNotifier.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Pbs/PbsNotifier.php')
-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;
- }
-
-
- }
-}
-
-?>