Including security review as a submodule - with patched for Yaffs.
[yaffs-website] / web / modules / contrib / security_review / templates / general_help.html.twig
1 {#
2 /**
3  * @file
4  * Default general help page of Security Review.
5  *
6  * Available variables:
7  * - paragraphs: Array of paragraphs (strings) to show as an introduction.
8  * - items: Array of items (strings) to show in an unordered list after the
9  *   paragraphs.
10  * - checks: Array of check links grouped by their namespaces.
11  */
12 #}
13
14 {% for paragraph in paragraphs %}
15     <p>
16         {{ paragraph }}
17     </p>
18 {% endfor %}
19 <h3>
20     {% trans %}
21     Check-specific help
22     {% endtrans %}
23 </h3>
24 <p>
25     {% trans %}
26     Details and help on the security review checks. Checks are not always
27     perfectly correct in their procedure and result. Refer to drupal.org
28     handbook documentation if you are unsure how to make the recommended
29     alterations to your configuration or consult the module's README.txt for
30     support.
31     {% endtrans %}
32 </p>
33 {% if checks is not empty %}
34     {% for check_namespace in checks %}
35         <h4>{{ check_namespace.namespace }}</h4>
36         <ul>
37             {% for check_link in check_namespace.check_links %}
38                 <li>{{ check_link }}</li>
39             {% endfor %}
40         </ul>
41     {% endfor %}
42 {% endif %}