| Line 15... |
Line 15... |
| 15 |
<th><?php echo $this->Paginator->sort('starttime'); ?></th>
|
15 |
<th><?php echo $this->Paginator->sort('starttime'); ?></th>
|
| 16 |
<th><?php echo $this->Paginator->sort('endtime'); ?></th>
|
16 |
<th><?php echo $this->Paginator->sort('endtime'); ?></th>
|
| 17 |
<th><?php echo $this->Paginator->sort('status'); ?></th>
|
17 |
<th><?php echo $this->Paginator->sort('status'); ?></th>
|
| 18 |
<th><?php echo $this->Paginator->sort('popup_display_count'); ?></th>
|
18 |
<th><?php echo $this->Paginator->sort('popup_display_count'); ?></th>
|
| 19 |
<th><?php echo $this->Paginator->sort('popup_display_interval'); ?></th>
|
19 |
<th><?php echo $this->Paginator->sort('popup_display_interval'); ?></th>
|
| - |
|
20 |
<th><?php echo $this->Paginator->sort('popup_type'); ?></th>
|
| 20 |
<th class="actions"><?php echo __('Actions'); ?></th>
|
21 |
<th class="actions"><?php echo __('Actions'); ?></th>
|
| 21 |
</tr>
|
22 |
</tr>
|
| 22 |
<?php foreach ($notificationRules as $notificationRule): ?>
|
23 |
<?php foreach ($notificationRules as $notificationRule): ?>
|
| 23 |
<tr>
|
24 |
<tr>
|
| 24 |
<!-- <td><?php echo h($notificationRule['NotificationRule']['id']); ?> </td> -->
|
25 |
<!-- <td><?php echo h($notificationRule['NotificationRule']['id']); ?> </td> -->
|
| Line 29... |
Line 30... |
| 29 |
<td><?php echo h($notificationRule['NotificationRule']['starttime']); ?> </td>
|
30 |
<td><?php echo h($notificationRule['NotificationRule']['starttime']); ?> </td>
|
| 30 |
<td><?php echo h($notificationRule['NotificationRule']['endtime']); ?> </td>
|
31 |
<td><?php echo h($notificationRule['NotificationRule']['endtime']); ?> </td>
|
| 31 |
<td><?php echo h($notificationRule['NotificationRule']['status']); ?> </td>
|
32 |
<td><?php echo h($notificationRule['NotificationRule']['status']); ?> </td>
|
| 32 |
<td><?php echo $notificationRule['NotificationRule']['popup_display_count']; ?></td>
|
33 |
<td><?php echo $notificationRule['NotificationRule']['popup_display_count']; ?></td>
|
| 33 |
<td><?php echo $notificationRule['NotificationRule']['popup_display_interval']; ?></td>
|
34 |
<td><?php echo $notificationRule['NotificationRule']['popup_display_interval']; ?></td>
|
| - |
|
35 |
<td><?php echo $notificationRule['NotificationRule']['popup_type']; ?></td>
|
| 34 |
<td class="actions">
|
36 |
<td class="actions">
|
| 35 |
<?php echo $this->Html->link(__('View'), array('action' => 'view', $notificationRule['NotificationRule']['id'])); ?>
|
37 |
<?php echo $this->Html->link(__('View'), array('action' => 'view', $notificationRule['NotificationRule']['id'])); ?>
|
| 36 |
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $notificationRule['NotificationRule']['id'])); ?>
|
38 |
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $notificationRule['NotificationRule']['id'])); ?>
|
| 37 |
<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $notificationRule['NotificationRule']['id']), null, __('Are you sure you want to delete # %s?', $notificationRule['NotificationRule']['id'])); ?>
|
39 |
<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $notificationRule['NotificationRule']['id']), null, __('Are you sure you want to delete # %s?', $notificationRule['NotificationRule']['id'])); ?>
|
| 38 |
</td>
|
40 |
</td>
|