Subversion Repositories SmartDukaan

Rev

Rev 14928 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-3">
                        <?php echo $this->Element('adminactions');?>
                </div>
                <div class="col-lg-9">
                <?php echo $this->Form->create('NotificationRule'); ?>
                        <fieldset>
                                <legend><?php echo __('Admin Edit Notification Rule'); ?></legend>
                        <?php
                                echo $this->Form->input('id');
                                echo $this->Form->input('name');
                                echo $this->Form->input('sql',array('type'=>'textarea'));
                                echo $this->Form->input('message');
                                echo $this->Form->input('url');
                                echo $this->Form->input('type', array('type' => 'select'));                             
                                $options = array('active'=>'Active','paused'=>'Paused','deleted'=>'Deleted');
                                echo $this->Form->input('status',array('type'=>'select','options'=>$options));
                                echo $this->Form->input('popup_display_count',array('disabled'=>true));
                                echo $this->Form->input('popup_display_interval',array('disabled'=>true,'label'=>'Popup Display Interval (in minutes)'));
                                echo $this->Form->input('popup_type',array('disabled'=>true,'label'=>'Popup Type','type'=>'select','options'=>$popup_types));                   
                                echo $this->Form->input('starttime');
                                echo $this->Form->input('endtime');
                        ?>
                        </fieldset>
                <?php echo $this->Form->end(__('Submit')); ?>
                </div>
        </div>
</div>