Source for file Module.php

Documentation is available at Module.php

  1. <?php
  2. /*
  3.  *  $Id: Module.php 1080 2007-02-10 18:17:08Z romanb $
  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.com>.
  20.  */
  21. /**
  22.  * Doctrine_Connection_Module
  23.  *
  24.  * @package     Doctrine
  25.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  26.  * @category    Object Relational Mapping
  27.  * @link        www.phpdoctrine.com
  28.  * @since       1.0
  29.  * @version     $Revision: 1080 $
  30.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  31.  */
  32. {
  33.     /**
  34.      * @var Doctrine_Connection $conn       Doctrine_Connection object, every connection
  35.      *                                       module holds an instance of Doctrine_Connection
  36.      */
  37.     protected $conn;
  38.     /**
  39.      * @var string $moduleName              the name of this module
  40.      */
  41.     protected $moduleName;
  42.     /**
  43.      * @param Doctrine_Connection $conn     Doctrine_Connection object, every connection
  44.      *                                       module holds an instance of Doctrine_Connection
  45.      */
  46.     public function __construct($conn null)
  47.     {
  48.         if ($conn instanceof Doctrine_Connection)) {
  49.             $conn Doctrine_Manager::getInstance()->getCurrentConnection();
  50.         }
  51.         $this->conn = $conn;
  52.  
  53.         $e explode('_'get_class($this));
  54.  
  55.         $this->moduleName = $e[1];
  56.     }
  57.     /**
  58.      * getConnection
  59.      * returns the connection object this module uses
  60.      *
  61.      * @return Doctrine_Connection 
  62.      */
  63.     public function getConnection()
  64.     {
  65.         return $this->conn;
  66.     }
  67.     /**
  68.      * getModuleName
  69.      * returns the name of this module
  70.      *
  71.      * @return string       the name of this module
  72.      */
  73.     public function getModuleName()
  74.     {
  75.         return $this->moduleName;
  76.     }
  77. }