]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/System.php
Use toConfigValue in case of serialized, legacy data
[friendica.git] / src / Core / System.php
index 707649a49d3406cf2f64ee7f943925bd57992cff..f94004a880ab10a047935c653432cb887cc25aab 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -251,7 +251,7 @@ class System
 
                                // Don't show multiple calls from the Database classes to show the essential parts of the callstack
                                $func['database'] = in_array($func['class'], ['Friendica\Database\DBA', 'Friendica\Database\Database']);
-                               if (!$previous['database'] || !$func['database']) {     
+                               if (!$previous['database'] || !$func['database']) {
                                        $classparts = explode("\\", $func['class']);
                                        $callstack[] = array_pop($classparts).'::'.$func['function'];
                                        $previous = $func;
@@ -294,7 +294,7 @@ class System
                }
 
                DI::apiResponse()->setType(Response::TYPE_XML);
-               DI::apiResponse()->addContent(XML::fromArray(["result" => $result], $xml));
+               DI::apiResponse()->addContent(XML::fromArray(['result' => $result]));
                DI::page()->exit(DI::apiResponse()->generate());
 
                self::exit();
@@ -665,10 +665,11 @@ class System
 
        /**
         * Fetch the system rules
+        * @param bool $numeric_id If set to "true", the rules are returned with a numeric id as key.
         *
         * @return array
         */
-       public static function getRules(): array
+       public static function getRules(bool $numeric_id = false): array
        {
                $rules = [];
                $id    = 0;
@@ -678,10 +679,14 @@ class System
                        $html = BBCode::convert($rulelist, false, BBCode::EXTERNAL);
 
                        $msg = HTML::toPlaintext($html, 0, true);
-                       foreach (explode("\n", $msg) as $line) {
+                       foreach (explode("\n", trim($msg)) as $line) {
                                $line = trim($line);
                                if ($line) {
-                                       $rules[] = ['id' => (string)++$id, 'text' => $line];
+                                       if ($numeric_id) {
+                                               $rules[++$id] = $line;
+                                       } else {
+                                               $rules[] = ['id' => (string)++$id, 'text' => $line];
+                                       }
                                }
                        }
                }