Subversion Repositories SmartDukaan

Rev

Rev 17223 | 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['NotificationCampaign']['id']); ?></h4>
<h4><?php echo __('Campaign Name ->     '.$notificationData['NotificationCampaign']['name']); ?></h4>
<h4><?php echo __('Campaign Title ->     '.$notificationData['NotificationCampaign']['title']); ?></h4>
<h4><?php echo __('Campaign Message ->     '.$notificationData['NotificationCampaign']['message']); ?></h4>
<h4><?php echo __('Campaign Type ->     '.$notificationData['NotificationCampaign']['type']); ?></h4>
<h4><?php echo __('Campaign URL ->     '.$notificationData['NotificationCampaign']['url']); ?></h4>
<h4><?php echo __('Campaign Created ->     '.$notificationData['NotificationCampaign']['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 ($result as $key => $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> -->
        <!-- <td align="center" width="4%"><?php //echo h($notificationCampaign['pushnotifications']['id']); ?>&nbsp;</td> -->
                <td align="center"><?php echo h($notificationCampaign['user_id']); ?>&nbsp;</td>
                <td align="center">
                        <?php 
                        if(isset($notificationCampaign['created'])){
                                echo h(date('Y-m-d H:i:s', $notificationCampaign['created']/1000)); 
                        }?>
                        &nbsp;</td>
                <td align="center">
                        <?php 
                                if(isset($notificationCampaign['response_time'])){
                                        echo h(date('Y-m-d H:i:s',$notificationCampaign['response_time']/1000));
                                }
                        ?>&nbsp;
                </td>
                <td align="center"><?php echo h($notificationCampaign['message']); ?>&nbsp;</td>
         <!-- <td align="center"><?php //echo h($data['']); ?>&nbsp;</td> -->
        </tr>   
        <?php endforeach; ?>
</table>
</div>