From 8924aabba1c3427250a07910c05028c53db07871 Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Sat, 21 Jul 2018 00:25:49 -0400 Subject: Remove old content --- examples/model/master.mod.php | 56 ------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 examples/model/master.mod.php (limited to 'examples/model/master.mod.php') diff --git a/examples/model/master.mod.php b/examples/model/master.mod.php deleted file mode 100644 index 5aaafa8..0000000 --- a/examples/model/master.mod.php +++ /dev/null @@ -1,56 +0,0 @@ -isError()) - return "alert-danger"; - - if ($this->isWarning()) - return "alert-warning"; - - if ($this->isNotice()) - return "alert-info"; - - return ""; - } - - /* - * Get the appropriate glyphicon to use when showing the notice modal - */ - function getNoticeModalGlyphicon() - { - if ($this->isError()) - return "glyphicon glyphicon-remove-sign"; - - if ($this->isWarning()) - return "glyphicon glyphicon-exclamation-sign"; - - if ($this->isNotice()) - return "glyphicon glyphicon-info-sign"; - - return ""; - } -} - -?> -- cgit v1.2.3