FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
views
/
subscribers
/
importExport
Edit File: export.html
<% extends 'layout.html' %> <% block content %> <div id="mailpoet_subscribers_export" class="wrap"> <div class="mailpoet-top-bar"> <a href="?page=mailpoet-subscribers#/" role="button" class="mailpoet-top-bar-logo" title="Back to section root" tabindex="0"> <img src="<%= cdn_url('logo-orange.svg') %>" alt="MailPoet logo" /> </a> <style>#wpbody-content { padding-top: 64px; } .wrap { margin-top: 20px; }</style> </div> <div class="mailpoet-page-header"> <div class="mailpoet-back-button"> <a href="?page=mailpoet-subscribers#/" aria-label="Navigate to the lists page" class="components-button is-small has-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"></path></svg> </a> </div> <h1 class="wp-heading-inline"><%= __('Export subscribers') %></h1> </div> <% if segments is empty %> <div class="error"> <p><%= __("Yikes! Couldn't find any subscribers") %></p> </div> <% endif %> <div id="mailpoet-export" class="mailpoet-tab-content"> <!-- Template data --> </div> </div> <script id="mailpoet_subscribers_export_template" type="text/x-handlebars-template"> <div id="export_result_notice" class="updated mailpoet_hidden"> <!-- Result message --> </div> <div class="mailpoet-settings-grid"> <% if not segments is empty %> <div class="mailpoet-settings-label"> <label for="export_lists"> <%= __('Pick one or multiple lists') %> </label> </div> <div class="mailpoet-settings-inputs"> <div class="mailpoet-form-select mailpoet-form-input"> <select id="export_lists" data-placeholder="<%= _x('Select', 'Verb') %>" multiple="multiple"></select> </div> </div> <% endif %> <div class="mailpoet-settings-label"> <label for="export_columns"> <%= __('List of fields to export') %> <p class="description"> <a href="https://kb.mailpoet.com/article/245-what-is-the-subscriber-global-status" target="_blank"> <%= _x('Read about the Global status.', 'Link to a documentation page in the knowledge base about what is the subscriber global status') %> </a> </p> </label> </div> <div class="mailpoet-settings-inputs"> <div class="mailpoet-form-select mailpoet-form-input"> <select id="export_columns" data-placeholder="<%= _x('Select', 'Verb') %>" multiple="multiple"></select> </div> </div> <div class="mailpoet-settings-label"> <%= __('Format') %> </div> <div class="mailpoet-settings-inputs"> <div class="mailpoet-settings-inputs-row"> <label class="mailpoet-form-radio"> <input type="radio" name="option_format" id="export-format-csv" value="csv" checked> <span class="mailpoet-form-radio-control"></span> </label> <label for="export-format-csv"><%= __('CSV file') %></label> </div> <div class="mailpoet-settings-inputs-row<%if not zipExtensionLoaded %> mailpoet-disabled<%endif%>"> <label class="mailpoet-form-radio"> <input type="radio" name="option_format" id="export-format-xlsx" value="xlsx"<%if not zipExtensionLoaded %> disabled<%endif%>> <span class="mailpoet-form-radio-control"></span> </label> <label for="export-format-xlsx"><%= __('Excel file') %></label> </div> <%if not zipExtensionLoaded %> <div class="inline notice notice-warning"> <p><%= __('ZIP extension is required to create Excel files. Please refer to the [link]official PHP ZIP installation guide[/link] or contact your hosting provider’s technical support for instructions on how to install and load the ZIP extension.' | replaceLinkTags('http://php.net/manual/en/zip.installation.php')) %></p> </div> <%endif%> </div> <div class="mailpoet-settings-save"> <a href="javascript:;" class="mailpoet-button mailpoet-disabled button-primary" id="mailpoet-export-button"> <%= __('Export') %> </a> </div> </div> </script> <script type="text/javascript"> var segments = JSON.parse("<%=segments|escape('js')%>"), subscriberFieldsSelect2 = JSON.parse("<%=subscriberFieldsSelect2|escape('js')%>"), exportData = { segments: segments.length || null }; </script> <%= localize({ 'serverError': __('Server error:'), 'exportMessage': __('%1$s subscribers were exported. Get the exported file [link]here[/link].') }) %> <% endblock %>
Save
Back