예제 #1
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      Taula5 $value A Taula5 object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(Taula5 $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getT5id();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
예제 #2
0
                        </select>
                    </div>
                    <div id="medidas0_div" class="medidas_buttons">
                        <a class="medidas_link" href="#" id="add_medidas">&gt;&gt;</a>
                        <a class="medidas_link" href="#" id="remove_medidas">&lt;&lt;</a>
                    </div><?php 
    }
    ?>
                <div class="medidas">
                    <select id="medidas2" name="medidas2[]" multiple="multiple" class="medidas multiple_list"><?php 
    foreach ($medidas as $m) {
        $c = new Criteria();
        $c->add(Taula5Peer::T5ID, $m, Criteria::EQUAL);
        $medida = Taula5Peer::doSelectOne($c);
        if (!$medida instanceof Taula5) {
            $medida = new Taula5();
        }
        ?>
                            <option title="<?php 
        echo $medida->getDescripcion();
        ?>
" value="<?php 
        echo $medida->getT5id();
        ?>
">
                                <?php 
        echo $medida->getDescripcion();
        ?>
                            </option><?php 
    }
    ?>