Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/xampp/phpMyAdmin/templates/server/status/processes/ |
{% extends 'server/status/base.twig' %} {% set active = 'processes' %} {% block content %} <fieldset id="tableFilter"> <legend>{% trans 'Filters' %}</legend> <form action="server_status_processes.php" method="post"> {{ get_hidden_inputs(url_params) }} <input class="btn btn-secondary" type="submit" value="{% trans 'Refresh' %}"> <div class="formelement"> <input type="checkbox" name="showExecuting" id="showExecuting" class="autosubmit"{{ is_checked ? ' checked' }}> <label for="showExecuting"> {% trans 'Show only active' %} </label> </div> </form> </fieldset> {{ server_process_list|raw }} {{ 'Note: Enabling the auto refresh here might cause heavy traffic between the web server and the MySQL server.'|trans|notice }} <div class="tabLinks"> <label> {% trans 'Refresh rate' %}: <select id="id_refreshRate" class="refreshRate" name="refreshRate"> {% for rate in [2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200] %} <option value="{{ rate }}"{{ rate == 5 ? ' selected' }}> {% if rate < 60 %} {% if rate == 1 %} {{ '%d second'|trans|format(rate) }} {% else %} {{ '%d seconds'|trans|format(rate) }} {% endif %} {% else %} {% if rate / 60 == 1 %} {{ '%d minute'|trans|format(rate / 60) }} {% else %} {{ '%d minutes'|trans|format(rate / 60) }} {% endif %} {% endif %} </option> {% endfor %} </select> </label> <a id="toggleRefresh" href="#"> {{ get_image('play') }} {% trans 'Start auto refresh' %} </a> </div> {% endblock %}