Achievo/Howto/Scheduler/Change begin and end: Difference between revisions
Appearance
Klaaspeter (talk | contribs) Created page with '{{Achievo_Howto|Easy|Klaaspeter }} In this howto I will explain how you can edit the begin- and endtime of the scheduler. Open the file: class.scheduler_dayview.inc go now to …' |
Klaaspeter (talk | contribs) m moved Achievo/Howto/Scheduler/Scheduler begin endtime to Achievo/Howto/Scheduler/Change begin and end: wrong link |
(No difference)
| |
Latest revision as of 11:46, 27 January 2011
In this howto I will explain how you can edit the begin- and endtime of the scheduler.
Open the file: class.scheduler_dayview.inc
go now to line 377:
for($i=0;$i<=23;$i++)
Change 0 to the time you would like the scheduler will start and change 23 to the time you would like the scheduler will end.
For example, you would like that the scheduler starts at 7am(07:00) and end at 6pm(18:00) the code would be like this:
for($i=7;$i<=18;$i++)
