Subversion Repositories SmartDukaan

Rev

Rev 17223 | Details | Compare with Previous | Last modification | View Log | RSS feed

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