Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/* vim: set expandtab tabstop=4 shiftwidth=4: */
3
 
4
/**
5
 * Contains the Calendar_Decorator_Wrapper class
6
 *
7
 * PHP versions 4 and 5
8
 *
9
 * LICENSE: Redistribution and use in source and binary forms, with or without
10
 * modification, are permitted provided that the following conditions are met:
11
 * 1. Redistributions of source code must retain the above copyright
12
 *    notice, this list of conditions and the following disclaimer.
13
 * 2. Redistributions in binary form must reproduce the above copyright
14
 *    notice, this list of conditions and the following disclaimer in the
15
 *    documentation and/or other materials provided with the distribution.
16
 * 3. The name of the author may not be used to endorse or promote products
17
 *    derived from this software without specific prior written permission.
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22
 * IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY
23
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
 *
30
 * @category  Date and Time
31
 * @package   Calendar
32
 * @author    Harry Fuecks <hfuecks@phppatterns.com>
33
 * @author    Lorenzo Alberton <l.alberton@quipo.it>
34
 * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton
35
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
36
 * @version   CVS: $Id: Wrapper.php 300729 2010-06-24 12:05:53Z quipo $
37
 * @link      http://pear.php.net/package/Calendar
38
 */
39
 
40
/**
41
 * Allows Calendar include path to be redefined
42
 * @ignore
43
 */
44
if (!defined('CALENDAR_ROOT')) {
45
    define('CALENDAR_ROOT', 'Calendar'.DIRECTORY_SEPARATOR);
46
}
47
 
48
/**
49
 * Load Calendar decorator base class
50
 */
51
require_once CALENDAR_ROOT.'Decorator.php';
52
 
53
/**
54
 * Decorator to help with wrapping built children in another decorator
55
 *
56
 * @category  Date and Time
57
 * @package   Calendar
58
 * @author    Harry Fuecks <hfuecks@phppatterns.com>
59
 * @author    Lorenzo Alberton <l.alberton@quipo.it>
60
 * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton
61
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
62
 * @link      http://pear.php.net/package/Calendar
63
 * @access    public
64
 */
65
class Calendar_Decorator_Wrapper extends Calendar_Decorator
66
{
67
    /**
68
     * Constructs Calendar_Decorator_Wrapper
69
     *
70
     * @param object &$Calendar subclass of Calendar
71
     *
72
     * @access public
73
     */
74
    function Calendar_Decorator_Wrapper(&$Calendar)
75
    {
76
        parent::Calendar_Decorator($Calendar);
77
    }
78
 
79
    /**
80
     * Wraps objects returned from fetch in the named Decorator class
81
     *
82
     * @param string $decorator name of Decorator class to wrap with
83
     *
84
     * @return object instance of named decorator
85
     * @access public
86
     */
87
    function & fetch($decorator)
88
    {
89
        $Calendar = parent::fetch();
90
        if ($Calendar) {
91
            $ret = new $decorator($Calendar);
92
        } else {
93
            $ret = false;
94
        }
95
        return $ret;
96
    }
97
 
98
    /**
99
     * Wraps the returned calendar objects from fetchAll in the named decorator
100
     *
101
     * @param string $decorator name of Decorator class to wrap with
102
     *
103
     * @return array
104
     * @access public
105
     */
106
    function fetchAll($decorator)
107
    {
108
        $children = parent::fetchAll();
109
        foreach ($children as $key => $Calendar) {
110
            $children[$key] = new $decorator($Calendar);
111
        }
112
        return $children;
113
    }
114
}
115
?>