sub_page_header.twig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {# array contains Sub page icon and text #}
  2. {% set header = {
  3. 'variables': {
  4. 'image': 's_vars',
  5. 'text': 'Server variables and settings'|trans
  6. },
  7. 'engines': {
  8. 'image': 'b_engine',
  9. 'text': 'Storage engines'|trans
  10. },
  11. 'plugins': {
  12. 'image': 'b_plugin',
  13. 'text': 'Plugins'|trans
  14. },
  15. 'binlog': {
  16. 'image': 's_tbl',
  17. 'text': 'Binary log'|trans
  18. },
  19. 'collations': {
  20. 'image': 's_asci',
  21. 'text': 'Character sets and collations'|trans
  22. },
  23. 'replication': {
  24. 'image': 's_replication',
  25. 'text': 'Replication'|trans
  26. },
  27. 'database_statistics': {
  28. 'image': 's_db',
  29. 'text': 'Databases statistics'|trans
  30. },
  31. 'databases': {
  32. 'image': 's_db',
  33. 'text': 'Databases'|trans
  34. },
  35. 'privileges': {
  36. 'image': 'b_usrlist',
  37. 'text': 'Privileges'|trans
  38. }
  39. } %}
  40. <h2>
  41. {% if is_image|default(true) %}
  42. {{ Util_getImage(header[type]['image']) }}
  43. {% else %}
  44. {{ Util_getIcon(header[type]['image']) }}
  45. {% endif %}
  46. {{ header[type]['text'] }}
  47. {{ link is defined ? Util_showMySQLDocu(link) }}
  48. </h2>