예제 #1
0
                    <?php 
_e('Since spam filters check links inside emails, <a href="http://www.thenewsletterplugin.com/plugins/newsletter/statistics-module#tracking-url" target="_blank">read more about this setting</a>.', 'newsletter-statistics');
?>
 
                </p>
            </td>
        </tr>
        -->
        <tr>
            <th><?php 
_e('Secret key', 'newsletter-statistics');
?>
</th>
            <td>
                <?php 
$controls->text('key');
?>
                <p class="description">
                    <?php 
_e('This auto-generated key is used to protect the click tracking. If you change it old tracking links to external domains won\'t be registered anymore.', 'newsletter-statistics');
?>
 
                </p>
            </td>
        </tr>        
    </table>
    <p>
        <?php 
$controls->button_save();
?>
    </p>
예제 #2
0
                    <th>Field</th>
                    <th>Name/Label</th>
                    <th>On subscription</th>
                    <th>Initially...</th>
                </tr>
            </thead>
            <?php 
for ($i = 1; $i <= NEWSLETTER_LIST_MAX; $i++) {
    ?>
                <tr>
                    <td>List <?php 
    echo $i;
    ?>
</td>
                    <td><?php 
    $controls->text('list_' . $i);
    ?>
</td>
                    <td><?php 
    $controls->select('list_' . $i . '_status', $status);
    ?>
</td>
                    <td><?php 
    $controls->select('list_' . $i . '_checked', array(0 => 'Unchecked', 1 => 'Checked'));
    ?>
</td>
                </tr>
            <?php 
}
?>
        </table>
예제 #3
0
    <h2>New subscriber</h2>
</div>
    <div class="newsletter-separator"></div> 
    <?php 
$controls->show();
?>

    <form method="post" action="">
        <?php 
$controls->init();
?>

        <table class="form-table">
            <tr valign="top">
                <th>New email address</th>
                <td>
                    <?php 
$controls->text('email', 60);
?>
                    <?php 
$controls->button('save', 'Proceed');
?>

                </td>
            </tr>
        </table>

    </form>
</div>
예제 #4
0
                    created: <?php 
$nc->value('created');
?>
                    ip: <?php 
$nc->value('ip');
?>
                    token: <?php 
$nc->value('token');
?>
                </td>
            </tr>
            <tr valign="top">
                <th>Name and email</th>
                <td>
                    first name: <?php 
$nc->text('name', 30);
?>
 last name: <?php 
$nc->text('surname', 30);
?>
                    email: <?php 
$nc->text('email', 40);
?>
 sex: <?php 
$nc->select('sex', array('n' => 'Not specified', 'f' => 'female', 'm' => 'male'));
?>
                </td>
            </tr>
            <tr valign="top">
                <th>Status</th>
                <td>
예제 #5
0
파일: edit.php 프로젝트: taeche/SoDoEx
        </p>

        <div id="tabs">
            <ul>
                <li><a href="#tabs-a">Message</a></li>
                <li><a href="#tabs-b">Message (textual)</a></li>
                <li><a href="#tabs-c">Who will receive it</a></li>
                <li><a href="#tabs-d">Other options</a></li>
                <!--<li><a href="#tabs-5">Documentation</a></li>-->
            </ul>


            <div id="tabs-a">

                            <?php 
$controls->text('subject', 70, 'Subject');
?>

                            <input id="upload_image_button" type="button" value="Choose or upload an image" />
                            <?php 
$email['editor'] == 0 ? $controls->editor('message', 30) : $controls->textarea_fixed('message', '100%', '700');
?>
                            <div class="hints">
                                <a href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-tags" target="">See the list of all tags</a> that can be used on the email text.
                            </div>
                        
            </div>


            <div id="tabs-b">
                <div class="tab-preamble">
예제 #6
0
파일: options.php 프로젝트: besimhu/legacy
                    <?php 
$nc->editor('confirmed_text');
?>
                    <div class="hints">
                        Showed when the user follow the confirmation URL sent to him with previous email
                        settings or if signed up directly with no double opt-in process. You can use the <strong>{profile_form}</strong> tag to let the user to
                        complete it's profile.
                    </div>
                </td>
            </tr>

            <tr valign="top">
                <th>Alternative custom welcome page</th>
                <td>
                    <?php 
