Jump to content

Achievo/Howto/Scheduler/Change begin and end: Difference between revisions

From NusaATK
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 …'
 
 
(No difference)

Latest revision as of 11:46, 27 January 2011

Achievo Howto: Achievo/Howto/Scheduler/Change begin and end

Complexity: Easy
Author: Klaaspeter

List of other Howto's


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++)