{% if not headless -%} {%- endif %} {% macro check(check) %} {% set icon = 'high_priority' %} {% if check.state == constant('\Pimcore\\Tool\\Requirements\\Check::STATE_OK') %} {% set icon = 'ok' %} {% elseif check.state == constant('\Pimcore\\Tool\\Requirements\\Check::STATE_WARNING') %} {% set icon = 'overlay-error' %} {% endif %} {% if check.link is not empty %} {{ check.name }} {% else %} {{ check.name }} {% endif %} {% endmacro %} {% import _self as s %}

PHP

{% for check in checksPHP %} {{ s.check(check) }} {% endfor %}

MySQL

{% for check in checksMySQL %} {{ s.check(check) }} {% endfor %}

Filesystem

{% for check in checksFS %} {{ s.check(check) }} {% endfor %}


CLI Tools & Applications

{% for check in checksApps %} {{ s.check(check) }} {% endfor %}

Explanation:

Everything ok Recommended but not required Required

{% if not headless -%} {%- endif %}