engine.twig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <h2>
  2. {{ Util_getImage('b_engine') }}
  3. {{ title }}
  4. {{ Util_showMySQLDocu(help_page) }}
  5. </h2>
  6. <p><em>{{ comment }}</em></p>
  7. {% if info_pages is not empty and info_pages is iterable %}
  8. <p>
  9. <strong>[</strong>
  10. {% if page is empty %}
  11. <strong>{% trans 'Variables' %}</strong>
  12. {% else %}
  13. <a href="server_engines.php
  14. {{- Url_getCommon({'engine': engine}) }}">
  15. {% trans 'Variables' %}
  16. </a>
  17. {% endif %}
  18. {% for current, label in info_pages %}
  19. <strong>|</strong>
  20. {% if page is defined and page == current %}
  21. <strong>{{ label }}</strong>
  22. {% else %}
  23. <a href="server_engines.php
  24. {{- Url_getCommon({'engine': engine, 'page': current}) }}">
  25. {{ label }}
  26. </a>
  27. {% endif %}
  28. {% endfor %}
  29. <strong>]</strong>
  30. </p>
  31. {% endif %}
  32. {% if page_output is not empty %}
  33. {{ page_output|raw }}
  34. {% else %}
  35. <p>{{ support }}</p>
  36. {{ variables|raw }}
  37. {% endif %}