Subversion Repositories SmartDukaan

Rev

Rev 17438 | 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('NotificationCampaign'); ?>
                                <fieldset>
                                        <legend><?php echo __('Admin Edit Notification Campaign'); ?></legend>
                                <?php
                                        echo $this->Form->input('id');
                                        echo $this->Form->input('name',array('readonly'=>true));
                                        echo $this->Form->input('title',array('readonly'=>true));
                                        echo $this->Form->input('message',array('readonly'=>true));
                                        // echo $this->Form->input('type');
                                        echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));
                                        echo $this->Form->input('url',array('readonly'=>true));
                                        echo $this->Form->input('status',array('type'=>'select','options'=>array('active'=>'Active','inactive'=>'Inactive')));
                                        echo $this->Form->input('expiresat',array('type'=>'datetime'));
                                        echo $this->Form->input('sendsms',array('type'=>'checkbox'));
                                        echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));
                                        echo $this->Form->input('smsprocessed',array('type'=>"hidden"));
                                        echo $this->Form->input('notification_processed',array('type'=>"hidden"));
                                        echo $this->Form->input('notification_type',array('type'=>"hidden"));
                                ?>
                                </fieldset>
                        <?php echo $this->Form->end(__('Submit')); ?>
                </div>
        </div>
</div>