Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Name'); ?></dt>
10
		<dd>
11
			<?php echo h($notificationRule['NotificationRule']['name']); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Sql'); ?></dt>
15
		<dd>
16
			<?php echo h($notificationRule['NotificationRule']['sql']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Message'); ?></dt>
20
		<dd>
21
			<?php echo h($notificationRule['NotificationRule']['message']); ?>
22
			&nbsp;
23
		</dd>
24
		<dt><?php echo __('Url'); ?></dt>
25
		<dd>
26
			<?php echo h($notificationRule['NotificationRule']['url']); ?>
27
			&nbsp;
28
		</dd>
29
		<dt><?php echo __('Status'); ?></dt>
30
		<dd>
31
			<?php echo h($notificationRule['NotificationRule']['status']); ?>
32
			&nbsp;
33
		</dd>
34
		<dt><?php echo __('Starttime'); ?></dt>
35
		<dd>
36
			<?php echo h($notificationRule['NotificationRule']['starttime']); ?>
37
			&nbsp;
38
		</dd>
39
		<dt><?php echo __('Endtime'); ?></dt>
40
		<dd>
41
			<?php echo h($notificationRule['NotificationRule']['endtime']); ?>
42
			&nbsp;
43
		</dd>
44
		<dt><?php echo __('Created'); ?></dt>
45
		<dd>
46
			<?php echo h($notificationRule['NotificationRule']['created']); ?>
47
			&nbsp;
48
		</dd>
49
		<dt><?php echo __('Modified'); ?></dt>
50
		<dd>
51
			<?php echo h($notificationRule['NotificationRule']['modified']); ?>
52
			&nbsp;
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>