Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="appmasters view">
<h2><?php echo __('Appmaster'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('App Name'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['app_name']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Package Name'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['package_name']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Os Name'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['os_name']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('ShortDescription'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['shortDescription']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('LongDescription'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['longDescription']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('CustomerOneLiner'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['customerOneLiner']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('RetailerOneLiner'); ?></dt>
                <dd>
                        <?php echo h($appmaster['Appmaster']['retailerOneLiner']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Appmaster'), array('action' => 'edit', $appmaster['Appmaster']['id'])); ?> </li>
                <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>
                <li><?php echo $this->Html->link(__('List Appmasters'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Appmaster'), array('action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List App Offers'), array('controller' => 'app_offers', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
        </ul>
</div>
<div class="related">
        <h3><?php echo __('Related App Offers'); ?></h3>
        <?php if (!empty($appmaster['AppOffer'])): ?>
        <table cellpadding = "0" cellspacing = "0">
        <tr>
                <th><?php echo __('Id'); ?></th>
                <th><?php echo __('Affiliate Id'); ?></th>
                <th><?php echo __('Appmaster Id'); ?></th>
                <th><?php echo __('Affiliate Offer Id'); ?></th>
                <th><?php echo __('Offer Price'); ?></th>
                <th><?php echo __('User Payout'); ?></th>
                <th><?php echo __('Override Payout'); ?></th>
                <th><?php echo __('Overriden Payout'); ?></th>
                <th><?php echo __('App Name'); ?></th>
                <th><?php echo __('Package Name'); ?></th>
                <th><?php echo __('Image Url'); ?></th>
                <th><?php echo __('Description'); ?></th>
                <th><?php echo __('ShortDescription'); ?></th>
                <th><?php echo __('FinalShortDescription'); ?></th>
                <th><?php echo __('LongDescription'); ?></th>
                <th><?php echo __('FinalLongDescription'); ?></th>
                <th><?php echo __('Link'); ?></th>
                <th><?php echo __('Downloads'); ?></th>
                <th><?php echo __('Ratings'); ?></th>
                <th><?php echo __('Retailer Tagline'); ?></th>
                <th><?php echo __('Customer Tagline'); ?></th>
                <th><?php echo __('Offer Active'); ?></th>
                <th><?php echo __('Priority'); ?></th>
                <th><?php echo __('Show'); ?></th>
                <th><?php echo __('OfferCategory'); ?></th>
                <th><?php echo __('PromoImage'); ?></th>
                <th class="actions"><?php echo __('Actions'); ?></th>
        </tr>
        <?php foreach ($appmaster['AppOffer'] as $appOffer): ?>
                <tr>
                        <td><?php echo $appOffer['id']; ?></td>
                        <td><?php echo $appOffer['affiliate_id']; ?></td>
                        <td><?php echo $appOffer['appmaster_id']; ?></td>
                        <td><?php echo $appOffer['affiliate_offer_id']; ?></td>
                        <td><?php echo $appOffer['offer_price']; ?></td>
                        <td><?php echo $appOffer['user_payout']; ?></td>
                        <td><?php echo $appOffer['override_payout']; ?></td>
                        <td><?php echo $appOffer['overriden_payout']; ?></td>
                        <td><?php echo $appOffer['app_name']; ?></td>
                        <td><?php echo $appOffer['package_name']; ?></td>
                        <td><?php echo $appOffer['image_url']; ?></td>
                        <td><?php echo $appOffer['description']; ?></td>
                        <td><?php echo $appOffer['shortDescription']; ?></td>
                        <td><?php echo $appOffer['finalShortDescription']; ?></td>
                        <td><?php echo $appOffer['longDescription']; ?></td>
                        <td><?php echo $appOffer['finalLongDescription']; ?></td>
                        <td><?php echo $appOffer['link']; ?></td>
                        <td><?php echo $appOffer['downloads']; ?></td>
                        <td><?php echo $appOffer['ratings']; ?></td>
                        <td><?php echo $appOffer['retailer_tagline']; ?></td>
                        <td><?php echo $appOffer['customer_tagline']; ?></td>
                        <td><?php echo $appOffer['offer_active']; ?></td>
                        <td><?php echo $appOffer['priority']; ?></td>
                        <td><?php echo $appOffer['show']; ?></td>
                        <td><?php echo $appOffer['offerCategory']; ?></td>
                        <td><?php echo $appOffer['promoImage']; ?></td>
                        <td class="actions">
                                <?php echo $this->Html->link(__('View'), array('controller' => 'app_offers', 'action' => 'view', $appOffer['id'])); ?>
                                <?php echo $this->Html->link(__('Edit'), array('controller' => 'app_offers', 'action' => 'edit', $appOffer['id'])); ?>
                                <?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'])); ?>
                        </td>
                </tr>
        <?php endforeach; ?>
        </table>
<?php endif; ?>

        <div class="actions">
                <ul>
                        <li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
                </ul>
        </div>
</div>