]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/common.lib.php
Wrote ttPluginEnabled() function.
[timetracker.git] / WEB-INF / lib / common.lib.php
index 124b78f5887823c3d13a61370f96008d4561e21d..3644c0587471ac433005eb93b83010c60785490a 100644 (file)
@@ -340,3 +340,10 @@ function ttAccessCheck($required_rights)
     
   return true;
 }
+
+// ttPluginEnabled is used to check whether a plugin is enabled for user.
+function ttPluginEnabled($plugin)
+{
+  global $user;
+  return in_array($plugin, explode(',', $user->plugins));
+}