From 0d53041fc67e13fc53cca0c993ec1a7a31a5a16e Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Sun, 15 Jan 2017 05:57:19 -0500 Subject: Reorganize examples/ directory --- examples/app/model/master.mod.php | 56 --------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 examples/app/model/master.mod.php (limited to 'examples/app/model/master.mod.php') diff --git a/examples/app/model/master.mod.php b/examples/app/model/master.mod.php deleted file mode 100644 index 5aaafa8..0000000 --- a/examples/app/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