Source for file LocalKey.php

Documentation is available at LocalKey.php

  1. <?php
  2. /*
  3.  *  $Id: LocalKey.php 2195 2007-08-10 07:07:53Z njero $
  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. Doctrine::autoload('Doctrine_Relation');
  22. /**
  23.  * Doctrine_Relation_LocalKey
  24.  * This class represents a local key relation
  25.  *
  26.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  27.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  28.  * @package     Doctrine
  29.  * @category    Object Relational Mapping
  30.  * @link        www.phpdoctrine.com
  31.  * @since       1.0
  32.  * @version     $Revision: 2195 $
  33.  */
  34. {
  35.     /**
  36.      * fetchRelatedFor
  37.      *
  38.      * fetches a component related to given record
  39.      *
  40.      * @param Doctrine_Record $record 
  41.      * @return Doctrine_Record|Doctrine_Collection
  42.      */
  43.     public function fetchRelatedFor(Doctrine_Record $record)
  44.     {
  45.         $id $record->get($this->definition['local']);
  46.  
  47.         if (empty($id|| $this->definition['table']->getAttribute(Doctrine::ATTR_LOAD_REFERENCES)) {
  48.             $related $this->getTable()->create();
  49.         else {
  50.             $dql  'FROM ' $this->getTable()->getComponentName()
  51.                  . ' WHERE ' $this->getCondition();
  52.  
  53.             $related $this->getTable()
  54.                             ->getConnection()
  55.                             ->query($dqlarray($id))
  56.                             ->getFirst();
  57.             
  58.             if $related || empty($related)) {
  59.                 $related $this->getTable()->create();
  60.             }
  61.         }
  62.  
  63.         $record->set($this->definition['local']$relatedfalse);
  64.  
  65.         return $related;
  66.     }
  67.     
  68.     /**
  69.      * getCondition
  70.      *
  71.      * @param string $alias 
  72.      */
  73.     public function getCondition($alias null)
  74.     {
  75.         if $alias{
  76.            $alias $this->getTable()->getComponentName();
  77.         }
  78.         return $alias '.' $this->definition['foreign'' = ?';
  79.     }
  80.  
  81. }