$nc->text('confirmed_url', 70);
?>
                    <div class="hints">
                        A full page address (http://yourblog.com/welcome) to be used instead of message above. If empty the message is
                        used.
                    </div>
                </td>
            </tr>

            <tr valign="top">
                <th>Conversion tracking code<br/><small>ADVANCED</small></th>
                <td>
                    <?php 
$nc->textarea('confirmed_tracking');
?>
                    <div class="hints">
예제 #7
0
                        <th>Opt In</th>
                        <td>
                            <?php 
$controls->select('noconfirmation', array(0 => 'Double Opt In', 1 => 'Single Opt In'));
?>
                            <p class="description">
                                <strong>Double Opt In</strong> means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />
                                <strong>Single Opt In</strong> means subscribers do not need to confirm their email address.<br />
                            </p>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Newsletter dedicated page</th>
                        <td>
                            <?php 
$controls->text('url', 70);
?>
                            <?php 
if (empty($controls->data['url'])) {
    $controls->button('create', 'Create a page for me');
}
?>

                            <p class="description">
                                Optional (but recommended) an address of a WordPress page (eg. <?php 
echo get_option('home') . '/newsletter';
?>
)
                                you <strong>manually created</strong> for subscription and messages.
                                <br>
                                The page must have in its body <strong>only</strong> the short code <strong>[newsletter]</strong> (as is).
예제 #8
0
 
                                    Since this setting can
                                    affect the reliability of delivery,
                                    <a href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-configuration#sender" target="_blank">read my notes here</a> (important).
                                    Generally use an address within your domain name.
                                </p>
                            </td>
                        </tr>
                        <tr>
                            <th><?php 
_e('Sender name', 'newsletter');
?>
</th>
                            <td>
                                <?php 
$controls->text('sender_name', 40);
?>
 (optional)

                                <p class="description">
                                    <?php 
_e('Name from which subscribers will see your email coming (for example your blog title).', 'newsletter');
?>
 
                                    Since this setting can affect the reliability of delivery (usually under Windows)
                                    <a href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-configuration#sender" target="_blank">read my notes here</a>.
                                </p>
                            </td>
                        </tr>

                        <tr valign="top">
예제 #9
0
$controls->select('subscribe', array(0 => 'No', 1 => 'Yes, force subscription', 2 => 'Yes, show the option', 3 => 'Yes, show the option already checked'));
?>
                        <p class="description">
                            Adds a newsletter subscription option on registration. 
                            <a href="http://www.thenewsletterplugin.com/plugins/newsletter/subscription-module#registration" target="_blank">Read more</a>
                        </p>
                    </td>
                </tr>
                <tr valign="top">
                    <th><?php 
_e('Check box label', 'newsletter');
?>
</th>
                    <td>
                        <?php 
$controls->text('subscribe_label', 30);
?>
                    </td>
                </tr>
            </table>

            <table class="form-table"> 
                <tr valign="top">
                    <td colspan="2">
                        <h3><?php 
_e('Confirmation', 'newsletter');
?>
</h3>
                        <p>
                            Subscribers will be automatically confirmed on first log-in (because it demonstrates they received the WP email with
                            their passsword. Hence no confirmation email is sent. Anyway you can change that behavior here and ask anyway for confirmation.
예제 #10
0
        </table>
    </form>

    <form id="channel" method="post" action="">
        <?php 
$nc->init();
?>
        <input type="hidden" name="options[subscriber_id]"/>
        <input type="hidden" name="options[subscriber_status]"/>

        <h3>Search</h3>
        <table class="form-table">
            <tr valign="top">
                <td>
                    text: <?php 
$nc->text('search_text', 50);
?>
 (partial name, email, ...)<br />
                    <?php 
$nc->select('search_status', array('' => 'Any status', 'C' => 'Confirmed', 'S' => 'Not confirmed', 'B' => 'Bounced'));
?>
                    <?php 
$nc->select('search_order', array('id' => 'Order by id', 'email' => 'Order by email', 'name' => 'Order by name'));
?>
                    <?php 
$nc->select('search_list', $lists, 'Any');
?>
                    <?php 
$nc->button('search', 'Search');
?>
예제 #11
0
                    <?php 
$controls->select('subscribe_wp_users', array(0 => 'No', 1 => 'Yes, force subscription', 2 => 'Yes, show the option', 3 => 'Yes, show the option already checked'));
?>
                    <?php 
$controls->hint('Adds a newsletter subscription option on registration.', 'http://www.thenewsletterplugin.com/plugins/newsletter/subscription-module#registration');
?>
                </td>
            </tr>
            <tr valign="top">
                <th><?php 
_e('Check box label', 'newsletter');
?>
</th>
                <td>
                    <?php 
$controls->text('subscribe_wp_users_label', 30);
?>
                </td>
            </tr>
        </table>

        <table class="form-table"> 
            <tr valign="top">
                <td colspan="2">
                    <h3><?php 
_e('Confirmation', 'newsletter');
?>
</h3>
        <p>
            Subscribers will be automatically confirmed on first log-in (because it demonstrates they received the WP email with
            their passsword. Hence no confirmation email is sent. Anyway you can change that behavior here and ask anyway for confirmation.
예제 #12
0
                </td>

            <?php 
} else {
    ?>
                <td>Tracking options available with Newsletter Extras package</td>
            <?php 
}
?>
            </tr>

            <tr valign="top">
                <th>Subject</th>
                <td>
                    <?php 
$nc->text('subject', 70);
?>
                    <br />
                    <?php 
_e('Tags: <strong>{name}</strong> receiver name.', 'newsletter');
?>
                </td>
            </tr>

            <tr valign="top">
                <th>Message</th>
                <td>
                    <?php 
$nc->checkbox('novisual', 'disable the visual editor');
?>
                    (save to apply and be sure to <a href="http://www.satollo.net/plugins/newsletter#composer">read here</a>)
예제 #13
0
파일: index.php 프로젝트: kfwebdev/wp-atd
    ?>
</h3>    
                <table class="form-table">
                    <tr valign="top">
                        <th>Enabled?</th>
                        <td>
                            <?php 
    $controls->yesno('rule_' . $i . '_enabled');
    ?>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Subscription indicator field</th>
                        <td>
                            name: <?php 
    $controls->text('rule_' . $i . '_check_field');
    ?>
                            value: <?php 
    $controls->text('rule_' . $i . '_check_value');
    ?>
                            <p class="description">
                                If the value is left empty, the presence of the field is enough to trigger the grabber, otherwise the field
                                value must extactly match.
                            </p>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Email field name</th>
                        <td>
                            
                            <?php 
예제 #14
0
	<div id="tnp-body">
    
    <form method="post" action="">
        <?php 
$controls->init();
?>
        <table class="form-table">
            <tr valign="top">
                <th><?php 
_e('Tags or categories to block', 'newsletter');
?>
</th>
                <td>
                    <?php 
$controls->text('ids', 70);
?>
 (<?php 
_e('comma separated', 'newsletter');
?>
)
                    <p class="description">
                        <?php 
_e('Use tag or category slugs or id for which lock the posts content', 'newsletter');
?>
                    </p>
                </td>
            </tr>

            <tr valign="top">
                <th><?php 
예제 #15
0
    </div>

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

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

    <form id="channel" method="post" action="">
        <?php 
$controls->init();
?>

        <div style="padding: .6em; border: 1px solid #ddd; background-color: #f4f4f4; border-radius: 3px;">
            <?php 
$controls->text('search_text', 80, __('Search text', 'newsletter-users'));
?>

            <?php 
_e('filter by', 'newsletter-users');
?>
:<?php 
$controls->select('search_status', array('' => 'Any status', 'T' => 'Test subscribers', 'C' => 'Confirmed', 'S' => 'Not confirmed', 'U' => 'Unsubscribed', 'B' => 'Bounced'));
?>
            <?php 
$controls->button('search', __('Search', 'newsletter-users'));
?>
            <br>
            <?php 
$controls->checkbox('show_preferences', __('Show preferences', 'newsletter-users'));
?>
예제 #16
0
?>
</h3>
       
        <?php 
_e('<p><strong>It\'s REQUIRED to complete such configuration.</strong></p>', 'newsletter');
?>

        <table class="form-table">
            <tr valign="top">
                <th><?php 
_e('Sender email', 'newsletter');
?>
</th>
                <td>
                    <?php 
$nc->text('from_email', 50);
?>
                    <br />
                    <?php 
_e('Newsletter sender email address: the address subscribers will see the newsletters coming from.', 'newsletter');
?>
                </td>
            </tr>
            <tr valign="top">
                <th><?php 
_e('Sender name');
?>
</th>
                <td>
                    <?php 
$nc->text('from_name', 50);
예제 #17
0
$controls->init();
?>

        <table class="form-table">
            <tr>
                <th>Enable the SMTP?</th>
                <td><?php 
$controls->yesno('enabled');
?>
</td>
            </tr>
            <tr>
                <th>SMTP host/port</th>
                <td>
                    host: <?php 
$controls->text('host', 30);
?>
                    port: <?php 
$controls->text('port', 6);
?>
                    <?php 
$controls->select('secure', array('' => 'No secure protocol', 'tls' => 'TLS protocol', 'ssl' => 'SSL protocol'));
?>
                    <p class="description">
                        Leave port empty for default value (25). To use Gmail try host "smtp.gmail.com" and port "465" and SSL protocol (without quotes).
                        For GoDaddy use "relay-hosting.secureserver.net".
                    </p>
                </td>
            </tr>
            <tr>
                <th>Authentication</th>
예제 #18
0
?>
 (valid email address)

                            <p class="description">
                                This the email address from which subscribers will se your email coming. Since this setting can
                                affect the reliability of delivery,
                                <a href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-configuration#sender" target="_blank">read my notes here</a> (important).
                                Generally use an address within your domain name.
                            </p>
                        </td>
                    </tr>
                    <tr>
                        <th>Sender name</th>
                        <td>
                            <?php 
$controls->text('sender_name', 40);
?>
 (optional)

                            <p class="description">
                                Insert here the name which subscribers will see as the sender of your email (for example your blog name). Since this setting can affect the reliability of delivery (usually under Windows)
                                <a href="http://www.thenewsletterplugin.com/plugins/newsletter/newsletter-configuration#sender" target="_blank">read my notes here</a>.
                            </p>
                        </td>
                    </tr>

                    <tr valign="top">
                        <th>Return path</th>
                        <td>
                            <?php 
$controls->text_email('return_path', 40);
예제 #19
0
                        <th>Opt In</th>
                        <td>
                            <?php 
$controls->select('noconfirmation', array(0 => 'Double Opt In', 1 => 'Single Opt In'));
?>
                            <p class="description">
                                <strong>Double Opt In</strong> means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />
                                <strong>Single Opt In</strong> means subscribers do not need to confirm their email address.<br />
                            </p>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Newsletter dedicated page</th>
                        <td>
                            <?php 
$controls->text('url', 70);
?>
                            <?php 
if (empty($controls->data['url'])) {
    $controls->button('create', 'Create a page for me');
}
?>

                            <p class="description">
                                Optional (but recommended) an address of a WordPress page (eg. <?php 
echo get_option('home') . '/newsletter';
?>
)
                                you <strong>manually created</strong> for subscription and messages.
                                <br>
                                The page must have in its body <strong>only</strong> the short code <strong>[newsletter]</strong> (as is).
예제 #20
0
                </table>
            </div>


            <div id="tabs-smtp">

                <p>
                    This configuration overrides realtime the standard SMTP configuration of Newsletter plugin.
                </p>

                <table class="form-table">
                    <tr valign="top">
                        <th>A valid MandrillApp API Key</th>
                        <td>
                            <?php 
$controls->text('smtp_password', 50);
?>
                            <p class="description">You can generate an API key from their console.</p>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>API or SMTP?</th>
                        <td>
                            <?php 
$controls->select('api', array('0' => 'SMTP', '1' => 'API'));
?>
                            <p class="description">Using of the API method is now reocmmended, Using the API you don't need to set the
                                fields below.</p>
                        </td>
                    </tr>
                    <tr valign="top">
예제 #21
0
                <li><a href="#tabs-4">Preferences</a></li>
                <li><a href="#tabs-5">Form code</a></li>
                <li><a href="#tabs-6">Form style</a></li>
            </ul>

            <div id="tabs-2">

                <p>The main subscriber fields. Only the email field is, of course, mandatory.</p>

                <table class="form-table">
                    <tr>
                        <th>Email</th>
                        <td>
                            <table class="newsletter-option-grid">
                                <tr><th>Field label</th><td><?php 
$controls->text('email', 50);
?>
</td></tr>
                                <tr><th>Error message</th><td><?php 
$controls->text('email_error', 50);
?>
</td></tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <th>Name or first name</th>
                        <td>
                            <table class="newsletter-option-grid">
                                <tr><th>Field label</th><td><?php 
$controls->text('name', 50);
예제 #22
0
        <h3>Main settings</h3>

            <p class="intro">
            Configurations on this sub panel can block emails sent by Newsletter Pro. It's not a plugin limit but odd restrictions imposed by
            hosting providers. It's advisable to careful read the detailed documentation you'll found under every options, specially on the "return path"
            field. Try different combination of setting below before send a support request and do it in this way: one single change - test - other single
            change - test, and so on. Thank you for your collaboration.
            </p>

        <table class="form-table">
            <tr valign="top">
                <th>Sender name and address</th>
                <td>
                    email address (required): <?php 
$nc->text('sender_email', 40);
?>
                    name (optional): <?php 
$nc->text('sender_name', 40);
?>

                    <div class="hints">
                        These are the name and email address a subscriber will see on emails he'll receive.
                        Be aware that hosting providers can block email with a sender address not of the same domain of the blog.<br />
                        For example, if your blog is www.myblog.com, using as sender email "*****@*****.**" or
                        "*****@*****.**" is safer than using "*****@*****.**". The name is optional but is more professional
                        to set it (even if some providers with bugged mail server do not send email with a sender name set as reported by
                        a customer).
                    </div>
                </td>
            </tr>
예제 #23
0
파일: profile.php 프로젝트: besimhu/legacy
        <h3>Main profile fields</h3>
        <table class="form-table">
            <tr>
                <th>User's data/fields</th>
                <td>
                    <table class="widefat">
                        <thead>
                    <tr>
                        <th>Field</th><th>When/Where</th><th>Configuration</th>
                    </tr>
                        </thead>
                    <tr>
                        <td>Email</td><td>&nbsp;</td>
                        <td>
                            label: <?php 
$nc->text('email');
?>
<br/>
                            wrong email message: <?php 
$nc->text('email_error', 50);
?>
                        </td>
                    </tr>
                    <tr><td>First Name</td><td><?php 
$nc->select('name_status', $status);
?>
</td><td>label: <?php 
$nc->text('name');
?>
</td></tr>
                    <tr><td>Last Name</td><td><?php 
예제 #24
0
                        <th>Opt In</th>
                        <td>
                            <?php 
$controls->select('noconfirmation', array(0 => 'Double Opt In', 1 => 'Single Opt In'));
?>
                            <p class="description">
                                <strong>Double Opt In</strong> means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />
                                <strong>Single Opt In</strong> means subscribers do not need to confirm their email address.<br />
                            </p>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Newsletter dedicated page</th>
                        <td>
                            <?php 
$controls->text('url', 70);
?>
                            <?php 
if (empty($controls->data['url'])) {
    $controls->button('create', 'Create a page for me');
}
?>

                            <p class="description">
                                Optional (but recommended) an address of a WordPress page (eg. <?php 
echo get_option('home') . '/newsletter';
?>
)
                                you <strong>manually created</strong> for subscription and messages.
                                <br>
                                The page must have in its body <strong>only</strong> the short code <strong>[newsletter]</strong> (as is).
예제 #25
0
      <ul>
        <li><a href="#tabs-general">General</a></li>
        <li><a href="#tabs-preferences">Preferences</a></li>
        <li><a href="#tabs-profile">Profile</a></li>
        <li><a href="#tabs-other">Other</a></li>
      </ul>

      <div id="tabs-general">

        <table class="form-table">
          <tr valign="top">
            <th>Email address</th>
            <td>
              <?php 
$controls->text('email', 60);
?>
            </td>
          </tr>
          <tr valign="top">
            <th>First name</th>
            <td>
              <?php 
$controls->text('name', 50);
?>
              <div class="hints">
                If you collect only the name of the subscriber without distinction of first and last name this field is used.
              </div>
            </td>
          </tr>
          <tr valign="top">
예제 #26
0
    </div>

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

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

    <form id="channel" method="post" action="">
        <?php 
$controls->init();
?>

        <div style="padding: .6em; border: 1px solid #ddd; background-color: #f4f4f4; border-radius: 3px;">
            <?php 
$controls->text('search_text', 80);
?>

            <!--<?php 
$controls->checkbox('search_test');
?>
 show subscriber with "test" flag on-->
            <?php 
$controls->select('search_status', array('' => 'Any status', 'T' => 'Test subscribers', 'C' => 'Confirmed', 'S' => 'Not confirmed', 'U' => 'Unsubscribed', 'B' => 'Bounced'));
?>
            <?php 
$controls->button('search', 'Search');
?>
        </div>

예제 #27
0
$nc->button('compose', 'Change');
?>
 (email content below will be regenerated)
                    <div class="hints">
                        Theme changing does not save this email, remember to press save if you are satisfied of the result. A theme can have a style file
                        (style.css in theme folder): that style will be added to your emails, so when you change the theme you MUST press "change" to have
                        in the editor the right content for the current theme style. No easy to explain. No all email readers respect the theme graphics!
                    </div>
                </td>
            </tr>

            <tr valign="top">
                <th>Subject</th>
                <td>
                    <?php 
$nc->text('subject', 70);
?>
                   <div class="hints">
                        Tags: <strong>{name}</strong> receiver name.
                   </div>
                </td>
            </tr>

            <tr valign="top">
                <th>Message</th>
                <td>
                    <?php 
$nc->data['editor'] == 0 ? $nc->editor('message', 20) : $nc->textarea_fixed('message', '100%', 400);
?>
                    <br />
                    <?php 
예제 #28
0
                <li><a href="#tabs-upgrade">Maintenance</a></li>
                <?php 
if (isset($_GET['debug'])) {
    ?>
                <li><a href="#tabs-debug">Debug Data</a></li>
                <?php 
}
?>
            </ul>

            <!-- TESTS -->
            <div id="tabs-tests">
                <p>Here you can test if the blog is able to send emails reliabily.</p>

                <p>Email address where to send test messages: <?php 
$controls->text('test_email', 50);
?>
</p>

                <p>
                    <?php 
$controls->button('test_wp', 'Send an email with WordPress');
?>
                    <?php 
$controls->button('send_test', 'Send few emails with Newsletter');
?>
                </p>

                <p class="description">
                    First test emailing with WordPress if it does not work you need to contact your provider. Test on different addresses.
                    <br>
예제 #29
0
파일: index-old.php 프로젝트: taeche/SoDoEx
$controls->init();
?>
        <input type="hidden" name="options[subscriber_id]"/>
        <input type="hidden" name="options[subscriber_status]"/>

        <?php 
$tmp = $wpdb->get_results("select distinct newsletter, url from " . $wpdb->prefix . "newsletter_stats order by newsletter,url");
$links = array('' => 'Unfiltered');
foreach ($tmp as $t) {
    $links[$t->newsletter . '|' . $t->url] = $t->newsletter . ': ' . substr($t->url, 0, min(strlen($t->url), 50)) . '...';
}
?>

        <div style="padding: .6em; border: 1px solid #ddd; background-color: #f4f4f4; border-radius: 3px;">
        <?php 
$controls->text('search_text', 80);
?>
        <?php 
$controls->button('search', 'Search');
?>
        </div>

        <table class="form-table">
            <tr valign="top">
                <td>
                    <?php 
$controls->select('search_status', array('' => 'Any status', 'C' => 'Confirmed', 'S' => 'Not confirmed', 'U' => 'Unsubscribed', 'B' => 'Bounced'));
?>
                    <?php 
$order_fields = array('id' => 'Order by id', 'email' => 'Order by email', 'name' => 'Order by name');
for ($i = 1; $i < 20; $i++) {
예제 #30
0
                    </div>
                    </th>
                    <td>
                        <?php 
$controls->media('header_logo', 'medium');
?>
                        <p class="description">
                            Click to change. This should be your logo in .png or .jpg format.
                        </p>
                    </td>
                    </tr>
                    <tr>
                        <th>Title</th>
                        <td>
                            <?php 
$controls->text('header_title', 40);
?>
                            <p class="description">Appears only when no logo has been uploaded or when it's blocked by email clients.</p>
                        </td>
                    </tr>
                    <tr>
                        <th>Subtitle</th>
                        <td>
                            <?php 
$controls->text('header_sub', 40);
?>
                            <p class="description">Appears only if present.</p>
                        </td>
                    </tr>
                </table>