| 15403 |
manish.sha |
1 |
<div class="notificationCampaigns view">
|
|
|
2 |
<h2><?php echo __('Notification Campaign'); ?></h2>
|
|
|
3 |
<?php //debug($notificationCampaign); ?>
|
|
|
4 |
<table cellpadding="0" cellspacing="10%" border="1" class="table table-striped">
|
|
|
5 |
<tr>
|
|
|
6 |
<th align="center"><?php echo h('Id'); ?></th>
|
|
|
7 |
<th align="center"><?php echo h('Campaign Id'); ?></th>
|
|
|
8 |
<th align="center"><?php echo h('Type'); ?></th>
|
|
|
9 |
<th align="center"><?php echo h('Status'); ?></th>
|
|
|
10 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
|
|
11 |
<th align="center"><?php echo h('Created'); ?></th>
|
|
|
12 |
</tr>
|
|
|
13 |
|
|
|
14 |
<?php foreach ($userdata as $key => $temp): ?>
|
|
|
15 |
<!-- <?php debug($temp);?> -->
|
|
|
16 |
<tr align="center">
|
|
|
17 |
<td width="15%">
|
|
|
18 |
<?php echo h($temp['pushnotifications']['id'])?>
|
|
|
19 |
</td>
|
|
|
20 |
<td>
|
|
|
21 |
<?php echo h($temp['pushnotifications']['notification_campaign_id'])?>
|
|
|
22 |
</td>
|
|
|
23 |
<td>
|
|
|
24 |
<?php echo h($temp['pushnotifications']['type'])?>
|
|
|
25 |
</td>
|
|
|
26 |
<td>
|
|
|
27 |
<?php echo h($temp['pushnotifications']['status'])?>
|
|
|
28 |
</td>
|
|
|
29 |
<td width="30%">
|
|
|
30 |
<?php echo h($temp['pushnotifications']['response_time'])?>
|
|
|
31 |
</td>
|
|
|
32 |
<td width="30%">
|
|
|
33 |
<?php echo h($temp['pushnotifications']['created'])?>
|
|
|
34 |
</td>
|
|
|
35 |
|
|
|
36 |
</tr>
|
|
|
37 |
<?php endforeach; ?>
|
|
|
38 |
</table>
|
|
|
39 |
|
|
|
40 |
</div>
|