check_help.html.twig in Security Review 8
Default check-specific help page template for checks.
Available variables:
- title: The title to show on the top of the page.
- paragraphs: Array of paragraphs (strings) to show after the title.
13 theme calls to check_help.html.twig
- AdminPermissions::help in src/
Checks/ AdminPermissions.php - Returns the check-specific help page.
- ErrorReporting::help in src/
Checks/ ErrorReporting.php - Returns the check-specific help page.
- ExecutablePhp::help in src/
Checks/ ExecutablePhp.php - Returns the check-specific help page.
- FailedLogins::help in src/
Checks/ FailedLogins.php - Returns the check-specific help page.
- Field::help in src/
Checks/ Field.php - Returns the check-specific help page.
File
templates/check_help.html.twigView source
- {#
- /**
- * @file
- * Default check-specific help page template for checks.
- *
- * Available variables:
- * - title: The title to show on the top of the page.
- * - paragraphs: Array of paragraphs (strings) to show after the title.
- */
- #}
-
- <h3>
- {{ title }}
- </h3>
- {% for paragraph in paragraphs %}
- <p>
- {{ paragraph }}
- </p>
- {% endfor %}