X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/35af76f7c66ba10e2e1279f2e9afbdb2b09a141d..a8d2a373388113fc60233feda3b971c4d67e6211:/WEB-INF/lib/ttGroup.class.php diff --git a/WEB-INF/lib/ttGroup.class.php b/WEB-INF/lib/ttGroup.class.php index e232a0e1..86536349 100644 --- a/WEB-INF/lib/ttGroup.class.php +++ b/WEB-INF/lib/ttGroup.class.php @@ -50,6 +50,7 @@ class ttGroup { var $allow_overlap = 0; // Whether to allow overlapping time entries. var $future_entries = 0; // Whether to allow creating future entries. var $uncompleted_indicators = 0; // Uncompleted time entry indicators (show nowhere or on users page). + var $confirm_save = 0; // Whether to show warnings for save action when date changed. var $bcc_email = null; // Bcc email. var $allow_ip = null; // Specification from where user is allowed access. var $password_complexity = null; // Password complexity example. @@ -104,7 +105,6 @@ class ttGroup { $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'); @@ -112,6 +112,8 @@ class ttGroup { $this->allow_overlap = $config->getDefinedValue('allow_overlap'); $this->future_entries = $config->getDefinedValue('future_entries'); $this->uncompleted_indicators = $config->getDefinedValue('uncompleted_indicators'); + $this->confirm_save = $config->getDefinedValue('confirm_save'); + /* if ($this->isPluginEnabled('wu')) { $minutes_in_unit = $config->getIntValue('minutes_in_unit'); if ($minutes_in_unit) $this->minutes_in_unit = $minutes_in_unit;