Source for file EnglandWales.php
Documentation is available at EnglandWales.php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2002 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Tim Dodge <timmy@invisibles.org> |
// +----------------------------------------------------------------------+
// $Id: EnglandWales.php,v 1.2 2007/06/01 16:09:32 luckec Exp $
require_once 'Date/Holidays/Driver/Christian.php';
require_once 'Date/Holidays/Driver/USA.php';
* Driver class that calculates Danish holidays
* @version $Id: EnglandWales.php,v 1.2 2007/06/01 16:09:32 luckec Exp $
* Use the Date_Holidays::factory() method to construct an object of a certain driver
* Build the internal arrays that contain data about the calculated holidays
* @return boolean true on success, otherwise a PEAR_ErrorStack object
* @throws object PEAR_ErrorStack
$newYearsDay = new Date ($this->_year . '-01-01');
if ($newYearsDay->getDayOfWeek () == 0 ) {
'Substitute Bank Holiday in lieu of New Year\'s Day'
} elseif ($newYearsDay->getDayOfWeek () == 6 ) {
'Substitute Bank Holiday in lieu of New Year\'s Day'
$goodFridayDate = new Date ($easterDate);
$goodFridayDate->subtractSpan (new Date_Span ('2, 0, 0, 0'));
$this->_addHoliday('goodFriday', $goodFridayDate, 'Good Friday');
$this->_addHoliday('easterMonday', $easterDate->getNextDay (), 'Easter Monday');
$this->_addHoliday('mayDay', $earlyMayDate, 'May Day Bank Holiday');
$this->_addHoliday('springBank', $springBankDate, 'Spring Bank Holiday');
$this->_addHoliday('summerBank', $summerBankDate, 'Summer Bank Holiday');
* Christmas and Boxing Day
$xmasDay = new Date ($this->_year . '-12-25');
if ($xmasDay->getDayOfWeek () == 0 ) {
'Substitute Bank Holiday in lieu of Christmas Day'
} elseif ($xmasDay->getDayOfWeek () == 5 ) {
$this->_addHoliday('xmasDay', $xmasDay, 'Christmas Day');
'Substitute Bank Holiday in lieu of Boxing Day'
} elseif ($xmasDay->getDayOfWeek () == 6 ) {
'Substitute Bank Holiday in lieu of Christmas Day'
'Substitute Bank Holiday in lieu of Boxing Day'
$this->_addHoliday('xmasDay', $xmasDay, 'Christmas Day');
* Method that returns an array containing the ISO3166 codes that may possibly
* @return array possible ISO3166 codes
return array ('gb', 'gbr');
Documentation generated on Mon, 11 Mar 2019 15:03:07 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|