| 15839 |
manish.sha |
1 |
<nav class="navbar navbar-default navbar-fixed-top">
|
|
|
2 |
<div class="container-fluid">
|
|
|
3 |
<div class="navbar-header">
|
|
|
4 |
<a class="navbar-brand" href="/"><img src="/img/mobilehotindia.png" alt="" /></a>
|
| 15403 |
manish.sha |
5 |
</div>
|
| 15839 |
manish.sha |
6 |
<div class="navbar-collapse collapse">
|
|
|
7 |
<ul class="nav navbar-nav navbar-right">
|
|
|
8 |
<li><form class="navbar-form" role="search" method="GET" name="search" action="<?php echo $base_url;?>search">
|
|
|
9 |
<div class="input-group col-xs-20 text-right" id="remote">
|
|
|
10 |
<input autocomplete="off" type="text" class="form-control" placeholder="Seeking for..." name="q" id="srch-term">
|
|
|
11 |
<div class="input-group-btn w25px">
|
|
|
12 |
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
|
|
|
13 |
</div>
|
|
|
14 |
</div>
|
|
|
15 |
</form></li>
|
|
|
16 |
</ul>
|
|
|
17 |
</div>
|
|
|
18 |
</div>
|
|
|
19 |
</nav>
|
| 15403 |
manish.sha |
20 |
<div class="container">
|
|
|
21 |
<?php echo $this->element('unlikemodal');?>
|
|
|
22 |
<?php echo $this->element('variantsModal');?>
|
|
|
23 |
<div class="row card">
|
|
|
24 |
<?php if(!empty($storeProduct)):?>
|
|
|
25 |
<div class="centeredimage col-xs-6">
|
|
|
26 |
<img class="img img-responsive" src="<?php echo $base_url.'app/webroot/timthumb.php?h=90&src='.$storeProduct['thumbnail'];?>"/>
|
|
|
27 |
</div>
|
|
|
28 |
<div class="col-xs-6 viewproduct" id="sku-<?php echo $storeitems[0]['source_id'];?>" data-source="<?php echo $storeitems[0]['source_id'];?>" data-url="<?php echo $storeitems[0]['marketPlaceUrl'];?>" data-id="<?php echo $storeitems[0]['_id'];?>" data-bundle_id="<?php echo $storeProduct['skuBundleId'];?>" data-url="<?php echo $storeitems[0]['marketPlaceUrl'];?>" data-price="<?php echo $storeitems[0]['available_price'];?>">
|
|
|
29 |
<h3 id="bestpriceproductname"><?php echo $storeitems[0]['source_product_name'];?></h3>
|
|
|
30 |
<div id="bestpricecontainer">Best Price
|
|
|
31 |
|
|
|
32 |
<span class="cashbackrupee"></span>
|
|
|
33 |
<span id="bestprice"><?php echo $storeitems[0]['available_price'];?></span>
|
|
|
34 |
</div>
|
|
|
35 |
<button class="btn btn-xs" id="beststorelink" >BUY NOW</button>
|
|
|
36 |
</div>
|
|
|
37 |
<?php unset($storeitems[0]);?>
|
|
|
38 |
<div class="clearfix"></div>
|
|
|
39 |
<?php if(!empty($activestores)):?>
|
|
|
40 |
<?php foreach($activestores AS $storeName => $store):?>
|
|
|
41 |
<?php if($storeShown[$store['store_id']]):?>
|
|
|
42 |
<div class="row greenborder">
|
|
|
43 |
<?php $count=1;?>
|
|
|
44 |
<?php foreach($storeitems AS $storedeal):?>
|
|
|
45 |
<?php if($storedeal['source_id']==$store['store_id']):?>
|
|
|
46 |
<?php if($count==1):?>
|
|
|
47 |
<div class="col-xs-12 pull-left">
|
|
|
48 |
<img class="storelogo" src="<?php echo $store['logo'];?>"/>
|
|
|
49 |
</div>
|
|
|
50 |
<div class="col-xs-6 text-small" id="name-<?php echo $store['store_id'];?>"><?php echo $storedeal['source_product_name'];?></div>
|
|
|
51 |
<div class="col-xs-6 viewproduct" data-storename="<?php echo ucfirst($storeName);?>" id="sku-<?php echo $store['store_id'];?>" data-source="<?php echo $store['store_id'];?>" data-url="<?php echo $storedeal['marketPlaceUrl'];?>" data-id="<?php echo $storedeal['_id'];?>"
|
|
|
52 |
data-bundle_id="<?php echo $storeProduct['skuBundleId'];?>" data-price="<?php echo $storedeal['available_price'];?>">
|
|
|
53 |
<span class="cashbackrupee"></span>
|
|
|
54 |
|
|
|
55 |
<span id="bestprice"><?php echo $storedeal['available_price'];?></span>
|
|
|
56 |
<span class="pull-right arrowright"></span>
|
|
|
57 |
</div>
|
|
|
58 |
<?php else:?>
|
|
|
59 |
<div class="col-xs-6 varnts text-small"><?php echo $storedeal['source_product_name'];?></div>
|
|
|
60 |
<div class="col-xs-6 varnts viewproduct" data-source="<?php echo $store['store_id'];?>" data-price="<?php echo $storedeal['available_price'];?>" data-url="<?php echo $storedeal['marketPlaceUrl'];?>" data-id="<?php echo $storedeal['_id'];?>"><span class="cashbackrupee varnts text-right"></span> <span><?php echo $storedeal['available_price'];?></span>
|
|
|
61 |
<span class="pull-right arrowright"></span></div>
|
|
|
62 |
<?php endif;?>
|
|
|
63 |
<?php $count=$count+1;?>
|
|
|
64 |
<?php endif;?>
|
|
|
65 |
<?php endforeach;?>
|
|
|
66 |
</div>
|
|
|
67 |
<?php endif;?>
|
|
|
68 |
<?php endforeach;?>
|
|
|
69 |
<?php endif;?>
|
|
|
70 |
<?php endif;?>
|
|
|
71 |
</div>
|
|
|
72 |
</div>
|
| 15839 |
manish.sha |
73 |
<script type="text/javascript" src="/js/profittill.js?v=<?php echo $staticversion;?>"></script>
|