EventListener.php 3.44 KB
Newer Older
doctrine's avatar
doctrine committed
1
<?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.com>.
 */
doctrine's avatar
doctrine committed
21
Doctrine::autoload('Doctrine_EventListener_Interface');
doctrine's avatar
doctrine committed
22 23 24 25 26 27 28 29 30 31
/**
 * Doctrine_EventListener     all event listeners extend this base class
 *                      the empty methods allow child classes to only implement the methods they need to implement
 *
 *
 * @author      Konsta Vesterinen
 * @package     Doctrine ORM
 * @url         www.phpdoctrine.com
 * @license     LGPL
 */
zYne's avatar
zYne committed
32
class Doctrine_EventListener implements Doctrine_EventListener_Interface {
doctrine's avatar
doctrine committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

    public function onLoad(Doctrine_Record $record) { }
    public function onPreLoad(Doctrine_Record $record) { }

    public function onSleep(Doctrine_Record $record) { }

    public function onWakeUp(Doctrine_Record $record) { }

    public function onUpdate(Doctrine_Record $record) { }
    public function onPreUpdate(Doctrine_Record $record) { }

    public function onCreate(Doctrine_Record $record) { }
    public function onPreCreate(Doctrine_Record $record) { }

    public function onSave(Doctrine_Record $record) { }
    public function onPreSave(Doctrine_Record $record) { }

50 51 52
    public function onGetProperty(Doctrine_Record $record, $property, $value) {
        return $value;
    }
53
    public function onSetProperty(Doctrine_Record $record, $property, $value) {
54 55 56
        return $value;
    }

doctrine's avatar
doctrine committed
57 58 59 60 61 62 63 64 65
    public function onInsert(Doctrine_Record $record) { }
    public function onPreInsert(Doctrine_Record $record) { }

    public function onDelete(Doctrine_Record $record) { }
    public function onPreDelete(Doctrine_Record $record) { }

    public function onEvict(Doctrine_Record $record) { }
    public function onPreEvict(Doctrine_Record $record) { }

zYne's avatar
zYne committed
66 67
    public function onClose(Doctrine_Connection $connection) { }
    public function onPreClose(Doctrine_Connection $connection) { }
doctrine's avatar
doctrine committed
68

zYne's avatar
zYne committed
69
    public function onOpen(Doctrine_Connection $connection) { }
doctrine's avatar
doctrine committed
70

zYne's avatar
zYne committed
71 72
    public function onTransactionCommit(Doctrine_Connection $connection) { }
    public function onPreTransactionCommit(Doctrine_Connection $connection) { }
doctrine's avatar
doctrine committed
73

zYne's avatar
zYne committed
74 75
    public function onTransactionRollback(Doctrine_Connection $connection) { }
    public function onPreTransactionRollback(Doctrine_Connection $connection) { }
doctrine's avatar
doctrine committed
76

zYne's avatar
zYne committed
77 78
    public function onTransactionBegin(Doctrine_Connection $connection) { }
    public function onPreTransactionBegin(Doctrine_Connection $connection) { }
doctrine's avatar
doctrine committed
79 80 81
    
    public function onCollectionDelete(Doctrine_Collection $collection) { }
    public function onPreCollectionDelete(Doctrine_Collection $collection) { }
zYne's avatar
zYne committed
82
}