X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/ce2bb98acb1f5e2a846f95b798a4af409c842ebb..6c376fcbe582d3dd0c211aeb8eef20c43850434e:/WEB-INF/lib/ttUser.class.php diff --git a/WEB-INF/lib/ttUser.class.php b/WEB-INF/lib/ttUser.class.php index ae197c69..7afc9c15 100644 --- a/WEB-INF/lib/ttUser.class.php +++ b/WEB-INF/lib/ttUser.class.php @@ -58,7 +58,7 @@ class ttUser { var $plugins = null; // Comma-separated list of enabled plugins. var $config = null; // Comma-separated list of miscellaneous config options. var $group = null; // Group name. - var $custom_logo = 0; // Whether to use a custom logo for team. + var $custom_logo = 0; // Whether to use a custom logo for group. var $lock_spec = null; // Cron specification for record locking. var $workday_minutes = 480; // Number of work minutes in a regular day. var $rights = array(); // An array of user rights such as 'track_own_time', etc. @@ -153,7 +153,7 @@ class ttUser { return $this->can('administer_site'); } - // isManager - determines whether current user is team manager. + // isManager - determines whether current user is group manager. // This is a legacy function that we are getting rid of by replacing with rights check. function isManager() { return $this->can('export_data'); // By default this is assigned to managers but not co-managers. @@ -161,7 +161,7 @@ class ttUser { // to this function and then remove it. } - // isCoManager - determines whether current user is team comanager. + // isCoManager - determines whether current user is group comanager. // This is a legacy function that we are getting rid of by replacing with rights check. function isCoManager() { return ($this->can('manage_users') && !$this->can('export_data')); @@ -416,6 +416,9 @@ class ttUser { // updateGroup updates group information with new data. function updateGroup($fields) { + if (!($this->can('manage_basic_settings') || + $this->can('manage_advanced_settings') || + $this->can('manage_features'))) return false; $mdb2 = getConnection(); @@ -450,4 +453,32 @@ class ttUser { return true; } + + // enablePlugin either enables or disables a specific plugin for group. + function enablePlugin($plugin, $enable = true) + { + if (!$this->can('manage_advanced_settings')) + return false; // Note: enablePlugin is currently only used on week_view.php. + // So, it's not really a plugin we are enabling, but rather week view display options. + // Therefore, a check for manage_advanced_settings, not manage_features. + + $plugin_array = explode(',', $this->plugins); + if ($enable && !in_array($plugin, $plugin_array)) + $plugin_array[] = $plugin; // Add plugin to array. + + if (!$enable && in_array($plugin, $plugin_array)) { + $key = array_search($plugin, $plugin_array); + if ($key !== false) + unset($plugin_array[$key]); // Remove plugin from array. + } + + $plugins = implode(',', $plugin_array); + if ($plugins != $this->plugins) { + if (!$this->updateGroup(array('plugins' => $plugins))) + return false; + $this->plugins = $plugins; + } + + return true; + } }