Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="gcmUsers view">
<h2><?php echo __('Gcm User'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($gcmUser['GcmUser']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('User'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($gcmUser['User']['username'], array('controller' => 'users', 'action' => 'view', $gcmUser['User']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Gcm Regid'); ?></dt>
                <dd>
                        <?php echo h($gcmUser['GcmUser']['gcm_regid']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created At'); ?></dt>
                <dd>
                        <?php echo h($gcmUser['GcmUser']['created_at']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Gcm User'), array('action' => 'edit', $gcmUser['GcmUser']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Gcm User'), array('action' => 'delete', $gcmUser['GcmUser']['id']), null, __('Are you sure you want to delete # %s?', $gcmUser['GcmUser']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Gcm Users'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Gcm User'), array('action' => 'add')); ?> </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>