Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="notificationRules view">
<h2><?php echo __('Notification Rule'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Name'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['name']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Sql'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['sql']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Message'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['message']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Url'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['url']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Status'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['status']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Starttime'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['starttime']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Endtime'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['endtime']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['created']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Modified'); ?></dt>
                <dd>
                        <?php echo h($notificationRule['NotificationRule']['modified']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Notification Rule'), array('action' => 'edit', $notificationRule['NotificationRule']['id'])); ?> </li>
                <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>
                <li><?php echo $this->Html->link(__('List Notification Rules'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Notification Rule'), array('action' => 'add')); ?> </li>
        </ul>
</div>