Subversion Repositories SmartDukaan

Rev

Rev 13674 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
        <?php if(!empty($myfavorites)):?>
                <?php foreach ($myfavorites as $key => $order):?>
                        <?php if(!empty($order['subOrders'])):?>
                                <?php foreach ($order['subOrders'] as $key => $suborder):?>
                                <div class="row suborder">
                                        <div class="col-xs-3">
                                                <?php if(!empty($suborder['imageUrl'])):?>
                                                        <img src="<?php echo $suborder['imageUrl'];?>" alt="<?php echo $suborder['productTitle'];?>"/>
                                                <?php else:?>
                                                        <img src="<?php echo $base_url;?>timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=80" alt="<?php echo $suborder['productTitle'];?>"/>
                                                <?php endif;?>
                                        </div>
                                        <div class="col-xs-9">
                                                <h4><?php echo $suborder['productTitle'];?></h4>
                                                <?php if(!empty($suborder['estimatedDeliveryDate'])):?>
                                                        <p>Will be delivered by <span class="deliverydate"><?php echo $suborder['estimatedDeliveryDate'];?></span></p>
                                                <?php endif;?>
                                        </div>
                                </div>
                                <?php endforeach;?>
                        <?php endif;?>
                <?php endforeach;?>
        <?php endif;?>
        </div>
</div>