Source for file Orderby.php

Documentation is available at Orderby.php

  1. <?php
  2. /*
  3.  *  $Id: Orderby.php 1871 2007-06-27 17:41:02Z zYne $
  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_Query_Part');
  22. /**
  23.  * Doctrine_Query_Orderby
  24.  *
  25.  * @package     Doctrine
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @category    Object Relational Mapping
  28.  * @link        www.phpdoctrine.com
  29.  * @since       1.0
  30.  * @version     $Revision: 1871 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * DQL ORDER BY PARSER
  36.      * parses the order by part of the query string
  37.      *
  38.      * @param string $str 
  39.      * @return void 
  40.      */
  41.     public function parse($str$append false)
  42.     {
  43.         $ret array();
  44.  
  45.         foreach (explode(','trim($str)) as $r{
  46.             $r trim($r);
  47.             $e explode(' '$r);
  48.             $a explode('.'$e[0]);
  49.  
  50.             if (count($a1{
  51.                 $field     array_pop($a);
  52.                 $reference implode('.'$a);
  53.                 $name      end($a);
  54.  
  55.                 $map $this->query->load($referencefalse);
  56.                 $tableAlias $this->query->getTableAlias($reference);
  57.  
  58.                 $r $tableAlias '.' $field;
  59.  
  60.  
  61.             else {
  62.                 $field $this->query->getAggregateAlias($e[0]);
  63.  
  64.                 $r $field;
  65.             }
  66.             if (isset($e[1])) {
  67.                 $r .= ' ' $e[1];
  68.             }
  69.             $ret[$r;
  70.         }
  71.         return $ret;
  72.     }
  73. }