Source for file Integer.php

Documentation is available at Integer.php

  1. <?php
  2. /*
  3.  *  $Id: Integer.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. Doctrine::autoload('Doctrine_Hook_Parser_Complex');
  22. /**
  23.  * Doctrine_Hook_Integer
  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: 1080 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * parse
  36.      * Parses given field and field value to DQL condition
  37.      * and parameters. This method should always return
  38.      * prepared statement conditions (conditions that use
  39.      * placeholders instead of literal values).
  40.      *
  41.      * @param string $alias     component alias
  42.      * @param string $field     the field name
  43.      * @param mixed $value      the value of the field
  44.      * @return void 
  45.      */
  46.     public function parseSingle($alias$field$value)
  47.     {
  48.         $e explode(' '$value);
  49.  
  50.         foreach ($e as $v{
  51.              $v trim($v);
  52.  
  53.              $e2   explode('-'$v);
  54.  
  55.             $name $alias'.' $field;
  56.  
  57.              if (count($e2== 1{
  58.                  // one '-' found
  59.  
  60.                 $a[$name ' = ?';
  61.  
  62.                 $this->params[$v;
  63.             else {
  64.                 // more than one '-' found
  65.  
  66.                 $a['(' $name ' > ? AND ' $name ' < ?)';
  67.  
  68.                 $this->params += array($e2[0]$e2[1]);
  69.             }
  70.  
  71.         }
  72.         return implode(' OR '$a);
  73.     }
  74. }