Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15077 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('MasterData'); ?>
8
				<fieldset>
9
					<legend><?php echo __('Schedule Auto-update'); ?></legend>
10
				<?php
11
					echo $this->Form->input('oid',array('value'=>$id,'type'=>'hidden'));
12
					echo $this->Form->input('brand',array('value'=>$brand,'disabled'=>true));
13
					echo $this->Form->input('model',array('value'=>$model,'disabled'=>true));
14
					echo $this->Form->input('skuBundleId',array('value'=>$skuBundleId,'disabled'=>true));
15
					echo $this->Form->input('startDate',array('type'=>'datetime','timeFormat'=>24,'selected'=>date('Y-m-d H:i:s',$startDate/1000)));
16
					echo $this->Form->input('endDate',array('type'=>'datetime','timeFormat'=>24,'selected'=>date('Y-m-d H:i:s',$endDate/1000)));
17
				?>
18
				</fieldset>
19
			<?php echo $this->Form->end(__('Submit')); ?>
20
		</div>
21
	</div>
22
</div>