Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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