Subversion Repositories SmartDukaan

Rev

Rev 14547 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="campaigns form">
<?php echo $this->Form->create('Campaign'); ?>
        <fieldset>
                <legend><?php echo __('Admin Edit Campaign'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('name');
                echo $this->Form->input('url');
                echo $this->Form->input('img_url');
                $sizes = array('paused' => 'Paused', 'active' => 'Active', 'deleted' => 'Deleted');
                echo $this->Form->input(
                    'status',
                    array('options' => $sizes, 'default' => 'active')
                );
                echo $this->Form->input('store_id');
                echo $this->Form->input('starttime');
                echo $this->Form->input('endtime');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Campaign.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Campaign.id'))); ?></li>
                <li><?php echo $this->Html->link(__('List Campaigns'), array('action' => 'index')); ?></li>
        </ul>
</div>