{% extends "Froxlor/userarea.html.twig" %} {% block heading %}
| {{ lng('opcacheinfo.generaltitle') }} | |
|---|---|
| {{ lng('opcacheinfo.version') }} | {{ opcacheinfo.version.version }} |
| {{ lng('opcacheinfo.phpversion') }} | {{ opcacheinfo.version.php }} |
| {{ lng('admin.hostname') }} | {{ opcacheinfo.version.host }} |
| {{ lng('admin.serversoftware') }} | {{ opcacheinfo.version.server }} |
| {{ lng('opcacheinfo.start') }} | {{ opcacheinfo.overview.start_time|date('d.m.Y H:i:s') }} |
| {{ lng('opcacheinfo.lastreset') }} | {% if opcacheinfo.overview.last_restart_time > 0 %} {{ opcacheinfo.overview.last_restart_time|date('d.m.Y H:i:s') }} {% else %} {{ lng('panel.never') }} {% endif %} |
| {{ lng('opcacheinfo.funcsavail') }} |
|---|
| {{ funcs }} |
| {{ lng('opcacheinfo.runtimeconf') }} | |
|---|---|
| {{ directive.k }} |
{% if directive.v is iterable %}
{% for vval in directive.v %}
{% if vval is iterable %}
{% for val2 in vval %}
{{ val2|raw }} {% endfor %} {% else %} {{ vval|raw }} {% endif %} {% endfor %} {% else %} {{ directive.v|raw }} {% endif %} |