10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
|
<?php
|
||
|
{%- from "dokuwiki/map.jinja" import dokuwiki with context %}
|
||
|
{%- for key, value in dokuwiki.config.items() %}
|
||
|
{%- if value is string %}
|
||
|
$conf['{{ key }}'] = "{{ value }}";
|
||
|
{%- else %}
|
||
|
$conf['{{ key }}'] = {{ value }};
|
||
|
{%- endif %}
|
||
|
{%- endfor %}
|