Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="socialProfiles view">
<h2><?php echo __('Social Profile'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($socialProfile['SocialProfile']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('User'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($socialProfile['User']['username'], array('controller' => 'users', 'action' => 'view', $socialProfile['User']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Type'); ?></dt>
                <dd>
                        <?php echo h($socialProfile['SocialProfile']['type']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Social Id'); ?></dt>
                <dd>
                        <?php echo h($socialProfile['SocialProfile']['social_id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Access Token'); ?></dt>
                <dd>
                        <?php echo h($socialProfile['SocialProfile']['access_token']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Refresh Token'); ?></dt>
                <dd>
                        <?php echo h($socialProfile['SocialProfile']['refresh_token']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Social Profile'), array('action' => 'edit', $socialProfile['SocialProfile']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Social Profile'), array('action' => 'delete', $socialProfile['SocialProfile']['id']), null, __('Are you sure you want to delete # %s?', $socialProfile['SocialProfile']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Social Profiles'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Social Profile'), 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>