Subversion Repositories SmartDukaan

Rev

Rev 14990 | Rev 17214 | Go to most recent revision | 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> -->
3
 
14957 manas 4
<h4><?php echo __('Campaign ID ->     '.$notificationData[0]['notification_campaigns']['id']); ?></h4>
14955 manas 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>
14990 manas 11
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped"  >
14955 manas 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>
15508 anikendra 17
		<th align="center"><?php echo h('Response'); ?></th>
14955 manas 18
 
19
	</tr>
20
	<?php foreach ($data as $notificationCampaign): ?>
21
	<tr>
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>
15508 anikendra 26
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['message']); ?>&nbsp;</td>
14955 manas 27
	</tr>
28
	<?php endforeach; ?>
14957 manas 29
	</table>
14955 manas 30
	</div>