Source for file Interface.php

Documentation is available at Interface.php

  1. <?php
  2. /*
  3.  *  $Id: Interface.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_Tree_Interface
  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      Joe Simms <joe.simms@websites4.com>
  31.  */
  32.  
  33.     /**
  34.      * creates root node from given record or from a new record
  35.      *
  36.      * @param object $record                    instance of Doctrine_Record
  37.      */
  38.     public function createRoot(Doctrine_Record $record null);
  39.  
  40.     /**
  41.      * returns root node
  42.      *
  43.      * @return object $record                   instance of Doctrine_Record
  44.      */
  45.     public function findRoot($root_id 1);
  46.  
  47.     /**
  48.      * optimised method to returns iterator for traversal of the entire tree from root
  49.      *
  50.      * @param array $options                    options
  51.      * @return object $iterator                 instance of Doctrine_Node_<Implementation>_PreOrderIterator
  52.      */
  53.     public function fetchTree($options array());
  54.  
  55.     /**
  56.      * optimised method that returns iterator for traversal of the tree from the given record primary key
  57.      *
  58.      * @param mixed $pk                         primary key as used by table::find() to locate node to traverse tree from
  59.      * @param array $options                    options
  60.      * @return iterator                         instance of Doctrine_Node_<Implementation>_PreOrderIterator
  61.      */
  62.     public function fetchBranch($pk$options array());
  63. }