Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="notificationRules form">
<?php echo $this->Form->create('NotificationRule'); ?>
        <fieldset>
                <legend><?php echo __('Edit Notification Rule'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('name');
                echo $this->Form->input('sql');
                echo $this->Form->input('message');
                echo $this->Form->input('url');
                echo $this->Form->input('status');
                echo $this->Form->input('starttime');
                echo $this->Form->input('endtime');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('NotificationRule.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('NotificationRule.id'))); ?></li>
                <li><?php echo $this->Html->link(__('List Notification Rules'), array('action' => 'index')); ?></li>
        </ul>
</div>