Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="storeProducts form">
2
<?php echo $this->Form->create('StoreProduct'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit Store Product'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('store_id');
8
		echo $this->Form->input('product_id');
9
		echo $this->Form->input('product_url');
10
		echo $this->Form->input('img_url');
11
		echo $this->Form->input('short_descrption');
12
		echo $this->Form->input('price');
13
		echo $this->Form->input('status');
14
		echo $this->Form->input('last_crawled');
15
	?>
16
	</fieldset>
17
<?php echo $this->Form->end(__('Submit')); ?>
18
</div>
19
<div class="actions">
20
	<h3><?php echo __('Actions'); ?></h3>
21
	<ul>
22
 
23
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('StoreProduct.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('StoreProduct.id'))); ?></li>
24
		<li><?php echo $this->Html->link(__('List Store Products'), array('action' => 'index')); ?></li>
25
		<li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
26
		<li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
27
		<li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li>
28
		<li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li>
29
		<li><?php echo $this->Html->link(__('List Clicks'), array('controller' => 'clicks', 'action' => 'index')); ?> </li>
30
		<li><?php echo $this->Html->link(__('New Click'), array('controller' => 'clicks', 'action' => 'add')); ?> </li>
31
		<li><?php echo $this->Html->link(__('List User Actions'), array('controller' => 'user_actions', 'action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New User Action'), array('controller' => 'user_actions', 'action' => 'add')); ?> </li>
33
	</ul>
34
</div>