Upgrade to 4.0.0

This commit is contained in:
Bastian Allgeier
2023-11-28 09:33:56 +01:00
parent f96b96af76
commit 3b0b6546ca
480 changed files with 21371 additions and 13327 deletions

View File

@@ -38,11 +38,11 @@ class Data
* All registered handlers
*/
public static array $handlers = [
'json' => 'Kirby\Data\Json',
'php' => 'Kirby\Data\PHP',
'txt' => 'Kirby\Data\Txt',
'xml' => 'Kirby\Data\Xml',
'yaml' => 'Kirby\Data\Yaml',
'json' => Json::class,
'php' => PHP::class,
'txt' => Txt::class,
'xml' => Xml::class,
'yaml' => Yaml::class
];
/**
@@ -54,10 +54,11 @@ class Data
$type = strtolower($type);
// find a handler or alias
$alias = static::$aliases[$type] ?? null;
$handler =
static::$handlers[$type] ??
($alias ? static::$handlers[$alias] ?? null : null);
$handler = static::$handlers[$type] ?? null;
if ($alias = static::$aliases[$type] ?? null) {
$handler ??= static::$handlers[$alias] ?? null;
}
if ($handler === null || class_exists($handler) === false) {
throw new Exception('Missing handler for type: "' . $type . '"');
@@ -95,7 +96,9 @@ class Data
*/
public static function read(string $file, string|null $type = null): array
{
return static::handler($type ?? F::extension($file))->read($file);
$type ??= F::extension($file);
$handler = static::handler($type);
return $handler->read($file);
}
/**
@@ -108,6 +111,8 @@ class Data
$data = [],
string|null $type = null
): bool {
return static::handler($type ?? F::extension($file))->write($file, $data);
$type ??= F::extension($file);
$handler = static::handler($type);
return $handler->write($file, $data);
}
}

View File

@@ -65,11 +65,10 @@ class Txt extends Handler
$result = $key . ':';
// multi-line content
if (preg_match('!\R!', $value) === 1) {
$result .= "\n\n";
} else {
$result .= ' ';
}
$result .= match (preg_match('!\R!', $value)) {
1 => "\n\n",
default => ' ',
};
$result .= $value;