view-urls.php 820 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. if (!defined('ABSPATH')) exit;
  3. $email_id = (int) $_GET['id'];
  4. $module = NewsletterStatistics::instance();
  5. $email = $module->get_email($email_id);
  6. ?>
  7. <div class="wrap" id="tnp-wrap">
  8. <?php include NEWSLETTER_DIR . '/tnp-header.php' ?>
  9. <div id="tnp-heading">
  10. <h2>Clicked links for "<?php echo esc_html($email->subject); ?>"</h2>
  11. </div>
  12. <div id="tnp-body" style="min-width: 500px">
  13. <p><a href="admin.php?page=newsletter_statistics_view&id=<?php echo $email->id ?>" class="button-primary">Back to the dashboard</a></p>
  14. <p>Clicked link details are available with <a href="https://www.thenewsletterplugin.com/plugins/newsletter/reports-module" target="_blank">Report Extension</a>.</p>
  15. </div>
  16. <?php include NEWSLETTER_DIR . '/tnp-footer.php' ?>
  17. </div>