HEX
Server: nginx/1.18.0
System: Linux iZj6c1ieg2jrpk1z5tzi19Z 6.3.9-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 21 22:18:40 EDT 2023 x86_64
User: www (1001)
PHP: 8.2.4
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.cytocare.cn/wp-content/plugins/mailpoet/views/subscribers/importExport/export.html
<% extends 'layout.html' %>

<% block content %>
<div id="mailpoet_subscribers_export" class="wrap">
  <h1 class="mailpoet-h1 mailpoet-title">
    <span><%= __('Export') %></span>
    <a class="mailpoet-button button button-secondary button-small" href="?page=mailpoet-subscribers#/"><%= __('Back to Subscribers') %></a>
  </h1>
  <% 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-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 %>