patchinfo-excluded-modules.html.twig in PatchInfo 8.2
Same filename and directory in other branches
Default theme implementation for excluded modules information.
Available variables:
- excluded_modules: List of machine readable names of modules excluded from update check
- settings_url: URL of update module settings page.
1 theme call to patchinfo-excluded-modules.html.twig
- patchinfo_preprocess_update_report in ./patchinfo.module 
- Implements hook_preprocess_HOOK() for update-report.html.twig.
File
templates/patchinfo-excluded-modules.html.twigView source
- {#
- /**
-  * @file
-  * Default theme implementation for excluded modules information.
-  *
-  * Available variables:
-  * - excluded_modules: List of machine readable names of modules excluded from
-  *     update check
-  * - settings_url: URL of update module settings page.
-  *
-  * @see template_preprocess_patchinfo_excluded_modules()
-  *
-  * @ingroup themeable
-  */
- #}
- {% if excluded_modules %}
-   <div class="patchinfo-excluded-modules">
-     <strong>{{ 'Modules excluded from update check:'|t }}</strong>
-     {{ excluded_modules }}
-     <p>
-       {{ 'Change the <a href=":settings_url">update settings</a> to restore update checks for these modules.'|t({ ':settings_url': settings_url|render }) }}
-     </p>
-   </div>
- {% endif %}
