Updated for 2019.
1 parent 7e37714 commit 95c6e190b53f7b998ee7edd96c99a9ce077fd85d
Nigel Stanger authored on 15 Jan 2019
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( "2018-01-01" );
$first_monday = new DateTime( "2018-12-31" );
 
 
/*
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' => 14,
'break_ends' => 14,
'break_starts' => 17,
'break_ends' => 17,
),
),
),
'S2' => array(
'first_week' => 9,
'last_week' => 41,
'break_weeks' => array(
array(
'break_starts' => 14,
'break_ends' => 14,
'break_starts' => 17,
'break_ends' => 17,
),
array(
'break_starts' => 23,
'break_ends' => 27,