PHP 8.2.31
Preview: new.php Size: 5.20 KB
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/newsletter/emails/new.php

<?php
/** @var NewsletterEmailsAdmin $this */
/** @var NewsletterControls $controls */
/** @var NewsletterLogger $logger */

$theme_id = $_GET['id'];

$theme = $this->themes->get_theme($theme_id);

// Should never happen
if (!$theme) {
    echo 'Invalid theme';
    return;
}

if (!file_exists($theme['dir'] . '/theme-options.php') && check_admin_referer('newsletter-new')) {
    $email = array();
    $email['status'] = 'new';
    $email['subject'] = __('Here the email subject', 'newsletter');
    $email['track'] = Newsletter::instance()->get_option('track');
    $email['token'] = $this->get_token();
    $email['type'] = 'message';
    $email['send_on'] = time();
    $email['editor'] = NewsletterEmails::EDITOR_TINYMCE;

    $theme_options = $this->themes->get_options($controls->data['theme']);
    $theme_url = $theme['url'];
    $theme_subject = '';

    ob_start();
    include $theme['dir'] . '/theme.php';
    $email['message'] = ob_get_clean();

    if ($theme_subject) {
        $email['subject'] = $theme_subject;
    }

    if (file_exists($theme['dir'] . '/theme-text.php')) {
        ob_start();
        include $theme['dir'] . '/theme-text.php';
        $email['message_text'] = ob_get_clean();
    } else {
        $email['message_text'] = 'You need a modern email client to read this email. Read it online: {email_url}.';
    }
    $email = $this->save_email($email);

    $controls->js_redirect($this->get_editor_url($email->id, $email->editor));
    return;
}

if ($controls->is_action('refresh')) {
    $this->themes->save_options($theme_id, $controls->data);
}

if ($controls->is_action('create')) {

    $this->themes->save_options($theme_id, $controls->data);

    $email = array();
    $email['status'] = 'new';
    $email['subject'] = __('Here the email subject', 'newsletter');
    $email['track'] = Newsletter::instance()->get_option('track');
    $email['message_text'] = '';
    $email['type'] = 'message';
    $email['send_on'] = time();
    $email['editor'] = NewsletterEmails::EDITOR_TINYMCE;

    $theme_options = $this->themes->get_options($theme_id);

    $theme_url = $theme['url'];
    $theme_subject = '';

    ob_start();
    include $theme['dir'] . '/theme.php';
    $email['message'] = ob_get_clean();

    if ($theme_subject) {
        $email['subject'] = $theme_subject;
    }

    if (is_file($theme['dir'] . '/theme-text.php')) {
        ob_start();
        include $theme['dir'] . '/theme-text.php';
        $email['message_text'] = ob_get_clean();
    }

    $email = $this->save_email($email);
    $controls->js_redirect($this->get_editor_url($email->id, $email->editor));
    return;
} else {
    $controls->data = $this->themes->get_options($theme_id);
    $controls->data['id'] = $theme_id;
}
?>
<style>
#tnp-body .tnp-emails-theme-options {
    background-color: #fff;
    padding: 10px;
    margin-top: 14px;
}

#tnp-body .tnp-emails-theme-options table.form-table {
    margin: 0;
}

#tnp-body .tnp-emails-theme-options h3 {
    color: #000;
}
</style>

<div class="wrap tnp-emails tnp-emails-new" id="tnp-wrap">

    <?php include NEWSLETTER_ADMIN_HEADER ?>

    <div id="tnp-heading">

        <h2><?php _e('Create a newsletter', 'newsletter') ?>
            <a class="tnp-btn-h1" href="?page=newsletter_emails_theme"><?php _e('Back', 'newsletter') ?></a>
        </h2>


    </div>

    <div id="tnp-body" class="tnp-body-lite">

        <?php $controls->show(); ?>

        <form method="post" action="">
            <?php $controls->init(); ?>
            <?php $controls->hidden('id'); ?>
            <table style="width: 100%; border-collapse: collapse">
                <tr>
                    <td style="text-align: left; vertical-align: top; border-bottom: 1px solid #ddd; padding-bottom: 10px">
                        <div style="float: right; margin-left: 15px;"><?php $controls->button_primary('refresh', __('Refresh the preview', 'newsletter')); ?></div>

                    </td>
                    <td style="text-align: left; vertical-align: top; border-bottom: 1px solid #ddd; padding-bottom: 10px">
                        <div style="float: right"><?php $controls->button_primary('create', 'Proceed to edit &raquo;', 'this.form.action=\'' . home_url('/', is_ssl() ? 'https' : 'http') . '?na=emails-create\';this.form.submit()'); ?></div>
                        <img style="position: relative; left: 5px; top: 10px;"src="<?php echo plugins_url('newsletter') ?>/emails/images/arrow.png" height="35">
                    </td>
                </tr>
                <tr>
                    <td style="width: 500px; vertical-align: top;">
                        <div class="tnp-emails-theme-options">
                            <?php @include $theme['dir'] . '/theme-options.php'; ?>
                        </div>
                    </td>
                    <td style="vertical-align: top; padding-top: 15px; padding-left: 15px">
                        <iframe src="<?php echo wp_nonce_url(home_url('/', is_ssl() ? 'https' : 'http') . '?na=emails-preview&id=' . urlencode($theme_id) . '&ts=' . time(), 'view'); ?>" height="700" style="width: 100%; border: 1px solid #ccc"></iframe>
                    </td>
                </tr>
            </table>

        </form>
    </div>

    <?php include NEWSLETTER_DIR . '/tnp-footer.php'; ?>

</div>

Directory Contents

Dirs: 8 × Files: 21

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
blocks DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
images DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
modals DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
presets DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
templates DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
themes DIR
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
- drwxr-xr-x 2026-06-03 14:57:28
Edit Download
1.00 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
1004 B lrw-r--r-- 2026-06-03 14:57:28
Edit Download
4.44 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
101 B lrw-r--r-- 2026-06-03 14:57:28
Edit Download
1.35 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
33.21 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
272 B lrw-r--r-- 2026-06-03 14:57:28
Edit Download
5.24 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
5.11 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
10.77 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
16.35 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
6.83 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
657 B lrw-r--r-- 2026-06-03 14:57:28
Edit Download
1.44 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
5.20 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
1.43 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
4.11 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
2.52 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
2.70 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
2.63 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
3.26 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).