/**
  * Clear the instance pool.
  *
  * @return     void
  */
 public static function clearInstancePool()
 {
     self::$instances = array();
 }
Example #2
0
echo input_tag('model', $model);
?>

    </div>

    <div class="form-row">
     <label for="assoc">Equipment Association:</label>
        <?php 
echo select_tag('assocId', objects_for_select(UserBikesPeer::getUserBikesWithShelf(), 'getUserBikeId', 'getBikeMake', $bike), array('style' => 'width:150px'));
?>
    </div>

    <div class="form-row">
     <label for="type">Equipment Type:</label>
        <?php 
echo select_tag('equip_id', objects_for_select(BaseEquipFunctionPeer::doSelect(new Criteria()), 'getFunctionId', 'getFunctionName', $type), array('style' => 'width:150px'));
?>
    </div>

    <div class="form-row">
        <label for="cost">Purchase Cost:</label>
        <?php 
echo input_tag('cost', $cost);
?>
    </div>

     <div class="form-row">
        <label for="pdate">Purchase Date:</label>
        <?php 
echo input_date_tag('purchaseDate', 'now', 'rich=false');
?>