فهرست منبع

feat: template decodeHtmlEntities filter

igb 4 ماه پیش
والد
کامیت
0901807d7d
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      app/Services/LiquidFilters/Filters.php

+ 4 - 0
app/Services/LiquidFilters/Filters.php

@@ -54,4 +54,8 @@ class Filters
         return '<img src="' . htmlspecialchars($imageUrl, ENT_QUOTES) . '" alt="' . htmlspecialchars($alt, ENT_QUOTES) . '"' . $attrString . '>';
     }
 
+    public static function decodeHtmlEntities($input) {
+        return html_entity_decode($input, ENT_QUOTES, 'UTF-8');
+    }
+
 }