| 14579 |
anikendra |
1 |
<div class="notificationRules view">
|
|
|
2 |
<h2><?php echo __('Notification Rule'); ?></h2>
|
|
|
3 |
<dl>
|
|
|
4 |
<dt><?php echo __('Id'); ?></dt>
|
|
|
5 |
<dd>
|
|
|
6 |
<?php echo h($notificationRule['NotificationRule']['id']); ?>
|
|
|
7 |
|
|
|
8 |
</dd>
|
|
|
9 |
<dt><?php echo __('Name'); ?></dt>
|
|
|
10 |
<dd>
|
|
|
11 |
<?php echo h($notificationRule['NotificationRule']['name']); ?>
|
|
|
12 |
|
|
|
13 |
</dd>
|
|
|
14 |
<dt><?php echo __('Sql'); ?></dt>
|
|
|
15 |
<dd>
|
|
|
16 |
<?php echo h($notificationRule['NotificationRule']['sql']); ?>
|
|
|
17 |
|
|
|
18 |
</dd>
|
|
|
19 |
<dt><?php echo __('Message'); ?></dt>
|
|
|
20 |
<dd>
|
|
|
21 |
<?php echo h($notificationRule['NotificationRule']['message']); ?>
|
|
|
22 |
|
|
|
23 |
</dd>
|
|
|
24 |
<dt><?php echo __('Url'); ?></dt>
|
|
|
25 |
<dd>
|
|
|
26 |
<?php echo h($notificationRule['NotificationRule']['url']); ?>
|
|
|
27 |
|
|
|
28 |
</dd>
|
|
|
29 |
<dt><?php echo __('Status'); ?></dt>
|
|
|
30 |
<dd>
|
|
|
31 |
<?php echo h($notificationRule['NotificationRule']['status']); ?>
|
|
|
32 |
|
|
|
33 |
</dd>
|
|
|
34 |
<dt><?php echo __('Starttime'); ?></dt>
|
|
|
35 |
<dd>
|
|
|
36 |
<?php echo h($notificationRule['NotificationRule']['starttime']); ?>
|
|
|
37 |
|
|
|
38 |
</dd>
|
|
|
39 |
<dt><?php echo __('Endtime'); ?></dt>
|
|
|
40 |
<dd>
|
|
|
41 |
<?php echo h($notificationRule['NotificationRule']['endtime']); ?>
|
|
|
42 |
|
|
|
43 |
</dd>
|
|
|
44 |
<dt><?php echo __('Created'); ?></dt>
|
|
|
45 |
<dd>
|
|
|
46 |
<?php echo h($notificationRule['NotificationRule']['created']); ?>
|
|
|
47 |
|
|
|
48 |
</dd>
|
|
|
49 |
<dt><?php echo __('Modified'); ?></dt>
|
|
|
50 |
<dd>
|
|
|
51 |
<?php echo h($notificationRule['NotificationRule']['modified']); ?>
|
|
|
52 |
|
|
|
53 |
</dd>
|
|
|
54 |
</dl>
|
|
|
55 |
</div>
|
|
|
56 |
<div class="actions">
|
|
|
57 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
58 |
<ul>
|
|
|
59 |
<li><?php echo $this->Html->link(__('Edit Notification Rule'), array('action' => 'edit', $notificationRule['NotificationRule']['id'])); ?> </li>
|
|
|
60 |
<li><?php echo $this->Form->postLink(__('Delete Notification Rule'), array('action' => 'delete', $notificationRule['NotificationRule']['id']), null, __('Are you sure you want to delete # %s?', $notificationRule['NotificationRule']['id'])); ?> </li>
|
|
|
61 |
<li><?php echo $this->Html->link(__('List Notification Rules'), array('action' => 'index')); ?> </li>
|
|
|
62 |
<li><?php echo $this->Html->link(__('New Notification Rule'), array('action' => 'add')); ?> </li>
|
|
|
63 |
</ul>
|
|
|
64 |
</div>
|