Subversion Repositories SmartDukaan

Rev

Rev 19213 | 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
 
19315 naman 4
				<div style="margin:0px;min-height:60px;font-size:14px;" class="notifi row card <?php if( $value['expired'] == true):?>expired<?php elseif($value["seen"] == true && $value['expired'] == false):?>seen<?php else:?>unseen<?php endif;?>"  data-cid ="<?php echo $value["cid"];?>" data-urltype= "<?php echo $value["type"];?>" data-url = "<?php echo $value["url"];?>" data-notificationtype = "<?php echo $value["status"];?>" >
19202 naman 5
 
19315 naman 6
						<div class="col-xs-12" 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>
19130 naman 15
								<div class="col-xs-11" style="padding:0px;">
19202 naman 16
								<?php if(isset($value['title']) && !empty($value['title'])):?>
19105 naman 17
									<div class="text">
19099 naman 18
 
19202 naman 19
										<?php echo $value['title'];?>
20
										<span style="float:right;font-size:10px;font-weight:normal;">
21
											<?php 
22
// 												echo date('Y-m-d', $value['created']);
23
												echo date('d-M', $value['created']/1000);
24
											?>	
25
 
26
										</span>
19099 naman 27
									</div>
28
								<?php endif;?>
19128 naman 29
								<?php if(isset($value['message']) && !empty($value['message'])):?>
19129 naman 30
									<div class="message " style="font-size: 13px;">
19128 naman 31
										<?php echo $value['message'];?>
32
									</div>	
33
								<?php endif;?>
34
 
19315 naman 35
								<?php if(isset($value['notification_long_text']) && !empty($value['notification_long_text'])):?>
19129 naman 36
									<div class="longtext " style="font-size: 11px;">
19315 naman 37
										<?php echo $value['notification_long_text'];?>
19099 naman 38
									</div>	
39
								<?php endif;?>
40
								</div>
19130 naman 41
 
42
 
19128 naman 43
								<!--  <span class = "glyphicon glyphicon-chevron-right" style="float:right;margin-top: 20%;"></span>-->		
19130 naman 44
 
19099 naman 45
							</div>
19129 naman 46
 
19099 naman 47
						</div>
19202 naman 48
 
19099 naman 49
				</div>
50
				<center><hr style="margin:0px;width:97%"></center>
51
			<?php endforeach;?>
52
			<?php //if(!$noscrolling):?>
19105 naman 53
				<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 54
			<?php //endif;?>	
55
<?php endif;?>