• Updated for 2018.
1 parent cf65b49 commit deb23af108c888b67a69f6d801e99fb5b94144a7
Nigel Stanger authored on 7 Dec 2017
Showing 1 changed file
View
10
generate_calendar_dates.php
 
/*
Date of the Monday of the first academic week of the year. Teaching weeks start on Monday, so this is a convenient base point to start from. This will need to be updated annually.
*/
$first_monday = new DateTime( "2017-01-02" );
$first_monday = new DateTime( "2018-01-01" );
 
 
/*
Teaching period configuration. This will need to be updated annually. It's easily extensible to a new teaching period simply by adding a new specification for that period. The key should be mixed-case alphanumeric (i.e., no whitespace, no punctuation or other special characters). The components of each period specification are:
'first_week' => 9,
'last_week' => 22,
'break_weeks' => array(
array(
'break_starts' => 16,
'break_ends' => 16,
'break_starts' => 14,
'break_ends' => 14,
),
),
),
'S2' => array(
'first_week' => 9,
'last_week' => 41,
'break_weeks' => array(
array(
'break_starts' => 16,
'break_ends' => 16,
'break_starts' => 14,
'break_ends' => 14,
),
array(
'break_starts' => 23,
'break_ends' => 27,