php-formula/php/ng/files/php.ini

32 lines
1.0 KiB
INI
Raw Normal View History

{%- macro php_block(config) %}
{% for sections in config %}
{%- for section, settings in sections.items() -%}
{%- if settings is number or settings is string %}
2014-05-20 21:59:25 +02:00
{{ section }} = {{ settings }}
{%- else %}
2014-05-20 21:59:25 +02:00
[{{ section }}]
{%- for setting in settings -%}
{%- for key, value in setting.items() %}
{%- if value is number or value is string %}
{{ key }} = {{ value }}
{%- elif value is iterable -%}
{%- if key == 'error_reporting' %}
{{ key }} = {{ value|join(" & ") }}
{%- else %}
{{ key }} = {{ value|join(",") }}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- endfor -%}
{%- endif -%}
2014-05-20 21:59:25 +02:00
{%- endfor -%}
{% endfor %}
2014-05-20 21:59:25 +02:00
{%- endmacro -%}
; PHP configuration file.
;
; **** DO NOT EDIT THIS FILE ****
;
; This file is managed by Salt
{{ php_block(config) }}