| Line 1... |
Line 1... |
| 1 |
<div class="notificationCampaigns index">
|
1 |
<div class="notificationCampaigns index">
|
| 2 |
<!-- <h2><?php echo __('Notification Campaigns'); ?></h2> -->
|
2 |
<!-- <h2><?php echo __('Notification Campaigns'); ?></h2> -->
|
| 3 |
|
- |
|
| 4 |
<h4><?php echo __('Campaign ID -> '.$notificationData[0]['notification_campaigns']['id']); ?></h4>
|
3 |
<h4><?php echo __('Campaign ID -> '.$notificationData[0]['notification_campaigns']['id']); ?></h4>
|
| 5 |
<h4><?php echo __('Campaign Name -> '.$notificationData[0]['notification_campaigns']['name']); ?></h4>
|
4 |
<h4><?php echo __('Campaign Name -> '.$notificationData[0]['notification_campaigns']['name']); ?></h4>
|
| 6 |
<h4><?php echo __('Campaign Title -> '.$notificationData[0]['notification_campaigns']['title']); ?></h4>
|
5 |
<h4><?php echo __('Campaign Title -> '.$notificationData[0]['notification_campaigns']['title']); ?></h4>
|
| 7 |
<h4><?php echo __('Campaign Message -> '.$notificationData[0]['notification_campaigns']['message']); ?></h4>
|
6 |
<h4><?php echo __('Campaign Message -> '.$notificationData[0]['notification_campaigns']['message']); ?></h4>
|
| 8 |
<h4><?php echo __('Campaign Type -> '.$notificationData[0]['notification_campaigns']['type']); ?></h4>
|
7 |
<h4><?php echo __('Campaign Type -> '.$notificationData[0]['notification_campaigns']['type']); ?></h4>
|
| 9 |
<h4><?php echo __('Campaign URL -> '.$notificationData[0]['notification_campaigns']['url']); ?></h4>
|
8 |
<h4><?php echo __('Campaign URL -> '.$notificationData[0]['notification_campaigns']['url']); ?></h4>
|
| 10 |
<h4><?php echo __('Campaign Created -> '.$notificationData[0]['notification_campaigns']['created']); ?></h4>
|
9 |
<h4><?php echo __('Campaign Created -> '.$notificationData[0]['notification_campaigns']['created']); ?></h4>
|
| 11 |
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
|
10 |
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
|
| 12 |
<tr>
|
11 |
<tr>
|
| 13 |
<th align="center"><?php echo h('ID'); ?></th>
|
12 |
<!-- <th align="center"><?php echo h('ID'); ?></th> -->
|
| 14 |
<th align="center"><?php echo h('User Id'); ?></th>
|
13 |
<th align="center"><?php echo h('User Id'); ?></th>
|
| 15 |
<th align="center"><?php echo h('Created'); ?></th>
|
14 |
<th align="center"><?php echo h('Created'); ?></th>
|
| 16 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
15 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
| 17 |
<th align="center"><?php echo h('Response'); ?></th>
|
16 |
<th align="center"><?php echo h('Response'); ?></th>
|
| 18 |
|
17 |
|
| 19 |
</tr>
|
18 |
</tr>
|
| 20 |
<?php foreach ($data as $notificationCampaign): ?>
|
19 |
<?php foreach ($result as $key => $notificationCampaign): ?>
|
| 21 |
<tr>
|
20 |
<tr>
|
| - |
|
21 |
|
| 22 |
<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?> </td>
|
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>
|
23 |
<td align="center"><?php //echo h($notificationCampaign['pushnotifications']['user_id']); ?> </td>
|
| 24 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?> </td>
|
24 |
<td align="center"><?php //echo h($notificationCampaign['pushnotifications']['created']); ?> </td>
|
| 25 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?> </td>
|
25 |
<td align="center"><?php //echo h($notificationCampaign['pushnotifications']['response_time']); ?> </td>
|
| 26 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['message']); ?> </td>
|
26 |
<td align="center"><?php //echo h($notificationCampaign['pushnotifications']['message']); ?> </td> -->
|
| - |
|
27 |
<!-- <td align="center" width="4%"><?php //echo h($notificationCampaign['pushnotifications']['id']); ?> </td> -->
|
| - |
|
28 |
<td align="center"><?php echo h($notificationCampaign['user_id']); ?> </td>
|
| - |
|
29 |
<td align="center">
|
| - |
|
30 |
<?php
|
| - |
|
31 |
if(isset($notificationCampaign['created'])){
|
| - |
|
32 |
echo h(date('Y-m-d H:i:s', $notificationCampaign['created']));
|
| - |
|
33 |
}?>
|
| - |
|
34 |
</td>
|
| - |
|
35 |
<td align="center">
|
| - |
|
36 |
<?php
|
| - |
|
37 |
if(isset($notificationCampaign['response_time'])){
|
| - |
|
38 |
echo h(date('Y-m-d H:i:s',$notificationCampaign['response_time']));
|
| - |
|
39 |
}
|
| - |
|
40 |
?>
|
| - |
|
41 |
</td>
|
| - |
|
42 |
<td align="center"><?php echo h($notificationCampaign['message']); ?> </td>
|
| - |
|
43 |
<!-- <td align="center"><?php //echo h($data['']); ?> </td> -->
|
| 27 |
</tr>
|
44 |
</tr>
|
| 28 |
<?php endforeach; ?>
|
45 |
<?php endforeach; ?>
|
| 29 |
</table>
|
- |
|
| 30 |
</div>
|
- |
|
| 31 |
|
46 |
</table>
|
| - |
|
47 |
</div>
|
| - |
|
48 |
|
| 32 |
|
49 |
|