| 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;?>">
|
|
|
6 |
<div class="col-xs-12 <?php if($value["seen"] == true || $value['expired'] == true):?>expired<?php endif;?>" style="padding:2px;">
|
|
|
7 |
<div class="row">
|
|
|
8 |
<div class="col-xs-1" style="padding:0px;font-size:18px;"><span class = "glyphicon glyphicon-bell" style="float:left;margin-top:15%;"></span></div>
|
|
|
9 |
<div class="col-xs-10" style="padding:0px;">
|
|
|
10 |
<?php if(isset($value['text']) && !empty($value['text'])):?>
|
|
|
11 |
<div class="text <?php if($value["seen"] == false && $value['expired'] == false):?>unseen<?php else:?>expired<?php endif;?>">
|
|
|
12 |
|
|
|
13 |
<?php echo $value['text'];?>
|
|
|
14 |
|
|
|
15 |
</div>
|
|
|
16 |
<?php endif;?>
|
|
|
17 |
<?php if(isset($value['longText']) && !empty($value['longText'])):?>
|
| 19102 |
naman |
18 |
<div class="longtext <?php if($value["seen"] == true):?>expired<?php endif;?>" style="font-size: 12px;">
|
| 19099 |
naman |
19 |
<?php echo $value['longText'];?>
|
|
|
20 |
</div>
|
|
|
21 |
<?php endif;?>
|
|
|
22 |
<?php if(isset($value['expired']) && $value['expired'] == true):?>
|
|
|
23 |
<div class="expiredtext">
|
|
|
24 |
<!-- Oops! notification expired... -->
|
|
|
25 |
</div>
|
|
|
26 |
<?php endif;?>
|
|
|
27 |
</div>
|
|
|
28 |
<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>
|
|
|
29 |
</div>
|
|
|
30 |
</div>
|
|
|
31 |
</a>
|
|
|
32 |
</div>
|
|
|
33 |
<center><hr style="margin:0px;width:97%"></center>
|
|
|
34 |
<?php endforeach;?>
|
|
|
35 |
<?php //if(!$noscrolling):?>
|
|
|
36 |
<p class="text-center"><a class="btn btn-primary infitescroller" href="<?php echo $nexturl;?>">Load More</a></p>
|
|
|
37 |
<?php //endif;?>
|
|
|
38 |
<?php endif;?>
|