HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/azvo/wp-content/plugins/sitepress-multilingual-cms/templates/words-count/report.twig
{% if not cron_is_on %}
<div class="notice notice-warning">
    <p>{{ strings.cronWarning }}</p>
    <ol class="ol-decimal">
        {% for tip in strings.cronTips %}
        <li>{{ tip }}</li>
        {% endfor %}
    </ol>
</div>
{% endif %}
<form class="js-word-count-report{% if countInProgress %} word-count-in-progress"{% endif %}">

    <button class="start-count alignright button button-small button-secondary"
            {% if countInProgress or totals.requestedTypes == 0 %} disabled="disabled"{% endif %}>
        <span class="otgs-ico-refresh"></span> {{ strings.recalculate }}</button>
    <span class="spinner alignright {% if countInProgress %} is-active{% endif %}"></span>

    <table class="widefat striped">
        <thead>
            <tr>
                <th></th>
                <th>{{ strings.contentType }}</th>
                <th>{{ strings.itemsCount }}</th>
                <th>{{ strings.wordCount }}</th>
                <th>{{ strings.estimatedTime }}</th>
            </tr>
        </thead>

        <tbody>
        {% for post_type in data.post_types %}
            {% include 'report-row.twig' with {row:post_type, strings:strings, countInProgress:countInProgress} %}
        {% endfor %}

        {% for package_kind in data.package_kinds %}
            {% include 'report-row.twig' with {row:package_kind, strings:strings, countInProgress:countInProgress} %}
        {% endfor %}
        </tbody>

        <tfoot>
            <tr>
                <th></th>
                <th>{{ strings.total }}</th>
                <th><span class="js-total-completed-items">{{ totals.completedItems }}</span>/{{ totals.countItems }}</th>
                <th class="js-total-count-words">{{ totals.countWords }}</th>
                <th>{% include 'estimated-time.twig' with {estimatedTime: totals.estimatedTime, strings:strings} %}</th>
            </tr>
        </tfoot>
    </table>

</form>