| Current Path : /var/www/surf/TYPO3/vendor/mask/mask/Classes/Utility/ |
| Current File : /var/www/surf/TYPO3/vendor/mask/mask/Classes/Utility/ArrayToTypoScriptConverter.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace MASK\Mask\Utility;
class ArrayToTypoScriptConverter
{
/**
* Converts given array to TypoScript
*
* @param array $typoScriptArray The array to convert to string
* @param string $addKey Prefix given values with given key (eg. lib.whatever = {...})
* @param int $tab Internal
* @param bool $init Internal
* @return string TypoScript
*/
public static function convert(array $typoScriptArray, string $addKey = '', int $tab = 0, bool $init = true): string
{
$typoScript = '';
if ($addKey !== '') {
$typoScript .= str_repeat("\t", ($tab === 0) ? $tab : $tab - 1) . $addKey . " {\n";
if ($init === true) {
$tab++;
}
}
$tab++;
foreach ($typoScriptArray as $key => $value) {
if (!is_array($value)) {
if (!str_contains($value, "\n")) {
$typoScript .= str_repeat("\t", ($tab === 0) ? $tab : $tab - 1) . "$key = $value\n";
} else {
$typoScript .=
str_repeat("\t", ($tab === 0) ? $tab : $tab - 1)
. "$key (\n$value\n"
. str_repeat("\t", ($tab === 0) ? $tab : $tab - 1)
. ")\n";
}
} else {
$typoScript .= self::convert($value, $key, $tab, false);
}
}
if ($addKey !== '') {
$tab--;
$typoScript .= str_repeat("\t", ($tab === 0) ? $tab : $tab - 1) . '}';
if ($init !== true) {
$typoScript .= "\n";
}
}
return $typoScript;
}
}