示例#1
0
/",
        content_css: "<?php 
echo newsletter_get_theme_css_url($nc->data['theme']) . '?' . time();
?>
"
    });
</script>


<div class="wrap">

    <h2>Email Composer</h2>

    <form method="post" action="admin.php?page=newsletter/emails-edit.php">
        <?php 
$nc->init();
?>
        <?php 
$nc->hidden('id');
?>
        <?php 
$nc->hidden('status');
?>

        <table class="form-table">

            <tr valign="top">
                <th>Theme</th>
                <td>
                    <?php 
$nc->select_grouped('theme', array(array_merge(array('' => 'Custom themes'), newsletter_get_themes()), $themes, $themes_panel));
示例#2
0
文件: theme.php 项目: jekv/devia
            <a class="add-new-h2" href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-themes" target="_blank">Custom themes</a>
        </h2>
    </div>

    <div class="newsletter-separator"></div>

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

    <form method="post" id="newsletter-form" action="<?php 
echo $module->get_admin_page_url('new');
?>
">
        <?php 
$controls->init();
?>
        <?php 
$controls->hidden('theme');
?>
        <?php 
foreach ($themes as $key => &$data) {
    ?>
            <div class="tnp-theme-preview">
                <p><?php 
    echo $data['name'];
    ?>
</p>
                <a href="#" onclick="var f = document.getElementById('newsletter-form');
                        f.act.value = 'theme';
                        f.elements['options[theme]'].value = '<?php 
示例#3
0
?>
</h2>
    
    </div>

	<div id="tnp-body">

    <?php 
if ($controls->data['status'] == 'S') {
    echo '<div class="newsletter-message">Warning! This email is configured to be sent to NOT CONFIRMED subscribers.</div>';
}
?>

    <form method="post" action="" id="newsletter-form">
        <?php 
$controls->init(array('cookie_name' => 'newsletter_emails_edit_tab'));
?>

        <p class="submit">
            <?php 
$controls->button_back('?page=newsletter_emails_index');
?>
            <?php 
if ($email['status'] != 'sending') {
    $controls->button_save();
}
?>
            <?php 
if ($email['status'] != 'sending' && $email['status'] != 'sent') {
    $controls->button_confirm('test', 'Save and test', 'Save and send test emails to test addresses?');
}