Subversion Repositories SmartDukaan

Rev

Rev 17226 | 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 view">
2
<h2><?php echo __('Notification Campaign'); ?></h2>
3
	<?php //debug($notificationCampaign); ?>
14990 manas 4
	<table cellpadding="0" cellspacing="10%" border="1" class="table table-striped">
14955 manas 5
	<tr>
17227 naman 6
	<!-- <th align="center"><?php //echo h('Pushed By'); ?></th> -->
14955 manas 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">
17227 naman 17
		<!-- <td width="15%"> -->
17226 naman 18
		<?php //echo h($temp['pushnotifications']['id'])?>
17227 naman 19
		<?php //echo h($temp['pushed_by'])?>
20
		<!-- </td> -->
14955 manas 21
		<td>
17226 naman 22
		<?php //echo h($temp['pushnotifications']['notification_campaign_id'])?>
23
		<?php echo h($temp['notification_campaign_id'])?>
14955 manas 24
		</td>
25
		<td>
17226 naman 26
		<?php //echo h($temp['pushnotifications']['type'])?>
27
		<?php echo h($temp['type'])?>
14955 manas 28
		</td>
29
		<td>
17226 naman 30
		<?php //echo h($temp['pushnotifications']['status'])?>
31
		<?php echo h($temp['status'])?>
14955 manas 32
		</td>
33
		<td width="30%">
17226 naman 34
		<?php //echo h($temp['pushnotifications']['response_time'])?>
35
		<?php 
36
			if(isset($temp['response_time'])){
37
				echo h(date('Y-m-d H:i:s', $temp['response_time']/1000)); 
38
			}?>
39
		<?php //echo h($temp['response_time'])?>
14955 manas 40
		</td>
41
		<td width="30%">
17226 naman 42
		<?php //echo h($temp['pushnotifications']['created'])?>
43
		<?php 
44
			if(isset($temp['created'])){
45
				echo h(date('Y-m-d H:i:s', $temp['created']/1000)); 
46
		}?>
47
		<?php //echo h($temp['created'])?>
14955 manas 48
		</td>
49
 
50
		</tr>
51
	<?php endforeach; ?>
52
	</table>
53
 
54
</div>