Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="users index">
        <h2><?php echo __('Users'); ?></h2>
        <table cellpadding="0" cellspacing="0">
        <tr>
                        <th><?php echo $this->Paginator->sort('id'); ?></th>
                        <th><?php echo $this->Paginator->sort('facebook_id'); ?></th>
                        <th><?php echo $this->Paginator->sort('twitter_id'); ?></th>
                        <th><?php echo $this->Paginator->sort('first_name'); ?></th>
                        <th><?php echo $this->Paginator->sort('last_name'); ?></th>
                        <th><?php echo $this->Paginator->sort('zipcode'); ?></th>
                        <th><?php echo $this->Paginator->sort('dob'); ?></th>
                        <th><?php echo $this->Paginator->sort('username'); ?></th>
                        <th><?php echo $this->Paginator->sort('email'); ?></th>
                        <th><?php echo $this->Paginator->sort('password'); ?></th>
                        <th><?php echo $this->Paginator->sort('gender'); ?></th>
                        <th><?php echo $this->Paginator->sort('address_1'); ?></th>
                        <th><?php echo $this->Paginator->sort('address_2'); ?></th>
                        <th><?php echo $this->Paginator->sort('city'); ?></th>
                        <th><?php echo $this->Paginator->sort('state'); ?></th>
                        <th><?php echo $this->Paginator->sort('country'); ?></th>
                        <th><?php echo $this->Paginator->sort('user_timezone'); ?></th>
                        <th><?php echo $this->Paginator->sort('auth_token'); ?></th>
                        <th><?php echo $this->Paginator->sort('twitter_token'); ?></th>
                        <th><?php echo $this->Paginator->sort('twitter_secret'); ?></th>
                        <th><?php echo $this->Paginator->sort('twitter_screen_name'); ?></th>
                        <th><?php echo $this->Paginator->sort('status'); ?></th>
                        <th><?php echo $this->Paginator->sort('created'); ?></th>
                        <th><?php echo $this->Paginator->sort('modified'); ?></th>
                        <th><?php echo $this->Paginator->sort('group_id'); ?></th>
                        <th><?php echo $this->Paginator->sort('active'); ?></th>
                        <th><?php echo $this->Paginator->sort('activation_code'); ?></th>
                        <th><?php echo $this->Paginator->sort('password_reset'); ?></th>
                        <th><?php echo $this->Paginator->sort('plan'); ?></th>
                        <th><?php echo $this->Paginator->sort('demo_valid_till'); ?></th>
                        <th><?php echo $this->Paginator->sort('premium_valid_till'); ?></th>
                        <th class="actions"><?php echo __('Actions'); ?></th>
        </tr>
        <?php
        foreach ($users as $user): ?>
        <tr>
                <td><?php echo h($user['User']['id']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['facebook_id']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['twitter_id']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['first_name']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['last_name']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['zipcode']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['dob']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['username']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['email']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['password']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['gender']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['address_1']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['address_2']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['city']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['state']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['country']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['user_timezone']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['auth_token']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['twitter_token']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['twitter_secret']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['twitter_screen_name']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['status']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['created']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['modified']); ?>&nbsp;</td>
                <td>
                        <?php echo $this->Html->link($user['Group']['name'], array('controller' => 'groups', 'action' => 'view', $user['Group']['id'])); ?>
                </td>
                <td><?php echo h($user['User']['active']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['activation_code']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['password_reset']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['plan']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['demo_valid_till']); ?>&nbsp;</td>
                <td><?php echo h($user['User']['premium_valid_till']); ?>&nbsp;</td>
                <td class="actions">
                        <?php echo $this->Html->link(__('View'), array('action' => 'view', $user['User']['id'])); ?>
                        <?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $user['User']['id'])); ?>
                        <?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $user['User']['id']), null, __('Are you sure you want to delete # %s?', $user['User']['id'])); ?>
                </td>
        </tr>
<?php endforeach; ?>
        </table>
        <p>
        <?php
        echo $this->Paginator->counter(array(
        'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
        ));
        ?>      </p>

        <div class="paging">
        <?php
                echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
                echo $this->Paginator->numbers(array('separator' => ''));
                echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
        ?>
        </div>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('New User'), array('action' => 'add')); ?></li>
                <li><?php echo $this->Html->link(__('List Groups'), array('controller' => 'groups', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Group'), array('controller' => 'groups', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Profiles'), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Profile'), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Publishers'), array('controller' => 'publishers', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Publisher'), array('controller' => 'publishers', 'action' => 'add')); ?> </li>
        </ul>
</div>