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><?phpforeach ($users as $user): ?><tr><td><?php echo h($user['User']['id']); ?> </td><td><?php echo h($user['User']['facebook_id']); ?> </td><td><?php echo h($user['User']['twitter_id']); ?> </td><td><?php echo h($user['User']['first_name']); ?> </td><td><?php echo h($user['User']['last_name']); ?> </td><td><?php echo h($user['User']['zipcode']); ?> </td><td><?php echo h($user['User']['dob']); ?> </td><td><?php echo h($user['User']['username']); ?> </td><td><?php echo h($user['User']['email']); ?> </td><td><?php echo h($user['User']['password']); ?> </td><td><?php echo h($user['User']['gender']); ?> </td><td><?php echo h($user['User']['address_1']); ?> </td><td><?php echo h($user['User']['address_2']); ?> </td><td><?php echo h($user['User']['city']); ?> </td><td><?php echo h($user['User']['state']); ?> </td><td><?php echo h($user['User']['country']); ?> </td><td><?php echo h($user['User']['user_timezone']); ?> </td><td><?php echo h($user['User']['auth_token']); ?> </td><td><?php echo h($user['User']['twitter_token']); ?> </td><td><?php echo h($user['User']['twitter_secret']); ?> </td><td><?php echo h($user['User']['twitter_screen_name']); ?> </td><td><?php echo h($user['User']['status']); ?> </td><td><?php echo h($user['User']['created']); ?> </td><td><?php echo h($user['User']['modified']); ?> </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']); ?> </td><td><?php echo h($user['User']['activation_code']); ?> </td><td><?php echo h($user['User']['password_reset']); ?> </td><td><?php echo h($user['User']['plan']); ?> </td><td><?php echo h($user['User']['demo_valid_till']); ?> </td><td><?php echo h($user['User']['premium_valid_till']); ?> </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><?phpecho $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"><?phpecho $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>