Subversion Repositories SmartDukaan

Rev

Rev 14990 | Rev 17223 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="notificationCampaigns index">
<!-- <h2><?php echo __('Notification Campaigns'); ?></h2> -->

<h4><?php echo __('Campaign ID ->     '.$notificationData[0]['notification_campaigns']['id']); ?></h4>
<h4><?php echo __('Campaign Name ->     '.$notificationData[0]['notification_campaigns']['name']); ?></h4>
<h4><?php echo __('Campaign Title ->     '.$notificationData[0]['notification_campaigns']['title']); ?></h4>
<h4><?php echo __('Campaign Message ->     '.$notificationData[0]['notification_campaigns']['message']); ?></h4>
<h4><?php echo __('Campaign Type ->     '.$notificationData[0]['notification_campaigns']['type']); ?></h4>
<h4><?php echo __('Campaign URL ->     '.$notificationData[0]['notification_campaigns']['url']); ?></h4>
<h4><?php echo __('Campaign Created ->     '.$notificationData[0]['notification_campaigns']['created']); ?></h4>
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped"  >
        <tr>
                <th align="center"><?php echo h('ID'); ?></th>
                <th align="center"><?php echo h('User Id'); ?></th>
                <th align="center"><?php echo h('Created'); ?></th>
                <th align="center"><?php echo h('Response Time'); ?></th>
                <th align="center"><?php echo h('Response'); ?></th>

        </tr>
        <?php foreach ($data as $notificationCampaign): ?>
        <tr>
        <td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?>&nbsp;</td>
        <td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?>&nbsp;</td>
        <td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?>&nbsp;</td>
        <td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?>&nbsp;</td>
        <td align="center"><?php echo h($notificationCampaign['pushnotifications']['message']); ?>&nbsp;</td>
        </tr>
        <?php endforeach; ?>
        </table>
        </div>