Subversion Repositories SmartDukaan

Rev

Rev 13674 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13672 anikendra 1
<div class="container">
2
	<div class="row">
3
	<?php if(!empty($myfavorites)):?>
4
		<?php foreach ($myfavorites as $key => $order):?>
5
			<?php if(!empty($order['subOrders'])):?>
6
				<?php foreach ($order['subOrders'] as $key => $suborder):?>
7
				<div class="row suborder">
8
					<div class="col-xs-3">
9
						<?php if(!empty($suborder['imageUrl'])):?>
10
							<img src="<?php echo $suborder['imageUrl'];?>" alt="<?php echo $suborder['productTitle'];?>"/>
11
						<?php else:?>
12
							<img src="<?php echo $base_url;?>timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=80" alt="<?php echo $suborder['productTitle'];?>"/>
13
						<?php endif;?>
14
					</div>
15
					<div class="col-xs-9">
16
						<h4><?php echo $suborder['productTitle'];?></h4>
17
						<?php if(!empty($suborder['estimatedDeliveryDate'])):?>
18
							<p>Will be delivered by <span class="deliverydate"><?php echo $suborder['estimatedDeliveryDate'];?></span></p>
19
						<?php endif;?>
20
					</div>
21
				</div>
22
				<?php endforeach;?>
23
			<?php endif;?>
24
		<?php endforeach;?>
25
	<?php endif;?>
26
	</div>
27
</div>