~patrix-sbs/oraculum/git

« back to all changes in this revision

Viewing changes to library/components/doctrine/lib/Doctrine/Template/SoftDelete.php

  • Committer: Patrick Kaminski
  • Date: 2009-09-02 02:33:07 UTC
  • Revision ID: git-v1:943803254fca67bfb4c0374422b1b836b14dc518
Tags: v0.1a
Sending Oraculum Framework v0.1 alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/*
 
3
 *  $Id$
 
4
 *
 
5
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
6
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
7
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
8
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
9
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
10
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
11
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
12
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
13
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
14
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
15
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
16
 *
 
17
 * This software consists of voluntary contributions made by many individuals
 
18
 * and is licensed under the LGPL. For more information, see
 
19
 * <http://www.phpdoctrine.org>.
 
20
 */
 
21
 
 
22
/**
 
23
 * Doctrine_Template_SoftDelete
 
24
 *
 
25
 * @package     Doctrine
 
26
 * @subpackage  Template
 
27
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 
28
 * @link        www.phpdoctrine.org
 
29
 * @since       1.0
 
30
 * @version     $Revision$
 
31
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 
32
 * @author      Jonathan H. Wage <jonwage@gmail.com>
 
33
 */
 
34
class Doctrine_Template_SoftDelete extends Doctrine_Template
 
35
{
 
36
    /**
 
37
     * Array of SoftDelete options
 
38
     *
 
39
     * @var string
 
40
     */
 
41
    protected $_options = array('name'          =>  'deleted',
 
42
                                'type'          =>  'boolean',
 
43
                                'length'        =>  1,
 
44
                                'options'       =>  array('default' => false,
 
45
                                                          'notnull' => true,
 
46
                                                          ),
 
47
    );
 
48
 
 
49
    /**
 
50
     * __construct
 
51
     *
 
52
     * @param string $array
 
53
     * @return void
 
54
     */
 
55
    public function __construct(array $options = array())
 
56
    {
 
57
        $this->_options = Doctrine_Lib::arrayDeepMerge($this->_options, $options);
 
58
    }
 
59
 
 
60
    /**
 
61
     * Set table definition for SoftDelete behavior
 
62
     *
 
63
     * @return void
 
64
     */
 
65
    public function setTableDefinition()
 
66
    {
 
67
        $this->hasColumn($this->_options['name'], $this->_options['type'], $this->_options['length'], $this->_options['options']);
 
68
 
 
69
        $this->addListener(new Doctrine_Template_Listener_SoftDelete($this->_options));
 
70
    }
 
71
 
 
72
    /**
 
73
     * @nodoc
 
74
     */
 
75
    public function getOption($name)
 
76
    {
 
77
        return $this->_options[$name];
 
78
    }
 
79
}
 
 
b'\\ No newline at end of file'