Subversion Repositories SmartDukaan

Rev

Rev 13532 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13532 Rev 13698
Line 9... Line 9...
9
			<th class="actions"><?php echo __('Actions'); ?></th>
9
			<th class="actions"><?php echo __('Actions'); ?></th>
10
	</tr>
10
	</tr>
11
	<?php foreach ($gcmUsers as $gcmUser): ?>
11
	<?php foreach ($gcmUsers as $gcmUser): ?>
12
	<tr>
12
	<tr>
13
		<td><?php echo h($gcmUser['GcmUser']['id']); ?>&nbsp;</td>
13
		<td><?php echo h($gcmUser['GcmUser']['id']); ?>&nbsp;</td>
14
		<td>
-
 
15
			<?php echo $this->Html->link($gcmUser['User']['username'], array('controller' => 'users', 'action' => 'view', $gcmUser['User']['id'])); ?>
14
		<td><?php echo h($gcmUser['GcmUser']['user_id']); ?>&nbsp;</td>
16
		</td>
-
 
17
		<td><?php echo h($gcmUser['GcmUser']['gcm_regid']); ?>&nbsp;</td>
15
		<td><?php echo h($gcmUser['GcmUser']['gcm_regid']); ?>&nbsp;</td>
18
		<td><?php echo h($gcmUser['GcmUser']['created_at']); ?>&nbsp;</td>
16
		<td><?php echo h($gcmUser['GcmUser']['created_at']); ?>&nbsp;</td>
19
		<td class="actions">
17
		<td class="actions">
20
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $gcmUser['GcmUser']['id'])); ?>
18
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $gcmUser['GcmUser']['id'])); ?>
21
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $gcmUser['GcmUser']['id'])); ?>
19
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $gcmUser['GcmUser']['id'])); ?>
Line 40... Line 38...
40
</div>
38
</div>
41
<div class="actions">
39
<div class="actions">
42
	<h3><?php echo __('Actions'); ?></h3>
40
	<h3><?php echo __('Actions'); ?></h3>
43
	<ul>
41
	<ul>
44
		<li><?php echo $this->Html->link(__('New Gcm User'), array('action' => 'add')); ?></li>
42
		<li><?php echo $this->Html->link(__('New Gcm User'), array('action' => 'add')); ?></li>
45
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
-
 
46
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
-
 
47
	</ul>
43
	</ul>
48
</div>
44
</div>