예제 #1
0
?>
"
    });
</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));
?>
                    <?php 
$nc->button('compose', 'Change');
예제 #2
0
파일: theme.php 프로젝트: jekv/devia
    <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 
    echo $data['name'];
    ?>
';
예제 #3
0
        $nc->save($wpdb->prefix . 'newsletter');
    }
}
$nc->errors($errors);
$nc->messages($messages);
$options_profile = get_option('newsletter_profile');
?>
<div class="wrap">
    <h2>Newsletter Subscriber Editing</h2>
    <p><a href="admin.php?page=newsletter/users.php">Back to the list</a></p>
    <form method="post" action="admin.php?page=newsletter/users-edit.php">
        <?php 
$nc->init();
?>
        <?php 
$nc->hidden('id');
?>
        <?php 
$nc->hidden('token');
?>

        <table class="form-table">
            <tr valign="top">
                <th>&nbsp;</th>
                <td>
                    id: <?php 
$nc->value('id');
?>
                    created: <?php 
$nc->value('created');
?>