Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/medicine/public_html/wp-content/plugins/newsletter/subscription/ |
Upload File : |
<?php // This page is used to show subscription messages to users along the various // subscription and unsubscription steps. // // This page is used ONLY IF, on main configutation, you have NOT set a specific // WordPress page to be used to show messages and when there are no alternative // URLs specified on single messages. // // To create an alternative to this file, just copy the page-alternative.php on // // wp-content/extensions/newsletter/subscription/page.php // // and modify that copy. if (!defined('ABSPATH')) exit; $module = NewsletterSubscription::instance(); $message_key = Newsletter::instance()->get_message_key_from_request(); if ($message_key == 'confirmation') { $user = $module->get_user_from_request(true, 'preconfirm'); } else { $user = $module->get_user_from_request(true); } $email = $module->get_email_from_request(); $message = apply_filters('newsletter_page_text', '', $message_key, $user); $options = $module->get_options('', $module->get_user_language($user)); if (!$message) { $message = $options[$message_key . '_text']; } $message = $module->replace($message, $user, $email); if (isset($options[$message_key . '_tracking'])) { $message .= $options[$message_key . '_tracking']; } $alert = ''; if (isset($_REQUEST['alert'])) $alert = stripslashes($_REQUEST['alert']); // Force the UTF-8 charset header('Content-Type: text/html;charset=UTF-8'); if (is_file(WP_CONTENT_DIR . '/extensions/newsletter/subscription/page.php')) { include WP_CONTENT_DIR . '/extensions/newsletter/subscription/page.php'; die(); } ?> <html> <head> <style type="text/css"> body { font-family: sans-serif; background-color: #ddd; font-size: 1rem; color: #333; } #container { border: 1px solid #ccc; border-radius: 0px; background-color: #fff; margin: 3rem auto; width: 50%; padding: 2rem; } #message { line-height: 1.6em; } #missing { padding: 20px; font-weight: bold; border: 1px solid #999; margin: 20px 0; } </style> </head> <body> <?php if (!empty($alert)) { ?> <script> alert("<?php echo addslashes(strip_tags($alert)); ?>"); </script> <?php } ?> <div id="container"> <?php if (current_user_can('administrator')) { ?> <div id="missing"> This message is shown only to administrators. Newsletter is using this page to show its messages because the public page (on main settings) is not set or the configured page has been deleted or unpublished. </div> <?php } ?> <div id="message"> <?php echo $message; ?> </div> </div> </body> </html>