PluginProbe
ShiftController Employee Shift Scheduling / 4.9.66
ShiftController Employee Shift Scheduling v4.9.66
4.9.97 4.9.96 4.9.95 4.9.74 4.9.75 4.9.76 4.9.77 4.9.78 4.9.84 4.9.85 4.9.87 4.9.91 4.9.92 trunk 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.2.4 All 38 releases
← All changes | sh4/conf/html/admin/view/datetime.php +1 -12 4.9.774.9.66 View file →
@@ -29,9 +29,9 @@
29 29 $pnames = array(
30 30 'datetime_date_format', 'datetime_time_format', 'datetime_week_starts', 'full_day_count_as',
31 31 'skip_weekdays', 'datetime_timezone',
32 32 'datetime_min_time', 'datetime_max_time', 'datetime_step',
33 - 'datetime_hide_schedule_reports', 'datetime_summary_by_calendar', 'datetime_hide_bottom_date_navigation', 'datetime_month_slim_view', 'datetime_compact_shift_label',
33 + 'datetime_hide_schedule_reports', 'datetime_hide_bottom_date_navigation', 'datetime_month_slim_view', 'datetime_compact_shift_label',
34 34 'default_schedule_view', 'default_schedule_groupby', 'datetime_n_weeks',
35 35 'pref_csv_separator'
36 36 );
37 37 foreach( $pnames as $pname ){
@@ -172,12 +172,8 @@
172 172 // hide schedule reports
173 173 $hideScheduleReports = $this->ui->makeInputCheckbox( 'datetime_hide_schedule_reports', '__Hide Hours Reports In Schedule View__', 1, $values['datetime_hide_schedule_reports'] );
174 174 $moreInputs[] = $hideScheduleReports;
175 175
176 - // hide schedule reports
177 - $showSummaryByCalendar = $this->ui->makeInputCheckbox( 'datetime_summary_by_calendar', '__If the schedule view is grouped by employee, also show totals by calendar at the bottom__', 1, $values['datetime_summary_by_calendar'] );
178 - $moreInputs[] = $showSummaryByCalendar;
179 -
180 176 // hide bottom date navigation
181 177 $hideBottomDateNavigation = $this->ui->makeInputCheckbox( 'datetime_hide_bottom_date_navigation', '__Hide Bottom Date Navigation In Schedule View__', 1, $values['datetime_hide_bottom_date_navigation'] );
182 178 $moreInputs[] = $hideBottomDateNavigation;
183 179
@@ -182,15 +178,8 @@
182 178 $moreInputs[] = $hideBottomDateNavigation;
183 179
184 180 // month slim view
185 181 $moreInputs[] = $this->ui->makeInputCheckbox( 'datetime_month_slim_view', '__Slim Month Schedule Grouped View__', 1, $values['datetime_month_slim_view'] );
186 -
187 - $thisValue = $this->settings->get( 'repeat_default_weeks' );
188 - if( $thisValue ){
189 - $thisOptions = range( 2, 20 );
190 - $thisOptions = array_combine( $thisOptions, $thisOptions );
191 - $moreInputs[] = $this->ui->makeInputSelect( 'repeat_default_weeks', '__Initial number of weeks for the repeat shift form__', $thisOptions, $thisValue );
192 - }
193 182
194 183 $thisOptions = array( 'abbr' => '__Abbreviation__', 'none' => '__Space__' );
195 184 $moreInputs[] = $this->ui->makeInputSelect( 'datetime_compact_shift_label', '__Shift Label In Compact View__', $thisOptions, $values['datetime_compact_shift_label'] );
196 185