From 5e076b70b79ddf7bc6e07122b4646961db280be5 Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Fri, 15 Nov 2024 16:41:11 +0100
Subject: FunctionParser: No static property/methods anymore

Problem: When creating a new "FunctionParser" object, it should not know
the previously registered content functions which were saved in a static
class property and registered via static class method.

If one creates a new "FunctionParser" object, one would expect that the
array of registered content functions in that object is empty.

Changes:
- Make static property "functions" non-static
- Make static method "register" non-static
- Add new method "registerFromArray"
---
 core/namespace/Parsers/FunctionParser.php | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

(limited to 'core/namespace/Parsers')

diff --git a/core/namespace/Parsers/FunctionParser.php b/core/namespace/Parsers/FunctionParser.php
index 02570a0..94a4c92 100644
--- a/core/namespace/Parsers/FunctionParser.php
+++ b/core/namespace/Parsers/FunctionParser.php
@@ -3,7 +3,7 @@ namespace Parsers;
 use ReflectionFunction;
 
 class FunctionParser implements ParserInterface {
-	private static $functions = [];
+	private $functions = [];
 
 	#===============================================================================
 	# Main regex for matching the whole function call
@@ -39,19 +39,28 @@ class FunctionParser implements ParserInterface {
 	#===============================================================================
 	# Register function
 	#===============================================================================
-	public static function register(string $name, callable $callback): void {
+	public function register(string $name, callable $callback): void {
 		$Function = new ReflectionFunction($callback);
-		self::$functions[$name] = [
+		$this->functions[$name] = [
 			'callback' => $callback,
 			'required' => $Function->getNumberOfRequiredParameters()
 		];
 	}
 
+	#===============================================================================
+	# Register multiple functions from array
+	#===============================================================================
+	public function registerFromArray(array $functions): void {
+		foreach($functions as $name => $callback) {
+			$this->register($name, $callback);
+		}
+	}
+
 	#===============================================================================
 	# Parse functions
 	#===============================================================================
 	public function parse(string $text): array {
-		$functionNames = array_keys(self::$functions);
+		$functionNames = array_keys($this->functions);
 		$functionNames = implode('|', $functionNames);
 
 		$pattern = self::FUNCTION_PATTERN;
@@ -72,7 +81,7 @@ class FunctionParser implements ParserInterface {
 	# Transform functions
 	#===============================================================================
 	public function transform(string $text): string {
-		$functionData = self::$functions;
+		$functionData = $this->functions;
 		$functionNames = array_keys($functionData);
 		$functionNames = implode('|', $functionNames);
 
-- 
cgit v1.2.3