| 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']); ?> </td>
|
22 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['id']); ?> </td>
|
| 17 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['name']); ?> </td>
|
23 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['name']); ?> </td>
|
| 18 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['title']); ?> </td>
|
24 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['title']); ?> </td>
|
| 19 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['message']); ?> </td>
|
25 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['message']); ?> </td>
|
| 20 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['type']); ?> </td>
|
26 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['type']); ?> </td>
|
| 21 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['url']); ?> </td>
|
27 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['url']); ?> </td>
|
| - |
|
28 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['sql']); ?> </td>
|
| - |
|
29 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['expiresat']); ?> </td>
|
| - |
|
30 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['status']); ?> </td>
|
| 22 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['created']); ?> </td>
|
31 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['created']); ?> </td>
|
| - |
|
32 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['sendsms']); ?> </td>
|
| - |
|
33 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['messagetext']); ?> </td>
|
| - |
|
34 |
<td><?php echo h($notificationCampaign['NotificationCampaign']['smsprocessed']); ?> </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>
|