| 15403 |
manish.sha |
1 |
<div class="notificationCampaigns index">
|
|
|
2 |
<!-- <h2><?php echo __('Notification Campaigns'); ?></h2> -->
|
|
|
3 |
|
|
|
4 |
<h4><?php echo __('Campaign ID -> '.$notificationData[0]['notification_campaigns']['id']); ?></h4>
|
|
|
5 |
<h4><?php echo __('Campaign Name -> '.$notificationData[0]['notification_campaigns']['name']); ?></h4>
|
|
|
6 |
<h4><?php echo __('Campaign Title -> '.$notificationData[0]['notification_campaigns']['title']); ?></h4>
|
|
|
7 |
<h4><?php echo __('Campaign Message -> '.$notificationData[0]['notification_campaigns']['message']); ?></h4>
|
|
|
8 |
<h4><?php echo __('Campaign Type -> '.$notificationData[0]['notification_campaigns']['type']); ?></h4>
|
|
|
9 |
<h4><?php echo __('Campaign URL -> '.$notificationData[0]['notification_campaigns']['url']); ?></h4>
|
|
|
10 |
<h4><?php echo __('Campaign Created -> '.$notificationData[0]['notification_campaigns']['created']); ?></h4>
|
|
|
11 |
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
|
|
|
12 |
<tr>
|
|
|
13 |
<th align="center"><?php echo h('ID'); ?></th>
|
|
|
14 |
<th align="center"><?php echo h('User Id'); ?></th>
|
|
|
15 |
<th align="center"><?php echo h('Created'); ?></th>
|
|
|
16 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
|
|
17 |
<th align="center"><?php echo h('Status'); ?></th>
|
|
|
18 |
|
|
|
19 |
</tr>
|
|
|
20 |
<?php foreach ($data as $notificationCampaign): ?>
|
|
|
21 |
<tr>
|
|
|
22 |
<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?> </td>
|
|
|
23 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?> </td>
|
|
|
24 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?> </td>
|
|
|
25 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?> </td>
|
|
|
26 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['status']); ?> </td>
|
|
|
27 |
</tr>
|
|
|
28 |
<?php endforeach; ?>
|
|
|
29 |
</table>
|
|
|
30 |
</div>
|