summaryrefslogtreecommitdiffstats
path: root/app/model/common.mod.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/model/common.mod.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/model/common.mod.php b/app/model/common.mod.php
index 34ac17d..7f0302f 100644
--- a/app/model/common.mod.php
+++ b/app/model/common.mod.php
@@ -7,20 +7,6 @@ require_once "class/setting.class.php";
class CommonModel extends MasterModel
{
/*
- * Get the glyphicon to use for the logged in user (user or admin)
- */
- function getCurrentUserGlyphicon()
- {
- if (!$this->getCurrentUser())
- return "";
-
- if ($this->getCurrentUser()->admin == 1)
- return "glyphicon glyphicon-sunglasses";
- else
- return "glyphicon glyphicon-user";
- }
-
- /*
* Default action
*/
function common_deflt()