Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="pushnotifications form">
<?php echo $this->Form->create('Pushnotification'); ?>
        <fieldset>
                <legend><?php echo __('Admin Add Pushnotification'); ?></legend>
        <?php
                echo $this->Form->input('user_id');
                echo $this->Form->input('notification_campaign_id');
                echo $this->Form->input('type');
                echo $this->Form->input('status');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Pushnotifications'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
        </ul>
</div>