| 15051 |
manas |
1 |
<div class="playStoreLinks view">
|
|
|
2 |
<h2><?php echo __('Play Store Link'); ?></h2>
|
|
|
3 |
<dl>
|
|
|
4 |
<dt><?php echo __('Id'); ?></dt>
|
|
|
5 |
<dd>
|
|
|
6 |
<?php echo h($playStoreLink['PlayStoreLink']['id']); ?>
|
|
|
7 |
|
|
|
8 |
</dd>
|
|
|
9 |
<dt><?php echo __('Agent'); ?></dt>
|
|
|
10 |
<dd>
|
|
|
11 |
<?php echo $this->Html->link($playStoreLink['Agent']['name'], array('controller' => 'agents', 'action' => 'view', $playStoreLink['Agent']['id'])); ?>
|
|
|
12 |
|
|
|
13 |
</dd>
|
|
|
14 |
<dt><?php echo __('Retailer Id'); ?></dt>
|
|
|
15 |
<dd>
|
|
|
16 |
<?php echo h($playStoreLink['PlayStoreLink']['retailer_id']); ?>
|
|
|
17 |
|
|
|
18 |
</dd>
|
|
|
19 |
<dt><?php echo __('Referralcode'); ?></dt>
|
|
|
20 |
<dd>
|
|
|
21 |
<?php echo h($playStoreLink['PlayStoreLink']['referralcode']); ?>
|
|
|
22 |
|
|
|
23 |
</dd>
|
|
|
24 |
<dt><?php echo __('Url'); ?></dt>
|
|
|
25 |
<dd>
|
|
|
26 |
<?php echo h($playStoreLink['PlayStoreLink']['url']); ?>
|
|
|
27 |
|
|
|
28 |
</dd>
|
|
|
29 |
<dt><?php echo __('Call'); ?></dt>
|
|
|
30 |
<dd>
|
|
|
31 |
<?php echo $this->Html->link($playStoreLink['Call']['id'], array('controller' => 'calls', 'action' => 'view', $playStoreLink['Call']['id'])); ?>
|
|
|
32 |
|
|
|
33 |
</dd>
|
|
|
34 |
<dt><?php echo __('Created'); ?></dt>
|
|
|
35 |
<dd>
|
|
|
36 |
<?php echo h($playStoreLink['PlayStoreLink']['created']); ?>
|
|
|
37 |
|
|
|
38 |
</dd>
|
|
|
39 |
<dt><?php echo __('Modified'); ?></dt>
|
|
|
40 |
<dd>
|
|
|
41 |
<?php echo h($playStoreLink['PlayStoreLink']['modified']); ?>
|
|
|
42 |
|
|
|
43 |
</dd>
|
|
|
44 |
</dl>
|
|
|
45 |
</div>
|
|
|
46 |
<div class="actions">
|
|
|
47 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
48 |
<ul>
|
|
|
49 |
<li><?php echo $this->Html->link(__('Edit Play Store Link'), array('action' => 'edit', $playStoreLink['PlayStoreLink']['id'])); ?> </li>
|
|
|
50 |
<li><?php echo $this->Form->postLink(__('Delete Play Store Link'), array('action' => 'delete', $playStoreLink['PlayStoreLink']['id']), null, __('Are you sure you want to delete # %s?', $playStoreLink['PlayStoreLink']['id'])); ?> </li>
|
|
|
51 |
<li><?php echo $this->Html->link(__('List Play Store Links'), array('action' => 'index')); ?> </li>
|
|
|
52 |
<li><?php echo $this->Html->link(__('New Play Store Link'), array('action' => 'add')); ?> </li>
|
|
|
53 |
<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
|
|
|
54 |
<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
|
|
|
55 |
<li><?php echo $this->Html->link(__('List Calls'), array('controller' => 'calls', 'action' => 'index')); ?> </li>
|
|
|
56 |
<li><?php echo $this->Html->link(__('New Call'), array('controller' => 'calls', 'action' => 'add')); ?> </li>
|
|
|
57 |
</ul>
|
|
|
58 |
</div>
|