Subversion Repositories SmartDukaan

Rev

Rev 19102 | Rev 19128 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
19099 naman 1
<?php if(!empty($noti)):?>
2
			<?php foreach ($noti as $key => $value):?>
3
 
4
				<div style="min-height:60px;margin:0px;font-size:14px;" class="notifi row card"  data-urltype= "<?php echo $value["type"];?>" data-url = "<?php echo $value["url"];?>" >
5
					<a href = "<?php if(isset($value["url"])):?><?php echo $base_url."".$value["url"];?><?php endif;?>">
19105 naman 6
						<div class="col-xs-12 <?php if( $value['expired'] == true):?>expired<?php elseif($value["seen"] == true && $value['expired'] == false):?>seen<?php endif;?>" style="padding:2px;">
19099 naman 7
							<div class="row">
19105 naman 8
								<div class="col-xs-1" style="padding:0px;font-size:18px;">
9
									<?php if($value['expired'] == true):?>
10
										<span class = "glyphicon glyphicon-ban-circle" style="float:left;margin-top:15%;"></span>
11
									<?php else:?>
12
										<span class = "glyphicon glyphicon-bell" style="float:left;margin-top:15%;"></span>
13
									<?php endif;?>
14
								</div>
19099 naman 15
								<div class="col-xs-10" style="padding:0px;">
16
								<?php if(isset($value['text']) && !empty($value['text'])):?>
19105 naman 17
									<div class="text">
19099 naman 18
 
19
										<?php echo $value['text'];?>
20
 
21
									</div>
22
								<?php endif;?>
23
								<?php if(isset($value['longText']) && !empty($value['longText'])):?>
19105 naman 24
									<div class="longtext " style="font-size: 12px;">
19099 naman 25
										<?php echo $value['longText'];?>
26
									</div>	
27
								<?php endif;?>
28
								<?php if(isset($value['expired']) && $value['expired'] == true):?>
29
									<div class="expiredtext">
19105 naman 30
<!-- 										Expired -->
19099 naman 31
									</div>	
32
								<?php endif;?>
33
								</div>
34
							<div class="col-xs-1" style="padding:0px;font-size:14px;"><span class = "glyphicon glyphicon-chevron-right" style="float:right;margin-top: 20%;"></span></div>		
35
							</div>
19105 naman 36
							<span style="float:right;font-size:10px">23-Mar-2016</span>
19099 naman 37
						</div>
38
					</a>
39
				</div>
40
				<center><hr style="margin:0px;width:97%"></center>
41
			<?php endforeach;?>
42
			<?php //if(!$noscrolling):?>
19105 naman 43
				<p class="text-center"><a class="btn btn-xs btn-default infitescroller" style="color:black;" href="<?php echo $nexturl;?>">Load More</a></p>
19099 naman 44
			<?php //endif;?>	
45
<?php endif;?>