• Updated teaching date configuration for 2017.
1 parent f97a754 commit f824e0cdf750e0ee0a4b8308450e1ca6e36607f3
Nigel Stanger authored on 9 Feb 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( "2016-01-04" );
$first_monday = new DateTime( "2017-01-02" );
 
 
/*
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' => 13,
'break_ends' => 13,
'break_starts' => 16,
'break_ends' => 16,
),
),
),
'S2' => array(
'first_week' => 9,
'last_week' => 41,
'break_weeks' => array(
array(
'break_starts' => 13,
'break_ends' => 13,
'break_starts' => 16,
'break_ends' => 16,
),
array(
'break_starts' => 23,
'break_ends' => 27,