Date_Holidays
[ class tree: Date_Holidays ] [ index: Date_Holidays ] [ all elements ]

Source for file Saxony.php

Documentation is available at Saxony.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. /**
  4.  * Filter for holidays in Saxony.
  5.  *
  6.  * PHP Version 4
  7.  *
  8.  * Copyright (c) 1997-2008 The PHP Group
  9.  *
  10.  * This source file is subject to version 3.0 of the PHP license,
  11.  * that is bundled with this package in the file LICENSE, and is
  12.  * available at through the world-wide-web at
  13.  * http://www.php.net/license/3_01.txt.
  14.  * If you did not receive a copy of the PHP license and are unable to
  15.  * obtain it through the world-wide-web, please send a note to
  16.  * license@php.net so we can mail you a copy immediately.
  17.  *
  18.  * @category Date
  19.  * @package  Date_Holidays
  20.  * @author   Carsten Lucke <luckec@tool-garage.de>
  21.  * @author   Mark Wiesemann <wiesemann@php.net>
  22.  * @license  http://www.php.net/license/3_01.txt PHP License 3.0.1
  23.  * @version  CVS: $Id: Saxony.php,v 1.7 2008/03/17 11:37:49 kguest Exp $
  24.  * @link     http://pear.php.net/package/Date_Holidays
  25.  */
  26.  
  27. /**
  28.  * Filter that only accepts official holidays in Saxony.
  29.  *
  30.  * @category   Date
  31.  * @package    Date_Holidays
  32.  * @subpackage Filter
  33.  * @author     Carsten Lucke <luckec@tool-garage.de>
  34.  * @author     Mark Wiesemann <wiesemann@php.net>
  35.  * @license    http://www.php.net/license/3_01.txt PHP License 3.0.1
  36.  * @version    CVS: $Id: Saxony.php,v 1.7 2008/03/17 11:37:49 kguest Exp $
  37.  * @link       http://pear.php.net/package/Date_Holidays
  38.  */
  39. {
  40.     /**
  41.      * Constructor.
  42.      */
  43.     function __construct()
  44.     {
  45.         parent::__construct(array('newYearsDay',
  46.                                   'goodFriday',
  47.                                   'easterMonday',
  48.                                   'dayOfWork',
  49.                                   'ascensionDay',
  50.                                   'whitMonday',
  51.                                   'germanUnificationDay',
  52.                                   'reformationDay',
  53.                                   'dayOfRepentance',
  54.                                   'christmasDay',
  55.                                   'boxingDay'));
  56.     }
  57.  
  58.     /**
  59.      * Constructor.
  60.      *
  61.      * Only accepts official holidays in Saxony.
  62.      */
  63.     {
  64.         $this->__construct();
  65.     }
  66. }
  67. ?>

Documentation generated on Thu, 10 Apr 2008 20:00:23 -0400 by phpDocumentor 1.4.0. PEAR Logo Copyright © PHP Group 2004.