From 29985adf78093c3ec278a5fc4f2c5bdded5d4098 Mon Sep 17 00:00:00 2001
From: Thijs Kinkhorst <thijs@kinkhorst.com>
Date: Fri, 3 Sep 2021 15:28:00 +0000
Subject: [PATCH] Make getEntityDisplayName available as a filter

---
 lib/SimpleSAML/IdP.php            | 2 +-
 lib/SimpleSAML/XHTML/Template.php | 7 +++++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/SimpleSAML/IdP.php b/lib/SimpleSAML/IdP.php
index 9fce99741..eab59467a 100644
--- a/lib/SimpleSAML/IdP.php
+++ b/lib/SimpleSAML/IdP.php
@@ -169,7 +169,7 @@ class IdP
 
     /**
      * Get SP name.
-     * Only usefd in IFrameLogout it seems.
+     * Only used in IFrameLogout it seems.
      * TODO: probably replace with template Template::getEntityDisplayName()
      *
      * @param string $assocId The association identifier.
diff --git a/lib/SimpleSAML/XHTML/Template.php b/lib/SimpleSAML/XHTML/Template.php
index 5921db059..24ee27082 100644
--- a/lib/SimpleSAML/XHTML/Template.php
+++ b/lib/SimpleSAML/XHTML/Template.php
@@ -325,6 +325,13 @@ class Template extends Response
                 ['needs_context' => true]
             )
         );
+        // add a filter for preferred entity name
+        $twig->addFilter(
+            new TwigFilter(
+                'entityDisplayName',
+                [$this, 'getEntityDisplayName'],
+            )
+        );
 
         // add an asset() function
         $twig->addFunction(new TwigFunction('asset', [$this, 'asset']));
-- 
GitLab