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/settings/emails-settings.twig
{% set completed_frequency_dropdown %}
<select name="notification[completed_frequency]"{{ settings.completed_frequency.disabled }}>
    {% for option in settings.completed_frequency.options %}
    <option value="{{ option.value }}"{{ option.checked }}>{{ option.label }}</option>
    {% endfor %}
</select>
{% endset %}

{% set overdue_offset_input %}
    <input name="notification[overdue_offset]" value="{{ settings.overdue_offset.value }}"
           size="1"{{ settings.overdue_offset.disabled }}>
{% endset %}

<div class="wpml-section" id="translation-notifications-translator">
    <div class="wpml-section-header">
        <h4>{{ strings.section_title_translator }}</h4>
    </div>
    <div class="wpml-section-content">
        <ul>
            <li>
                <input name="notification[new-job]" type="checkbox" id="wpml_tm_notify_new_job"
                       data-child="notification[include_xliff]"
                       value="{{ settings.new_job.value }}"{{ settings.new_job.checked }}>
                <label for="wpml_tm_notify_new_job">{{ strings.label_new_job }}</label>
                <ul>
                    <li>
                        <input type="checkbox" name="notification[include_xliff]" id="wpml_tm_notify_include_xliff"
                               value="{{ settings.include_xliff.value }}"
                                {{ settings.include_xliff.checked }}{{ settings.include_xliff.disabled }}>
                        <label for="icl_include_xliff">{{ strings.label_include_xliff }}</label>
                    </li>
                </ul>
            </li>
            <li>
                <input name="notification[resigned]" type="checkbox" id="wpml_tm_notify_job_resigned"
                       value="{{ settings.resigned.value }}"{{ settings.resigned.checked }}>
                <label for="wpml_tm_notify_job_resigned">{{ strings.label_resigned_job }}</label>
            </li>
        </ul>
    </div>
</div>
<div class="wpml-section" id="translation-notifications-manager">
    <div class="wpml-section-header">
        <h4>{{ strings.section_title_manager }}</h4>
    </div>
    <div class="wpml-section-content">
        <ul>
            <li>
                <input name="notification[completed]" type="checkbox" id="wpml_tm_notify_completed"
                       data-child="notification[completed_frequency]"
                       value="{{ settings.completed.value }}"{{ settings.completed.checked }}>
                <label for="wpml_tm_notify_completed">
                    {{ strings.label_completed_job|format(completed_frequency_dropdown)|raw }}
                </label>
            </li>
            <li>
                <input name="notification[overdue]" type="checkbox" id="wpml_tm_notify_job_overdue"
                       data-child="notification[overdue_offset]"
                       value="{{ settings.overdue.value }}"{{ settings.overdue.checked }}>
                <label for="wpml_tm_notify_job_overdue">
                    {{ strings.label_overdue_job|format(overdue_offset_input)|raw }}
                </label>
            </li>
        </ul>
    </div>
</div>