Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16614 anikendra 1
<div class="appmasters view">
2
<h2><?php echo __('Appmaster'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($appmaster['Appmaster']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('App Name'); ?></dt>
10
		<dd>
11
			<?php echo h($appmaster['Appmaster']['app_name']); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Package Name'); ?></dt>
15
		<dd>
16
			<?php echo h($appmaster['Appmaster']['package_name']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Os Name'); ?></dt>
20
		<dd>
21
			<?php echo h($appmaster['Appmaster']['os_name']); ?>
22
			&nbsp;
23
		</dd>
24
		<dt><?php echo __('ShortDescription'); ?></dt>
25
		<dd>
26
			<?php echo h($appmaster['Appmaster']['shortDescription']); ?>
27
			&nbsp;
28
		</dd>
29
		<dt><?php echo __('LongDescription'); ?></dt>
30
		<dd>
31
			<?php echo h($appmaster['Appmaster']['longDescription']); ?>
32
			&nbsp;
33
		</dd>
34
		<dt><?php echo __('CustomerOneLiner'); ?></dt>
35
		<dd>
36
			<?php echo h($appmaster['Appmaster']['customerOneLiner']); ?>
37
			&nbsp;
38
		</dd>
39
		<dt><?php echo __('RetailerOneLiner'); ?></dt>
40
		<dd>
41
			<?php echo h($appmaster['Appmaster']['retailerOneLiner']); ?>
42
			&nbsp;
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 Appmaster'), array('action' => 'edit', $appmaster['Appmaster']['id'])); ?> </li>
50
		<li><?php echo $this->Form->postLink(__('Delete Appmaster'), array('action' => 'delete', $appmaster['Appmaster']['id']), null, __('Are you sure you want to delete # %s?', $appmaster['Appmaster']['id'])); ?> </li>
51
		<li><?php echo $this->Html->link(__('List Appmasters'), array('action' => 'index')); ?> </li>
52
		<li><?php echo $this->Html->link(__('New Appmaster'), array('action' => 'add')); ?> </li>
53
		<li><?php echo $this->Html->link(__('List App Offers'), array('controller' => 'app_offers', 'action' => 'index')); ?> </li>
54
		<li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
55
	</ul>
56
</div>
57
<div class="related">
58
	<h3><?php echo __('Related App Offers'); ?></h3>
59
	<?php if (!empty($appmaster['AppOffer'])): ?>
60
	<table cellpadding = "0" cellspacing = "0">
61
	<tr>
62
		<th><?php echo __('Id'); ?></th>
63
		<th><?php echo __('Affiliate Id'); ?></th>
64
		<th><?php echo __('Appmaster Id'); ?></th>
65
		<th><?php echo __('Affiliate Offer Id'); ?></th>
66
		<th><?php echo __('Offer Price'); ?></th>
67
		<th><?php echo __('User Payout'); ?></th>
68
		<th><?php echo __('Override Payout'); ?></th>
69
		<th><?php echo __('Overriden Payout'); ?></th>
70
		<th><?php echo __('App Name'); ?></th>
71
		<th><?php echo __('Package Name'); ?></th>
72
		<th><?php echo __('Image Url'); ?></th>
73
		<th><?php echo __('Description'); ?></th>
74
		<th><?php echo __('ShortDescription'); ?></th>
75
		<th><?php echo __('FinalShortDescription'); ?></th>
76
		<th><?php echo __('LongDescription'); ?></th>
77
		<th><?php echo __('FinalLongDescription'); ?></th>
78
		<th><?php echo __('Link'); ?></th>
79
		<th><?php echo __('Downloads'); ?></th>
80
		<th><?php echo __('Ratings'); ?></th>
81
		<th><?php echo __('Retailer Tagline'); ?></th>
82
		<th><?php echo __('Customer Tagline'); ?></th>
83
		<th><?php echo __('Offer Active'); ?></th>
84
		<th><?php echo __('Priority'); ?></th>
85
		<th><?php echo __('Show'); ?></th>
86
		<th><?php echo __('OfferCategory'); ?></th>
87
		<th><?php echo __('PromoImage'); ?></th>
88
		<th class="actions"><?php echo __('Actions'); ?></th>
89
	</tr>
90
	<?php foreach ($appmaster['AppOffer'] as $appOffer): ?>
91
		<tr>
92
			<td><?php echo $appOffer['id']; ?></td>
93
			<td><?php echo $appOffer['affiliate_id']; ?></td>
94
			<td><?php echo $appOffer['appmaster_id']; ?></td>
95
			<td><?php echo $appOffer['affiliate_offer_id']; ?></td>
96
			<td><?php echo $appOffer['offer_price']; ?></td>
97
			<td><?php echo $appOffer['user_payout']; ?></td>
98
			<td><?php echo $appOffer['override_payout']; ?></td>
99
			<td><?php echo $appOffer['overriden_payout']; ?></td>
100
			<td><?php echo $appOffer['app_name']; ?></td>
101
			<td><?php echo $appOffer['package_name']; ?></td>
102
			<td><?php echo $appOffer['image_url']; ?></td>
103
			<td><?php echo $appOffer['description']; ?></td>
104
			<td><?php echo $appOffer['shortDescription']; ?></td>
105
			<td><?php echo $appOffer['finalShortDescription']; ?></td>
106
			<td><?php echo $appOffer['longDescription']; ?></td>
107
			<td><?php echo $appOffer['finalLongDescription']; ?></td>
108
			<td><?php echo $appOffer['link']; ?></td>
109
			<td><?php echo $appOffer['downloads']; ?></td>
110
			<td><?php echo $appOffer['ratings']; ?></td>
111
			<td><?php echo $appOffer['retailer_tagline']; ?></td>
112
			<td><?php echo $appOffer['customer_tagline']; ?></td>
113
			<td><?php echo $appOffer['offer_active']; ?></td>
114
			<td><?php echo $appOffer['priority']; ?></td>
115
			<td><?php echo $appOffer['show']; ?></td>
116
			<td><?php echo $appOffer['offerCategory']; ?></td>
117
			<td><?php echo $appOffer['promoImage']; ?></td>
118
			<td class="actions">
119
				<?php echo $this->Html->link(__('View'), array('controller' => 'app_offers', 'action' => 'view', $appOffer['id'])); ?>
120
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'app_offers', 'action' => 'edit', $appOffer['id'])); ?>
121
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'app_offers', 'action' => 'delete', $appOffer['id']), null, __('Are you sure you want to delete # %s?', $appOffer['id'])); ?>
122
			</td>
123
		</tr>
124
	<?php endforeach; ?>
125
	</table>
126
<?php endif; ?>
127
 
128
	<div class="actions">
129
		<ul>
130
			<li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
131
		</ul>
132
	</div>
133
</div>