X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttGroup.class.php;fp=WEB-INF%2Flib%2FttGroup.class.php;h=5ef258cae3e7f3a5bbea3ef73ba3f87dabd81b21;hb=5d1a946b7e54074b7a9ae0b85b73bd573ffe236b;hp=f450a4ec41413792dd9a750501e2d5305aeccf41;hpb=76afe042736b2e08bf3d5b8a4112d15a93073e0b;p=timetracker.git diff --git a/WEB-INF/lib/ttGroup.class.php b/WEB-INF/lib/ttGroup.class.php index f450a4ec..5ef258ca 100644 --- a/WEB-INF/lib/ttGroup.class.php +++ b/WEB-INF/lib/ttGroup.class.php @@ -58,9 +58,6 @@ class ttGroup { 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 $minutes_in_unit = 15; // Number of minutes in unit for Work units plugin. - var $first_unit_threshold = 0;// Threshold for 1st unit for Work units plugin. - var $unit_totals_only = 0; // Totals only option for the Work units plugin. var $active_users = 0; // Count of active users in group. // We need a non-zero count to display some menus. @@ -112,13 +109,6 @@ class ttGroup { $this->punch_mode = $config->getDefinedValue('punch_mode'); $this->allow_overlap = $config->getDefinedValue('allow_overlap'); $this->future_entries = $config->getDefinedValue('future_entries'); - /* - if ($this->isPluginEnabled('wu')) { - $minutes_in_unit = $config->getIntValue('minutes_in_unit'); - if ($minutes_in_unit) $this->minutes_in_unit = $minutes_in_unit; - $this->unit_totals_only = $config->getDefinedValue('unit_totals_only'); - } - */ } // Determine active user count in a separate query.