Source for file Tree.php

Documentation is available at Tree.php

  1. <?php
  2. /*
  3.  *  $Id: Tree.php 2097 2007-07-29 19:38:11Z 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_Tree
  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: 2097 $
  30.  * @author      Joe Simms <joe.simms@websites4.com>
  31.  */
  32. {
  33.     /**
  34.      * @param object $table   reference to associated Doctrine_Table instance
  35.      */
  36.     protected $table;
  37.  
  38.     /**
  39.      * @param array $options 
  40.      */
  41.     protected $options = array();
  42.     
  43.     protected $_baseComponent;
  44.  
  45.     /**
  46.      * constructor, creates tree with reference to table and any options
  47.      *
  48.      * @param object $table                     instance of Doctrine_Table
  49.      * @param array $options                    options
  50.      */
  51.     public function __construct(Doctrine_Table $table$options)
  52.     {
  53.         $this->table = $table;
  54.         $this->options = $options;
  55.         $this->_baseComponent = $table->getComponentName();
  56.         $class $this->_baseComponent;
  57.         if ($table->getOption('inheritanceMap')) {
  58.             $subclasses $table->getOption('subclasses');
  59.             while (in_array($class$subclasses)) {
  60.                 $class get_parent_class($class);
  61.             }
  62.             $this->_baseComponent = $class;
  63.         }
  64.         //echo $this->_baseComponent;
  65.     }
  66.  
  67.     /**
  68.      * Used to define table attributes required for the given implementation
  69.      *
  70.      * @throws Doctrine_Tree_Exception          if table attributes have not been defined
  71.      */
  72.     public function setTableDefinition()
  73.     {
  74.         throw new Doctrine_Tree_Exception('Table attributes have not been defined for this Tree implementation.');
  75.     }
  76.  
  77.     /**
  78.      * this method is used for setting up relations and attributes and should be used by specific implementations
  79.      *
  80.      */
  81.     public function setUp()
  82.     {
  83.     }
  84.  
  85.     /**
  86.      * factory method to return tree instance based upon chosen implementation
  87.      *
  88.      * @param object $table                     instance of Doctrine_Table
  89.      * @param string $impName                   implementation (NestedSet, AdjacencyList, MaterializedPath)
  90.      * @param array $options                    options
  91.      * @return object $options                  instance of Doctrine_Node
  92.      * @throws Doctrine_Exception               if class does not extend Doctrine_Tree
  93.      */
  94.     public static function factory(Doctrine_Table $table$implName$options array())
  95.     {
  96.         $class 'Doctrine_Tree_' $implName;
  97.         if (!class_exists($class)) {
  98.             throw new Doctrine_Exception('The chosen class must extend Doctrine_Tree');
  99.         }
  100.         return new $class($table$options);
  101.     }
  102.  
  103.     /**
  104.      * gets tree attribute value
  105.      *        
  106.      */     
  107.     public function getAttribute($name)
  108.     {
  109.       return isset($this->options[$name]$this->options[$namenull;
  110.     }
  111.  
  112.     /**
  113.      * sets tree attribute value
  114.      *
  115.      * @param mixed 
  116.      */
  117.     public function setAttribute($name$value)
  118.     {
  119.       $this->options[$name$value;
  120.     }
  121.     
  122.     /**
  123.      * Returns the base tree component.
  124.      */
  125.     public function getBaseComponent()
  126.     {
  127.         return $this->_baseComponent;
  128.     }
  129. }