Subversion Repositories SmartDukaan

Rev

Blame | 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('MasterData'); ?>
                                <fieldset>
                                        <legend><?php echo __('Schedule Auto-update'); ?></legend>
                                <?php
                                        echo $this->Form->input('oid',array('value'=>$id,'type'=>'hidden'));
                                        echo $this->Form->input('brand',array('value'=>$brand,'disabled'=>true));
                                        echo $this->Form->input('model',array('value'=>$model,'disabled'=>true));
                                        echo $this->Form->input('skuBundleId',array('value'=>$skuBundleId,'disabled'=>true));
                                        echo $this->Form->input('startDate',array('type'=>'datetime','timeFormat'=>24,'selected'=>date('Y-m-d H:i:s',$startDate/1000)));
                                        echo $this->Form->input('endDate',array('type'=>'datetime','timeFormat'=>24,'selected'=>date('Y-m-d H:i:s',$endDate/1000)));
                                ?>
                                </fieldset>
                        <?php echo $this->Form->end(__('Submit')); ?>
                </div>
        </div>
</div>