Falcon_Admin::settings_field_replyto PHP Метод

settings_field_replyto() публичный статический Метод

Print field for the reply-to address
См. также: self::init()
public static settings_field_replyto ( )
    public static function settings_field_replyto()
    {
        $current = Falcon::get_option('bbsub_replyto', '');
        echo '<input type="text" name="bbsub_replyto" class="regular-text" value="' . esc_attr($current) . '" />';
        echo '<p class="description">';
        _e('Falcon will append an authentication token to this email before sending.', 'falcon');
        echo '</p>';
    }