Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="storeProducts form">
<?php echo $this->Form->create('StoreProduct'); ?>
        <fieldset>
                <legend><?php echo __('Add Store Product'); ?></legend>
        <?php
                echo $this->Form->input('store_id');
                echo $this->Form->input('product_id');
                echo $this->Form->input('product_url');
                echo $this->Form->input('img_url');
                echo $this->Form->input('short_descrption');
                echo $this->Form->input('price');
                echo $this->Form->input('status');
                echo $this->Form->input('last_crawled');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Store Products'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Clicks'), array('controller' => 'clicks', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Click'), array('controller' => 'clicks', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List User Actions'), array('controller' => 'user_actions', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New User Action'), array('controller' => 'user_actions', 'action' => 'add')); ?> </li>
        </ul>
</div>