Subversion Repositories SmartDukaan

Rev

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

Rev 14955 Rev 17432
Line 6... Line 6...
6
			<th><?php echo $this->Paginator->sort('name'); ?></th>
6
			<th><?php echo $this->Paginator->sort('name'); ?></th>
7
			<th><?php echo $this->Paginator->sort('title'); ?></th>
7
			<th><?php echo $this->Paginator->sort('title'); ?></th>
8
			<th><?php echo $this->Paginator->sort('message'); ?></th>
8
			<th><?php echo $this->Paginator->sort('message'); ?></th>
9
			<th><?php echo $this->Paginator->sort('type'); ?></th>
9
			<th><?php echo $this->Paginator->sort('type'); ?></th>
10
			<th><?php echo $this->Paginator->sort('url'); ?></th>
10
			<th><?php echo $this->Paginator->sort('url'); ?></th>
-
 
11
			<th><?php echo $this->Paginator->sort('sql'); ?></th>
-
 
12
			<th><?php echo $this->Paginator->sort('expiresat'); ?></th>
-
 
13
			<th><?php echo $this->Paginator->sort('status'); ?></th>
11
			<th><?php echo $this->Paginator->sort('created'); ?></th>
14
			<th><?php echo $this->Paginator->sort('created'); ?></th>
-
 
15
			<th><?php echo $this->Paginator->sort('sendsms'); ?></th>
-
 
16
			<th><?php echo $this->Paginator->sort('messagetext'); ?></th>
-
 
17
			<th><?php echo $this->Paginator->sort('smsprocessed'); ?></th>
12
			<th class="actions"><?php echo __('Actions'); ?></th>
18
			<th class="actions"><?php echo __('Actions'); ?></th>
13
	</tr>
19
	</tr>
14
	<?php foreach ($notificationCampaigns as $notificationCampaign): ?>
20
	<?php foreach ($notificationCampaigns as $notificationCampaign): ?>
15
	<tr>
21
	<tr>
16
		<td><?php echo h($notificationCampaign['NotificationCampaign']['id']); ?>&nbsp;</td>
22
		<td><?php echo h($notificationCampaign['NotificationCampaign']['id']); ?>&nbsp;</td>
17
		<td><?php echo h($notificationCampaign['NotificationCampaign']['name']); ?>&nbsp;</td>
23
		<td><?php echo h($notificationCampaign['NotificationCampaign']['name']); ?>&nbsp;</td>
18
		<td><?php echo h($notificationCampaign['NotificationCampaign']['title']); ?>&nbsp;</td>
24
		<td><?php echo h($notificationCampaign['NotificationCampaign']['title']); ?>&nbsp;</td>
19
		<td><?php echo h($notificationCampaign['NotificationCampaign']['message']); ?>&nbsp;</td>
25
		<td><?php echo h($notificationCampaign['NotificationCampaign']['message']); ?>&nbsp;</td>
20
		<td><?php echo h($notificationCampaign['NotificationCampaign']['type']); ?>&nbsp;</td>
26
		<td><?php echo h($notificationCampaign['NotificationCampaign']['type']); ?>&nbsp;</td>
21
		<td><?php echo h($notificationCampaign['NotificationCampaign']['url']); ?>&nbsp;</td>
27
		<td><?php echo h($notificationCampaign['NotificationCampaign']['url']); ?>&nbsp;</td>
-
 
28
		<td><?php echo h($notificationCampaign['NotificationCampaign']['sql']); ?>&nbsp;</td>
-
 
29
		<td><?php echo h($notificationCampaign['NotificationCampaign']['expiresat']); ?>&nbsp;</td>
-
 
30
		<td><?php echo h($notificationCampaign['NotificationCampaign']['status']); ?>&nbsp;</td>
22
		<td><?php echo h($notificationCampaign['NotificationCampaign']['created']); ?>&nbsp;</td>
31
		<td><?php echo h($notificationCampaign['NotificationCampaign']['created']); ?>&nbsp;</td>
-
 
32
		<td><?php echo h($notificationCampaign['NotificationCampaign']['sendsms']); ?>&nbsp;</td>
-
 
33
		<td><?php echo h($notificationCampaign['NotificationCampaign']['messagetext']); ?>&nbsp;</td>
-
 
34
		<td><?php echo h($notificationCampaign['NotificationCampaign']['smsprocessed']); ?>&nbsp;</td>
23
		<td class="actions">
35
		<td class="actions">
24
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $notificationCampaign['NotificationCampaign']['id'])); ?>
36
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $notificationCampaign['NotificationCampaign']['id'])); ?>
25
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $notificationCampaign['NotificationCampaign']['id'])); ?>
37
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $notificationCampaign['NotificationCampaign']['id'])); ?>
26
			<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $notificationCampaign['NotificationCampaign']['id']), null, __('Are you sure you want to delete # %s?', $notificationCampaign['NotificationCampaign']['id'])); ?>
38
			<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $notificationCampaign['NotificationCampaign']['id']), null, __('Are you sure you want to delete # %s?', $notificationCampaign['NotificationCampaign']['id'])); ?>
27
		</td>
39
		</td>