X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttGroup.class.php;h=e232a0e1af30cd180d63ddce36b16dc7b24c8995;hb=fa6508ac21c30d6bfef008387fabd29a843d7b66;hp=c12be77886a53308d801f77d299335b07bca18ec;hpb=d374f7228d4ece31f60028d798f6dbdef78f7925;p=timetracker.git diff --git a/WEB-INF/lib/ttGroup.class.php b/WEB-INF/lib/ttGroup.class.php index c12be778..e232a0e1 100644 --- a/WEB-INF/lib/ttGroup.class.php +++ b/WEB-INF/lib/ttGroup.class.php @@ -88,18 +88,23 @@ class ttGroup { /* TODO: initialize other things here. $this->project_required = $val['project_required']; $this->task_required = $val['task_required']; + */ $this->record_type = $val['record_type']; + /* $this->bcc_email = $val['bcc_email']; $this->allow_ip = $val['allow_ip']; $this->password_complexity = $val['password_complexity']; $this->group_name = $val['group_name']; $this->currency = $val['currency']; + */ $this->plugins = $val['plugins']; + /* $this->lock_spec = $val['lock_spec']; $this->workday_minutes = $val['workday_minutes']; $this->custom_logo = $val['custom_logo']; - + */ $this->config = $val['config']; + /* $config = new ttConfigHelper($this->config); // Set user config options. $this->show_holidays = $config->getDefinedValue('show_holidays'); @@ -114,17 +119,6 @@ class ttGroup { if ($first_unit_threshold) $this->first_unit_threshold = $first_unit_threshold; $this->unit_totals_only = $config->getDefinedValue('unit_totals_only'); } - - // Set "on behalf" id and name (user). - if (isset($_SESSION['behalf_id'])) { - $this->behalf_id = $_SESSION['behalf_id']; - $this->behalf_name = $_SESSION['behalf_name']; - } - // Set "on behalf" id and name (group). - if (isset($_SESSION['behalf_group_id'])) { - $this->behalf_group_id = $_SESSION['behalf_group_id']; - $this->behalf_group_name = $_SESSION['behalf_group_name']; - } */ } }