Subversion Repositories SmartDukaan

Rev

Rev 14955 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14955 Rev 17432
Line 29... Line 29...
29
		<dt><?php echo __('Url'); ?></dt>
29
		<dt><?php echo __('Url'); ?></dt>
30
		<dd>
30
		<dd>
31
			<?php echo h($notificationCampaign['NotificationCampaign']['url']); ?>
31
			<?php echo h($notificationCampaign['NotificationCampaign']['url']); ?>
32
			&nbsp;
32
			&nbsp;
33
		</dd>
33
		</dd>
-
 
34
		<dt><?php echo __('Sql'); ?></dt>
-
 
35
		<dd>
-
 
36
			<?php echo h($notificationCampaign['NotificationCampaign']['sql']); ?>
-
 
37
			&nbsp;
-
 
38
		</dd>
-
 
39
		<dt><?php echo __('Expiresat'); ?></dt>
-
 
40
		<dd>
-
 
41
			<?php echo h($notificationCampaign['NotificationCampaign']['expiresat']); ?>
-
 
42
			&nbsp;
-
 
43
		</dd>
-
 
44
		<dt><?php echo __('Status'); ?></dt>
-
 
45
		<dd>
-
 
46
			<?php echo h($notificationCampaign['NotificationCampaign']['status']); ?>
-
 
47
			&nbsp;
-
 
48
		</dd>
34
		<dt><?php echo __('Created'); ?></dt>
49
		<dt><?php echo __('Created'); ?></dt>
35
		<dd>
50
		<dd>
36
			<?php echo h($notificationCampaign['NotificationCampaign']['created']); ?>
51
			<?php echo h($notificationCampaign['NotificationCampaign']['created']); ?>
37
			&nbsp;
52
			&nbsp;
38
		</dd>
53
		</dd>
-
 
54
		<dt><?php echo __('Sendsms'); ?></dt>
-
 
55
		<dd>
-
 
56
			<?php echo h($notificationCampaign['NotificationCampaign']['sendsms']); ?>
-
 
57
			&nbsp;
-
 
58
		</dd>
-
 
59
		<dt><?php echo __('Messagetext'); ?></dt>
-
 
60
		<dd>
-
 
61
			<?php echo h($notificationCampaign['NotificationCampaign']['messagetext']); ?>
-
 
62
			&nbsp;
-
 
63
		</dd>
-
 
64
		<dt><?php echo __('Smsprocessed'); ?></dt>
-
 
65
		<dd>
-
 
66
			<?php echo h($notificationCampaign['NotificationCampaign']['smsprocessed']); ?>
-
 
67
			&nbsp;
-
 
68
		</dd>
39
	</dl>
69
	</dl>
40
</div>
70
</div>
41
<div class="actions">
71
<div class="actions">
42
	<h3><?php echo __('Actions'); ?></h3>
72
	<h3><?php echo __('Actions'); ?></h3>
43
	<ul>
73
	<ul>
Line 57... Line 87...
57
		<th><?php echo __('Id'); ?></th>
87
		<th><?php echo __('Id'); ?></th>
58
		<th><?php echo __('User Id'); ?></th>
88
		<th><?php echo __('User Id'); ?></th>
59
		<th><?php echo __('Notification Campaign Id'); ?></th>
89
		<th><?php echo __('Notification Campaign Id'); ?></th>
60
		<th><?php echo __('Type'); ?></th>
90
		<th><?php echo __('Type'); ?></th>
61
		<th><?php echo __('Status'); ?></th>
91
		<th><?php echo __('Status'); ?></th>
-
 
92
		<th><?php echo __('Message'); ?></th>
62
		<th><?php echo __('Response Time'); ?></th>
93
		<th><?php echo __('Response Time'); ?></th>
63
		<th><?php echo __('Created'); ?></th>
94
		<th><?php echo __('Created'); ?></th>
64
		<th class="actions"><?php echo __('Actions'); ?></th>
95
		<th class="actions"><?php echo __('Actions'); ?></th>
65
	</tr>
96
	</tr>
66
	<?php foreach ($notificationCampaign['Pushnotification'] as $pushnotification): ?>
97
	<?php foreach ($notificationCampaign['Pushnotification'] as $pushnotification): ?>
Line 68... Line 99...
68
			<td><?php echo $pushnotification['id']; ?></td>
99
			<td><?php echo $pushnotification['id']; ?></td>
69
			<td><?php echo $pushnotification['user_id']; ?></td>
100
			<td><?php echo $pushnotification['user_id']; ?></td>
70
			<td><?php echo $pushnotification['notification_campaign_id']; ?></td>
101
			<td><?php echo $pushnotification['notification_campaign_id']; ?></td>
71
			<td><?php echo $pushnotification['type']; ?></td>
102
			<td><?php echo $pushnotification['type']; ?></td>
72
			<td><?php echo $pushnotification['status']; ?></td>
103
			<td><?php echo $pushnotification['status']; ?></td>
-
 
104
			<td><?php echo $pushnotification['message']; ?></td>
73
			<td><?php echo $pushnotification['response_time']; ?></td>
105
			<td><?php echo $pushnotification['response_time']; ?></td>
74
			<td><?php echo $pushnotification['created']; ?></td>
106
			<td><?php echo $pushnotification['created']; ?></td>
75
			<td class="actions">
107
			<td class="actions">
76
				<?php echo $this->Html->link(__('View'), array('controller' => 'pushnotifications', 'action' => 'view', $pushnotification['id'])); ?>
108
				<?php echo $this->Html->link(__('View'), array('controller' => 'pushnotifications', 'action' => 'view', $pushnotification['id'])); ?>
77
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'pushnotifications', 'action' => 'edit', $pushnotification['id'])); ?>
109
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'pushnotifications', 'action' => 'edit', $pushnotification['id'])); ?>