\n {error.code}: {error}<\/p>\n <\/f:for>\n <\/f:for>\n <\/f:form.validationResults>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/docs.typo3.org\/permalink\/t3viewhelper:typo3-fluid-form-validationresults"},"argumentDefinitions":{"for":{"name":"for","type":"string","description":"The name of the error name (e.g. argument name or property name). This can also be a property path (like blog.title), and will then only display the validation errors of that property.","required":false,"defaultValue":"","escape":null},"as":{"name":"as","type":"string","description":"The name of the variable to store the current error","required":false,"defaultValue":"validationResults","escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Form\\ValidationResults","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Form\/ValidationResults"},"format.bytes":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\BytesViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\BytesViewHelper","tagName":"format.bytes","documentation":"ViewHelper which formats an integer (byte count) into specific human-readable output.\n\n```\n {file.size}<\/f:format.bytes>\n \n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/docs.typo3.org\/permalink\/t3viewhelper:typo3-fluid-format-bytes"},"argumentDefinitions":{"value":{"name":"value","type":"int","description":"The incoming data to convert, or NULL if VH children should be used","required":false,"defaultValue":null,"escape":null},"decimals":{"name":"decimals","type":"int","description":"The number of digits after the decimal point","required":false,"defaultValue":0,"escape":null},"decimalSeparator":{"name":"decimalSeparator","type":"string","description":"The decimal point character","required":false,"defaultValue":".","escape":null},"thousandsSeparator":{"name":"thousandsSeparator","type":"string","description":"The character for grouping the thousand digits","required":false,"defaultValue":",","escape":null},"units":{"name":"units","type":"string","description":"comma separated list of available units, default is LocalizationUtility::translate('viewhelper.format.bytes.units', 'fluid')","required":false,"defaultValue":null,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Bytes","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Bytes"},"format.case":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\CaseViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\CaseViewHelper","tagName":"format.case","documentation":"Modifies the case of an input string to upper- or lowercase or capitalization.\nThe default transformation will be uppercase as in `mb_convert_case`_.\n\nPossible modes are:\n\n``lower``\n Transforms the input string to lowercase\n Example: \"Hello World\" -> \"hello world\"\n\n``upper``\n Transforms the input string to uppercase\n Example: \"Hello World\" -> \"HELLO WORLD\"\n\n``capital``\n Transforms the first character of the input string to uppercase\n Example: \"hello world\" -> \"Hello world\"\n\n``uncapital``\n Transforms the input string to its first letter lower-cased\n Example: \"Hello World\" -> \"hello World\"\n\n``capitalWords``\n Transforms the input string to capitalize each word\n Example: \"hello world\" -> \"Hello World\"\n\nNote that the behavior will be the same as in the appropriate PHP function `mb_convert_case`_;\nespecially regarding locale and multibyte behavior.\n\n.. _mb_convert_case: https:\/\/www.php.net\/manual\/function.mb-convert-case.php\n\nExamples\n========\n\nDefault\n-------\n\n::\n\n Some Text with miXed case<\/f:format.case>\n\nOutput::\n\n SOME TEXT WITH MIXED CASE\n\nExample with given mode\n-----------------------\n\n::\n\n someString<\/f:format.case>\n\nOutput::\n\n SomeString","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-case"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"The input value. If not given, the evaluated child nodes will be used.","required":false,"defaultValue":null,"escape":null},"mode":{"name":"mode","type":"string","description":"The case to apply, must be one of this' CASE_* constants. Defaults to uppercase application.","required":false,"defaultValue":"upper","escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Case","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Case"},"format.cdata":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\CdataViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\CdataViewHelper","tagName":"format.cdata","documentation":"Outputs an argument\/value without any escaping and wraps it with CDATA tags.\n\nPAY SPECIAL ATTENTION TO SECURITY HERE (especially Cross Site Scripting),\nas the output is NOT SANITIZED!\n\nExamples\n========\n\nChild nodes\n-----------\n\n::\n\n {string}<\/f:format.cdata>\n\nOutput::\n\n \n\nValue attribute\n---------------\n\n::\n\n \n\nOutput::\n\n \n\nInline notation\n---------------\n\n::\n\n {string -> f:format.cdata()}\n\nOutput::\n\n ","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-cdata"},"argumentDefinitions":{"value":{"name":"value","type":"mixed","description":"The value to output","required":false,"defaultValue":null,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Cdata","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Cdata"},"format.crop":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\CropViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\CropViewHelper","tagName":"format.crop","documentation":"ViewHelper which can crop (shorten) a text.\nWhitespace within the `` element will be counted as characters.\n\n```\n \n This is some very long text\n <\/f:format.crop>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/docs.typo3.org\/permalink\/t3viewhelper:typo3-fluid-format-crop"},"argumentDefinitions":{"maxCharacters":{"name":"maxCharacters","type":"int","description":"Place where to truncate the string","required":true,"defaultValue":null,"escape":null},"append":{"name":"append","type":"string","description":"What to append, if truncation happened","required":false,"defaultValue":"…","escape":null},"respectWordBoundaries":{"name":"respectWordBoundaries","type":"bool","description":"If TRUE and division is in the middle of a word, the remains of that word is removed.","required":false,"defaultValue":true,"escape":null},"respectHtml":{"name":"respectHtml","type":"bool","description":"If TRUE the cropped string will respect HTML tags and entities. Technically that means, that cropHTML() is called rather than crop()","required":false,"defaultValue":true,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Crop","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Crop"},"format.currency":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\CurrencyViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\CurrencyViewHelper","tagName":"format.currency","documentation":"ViewHelper which formats a given float to a currency representation.\n\n```\n \n 54321\n <\/f:format.currency>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/docs.typo3.org\/permalink\/t3viewhelper:typo3-fluid-format-currency"},"argumentDefinitions":{"currencySign":{"name":"currencySign","type":"string","description":"The currency sign, eg $ or \u20ac.","required":false,"defaultValue":"","escape":null},"decimalSeparator":{"name":"decimalSeparator","type":"string","description":"The separator for the decimal point.","required":false,"defaultValue":",","escape":null},"thousandsSeparator":{"name":"thousandsSeparator","type":"string","description":"The thousands separator.","required":false,"defaultValue":".","escape":null},"prependCurrency":{"name":"prependCurrency","type":"bool","description":"Select if the currency sign should be prepended","required":false,"defaultValue":false,"escape":null},"separateCurrency":{"name":"separateCurrency","type":"bool","description":"Separate the currency sign from the number by a single space, defaults to true due to backwards compatibility","required":false,"defaultValue":true,"escape":null},"decimals":{"name":"decimals","type":"int","description":"Set decimals places.","required":false,"defaultValue":2,"escape":null},"useDash":{"name":"useDash","type":"bool","description":"Use the dash instead of decimal 00","required":false,"defaultValue":false,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Currency","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Currency"},"format.date":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\DateViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\DateViewHelper","tagName":"format.date","documentation":"ViewHelper to format an object implementing `\\DateTimeInterface` into human-readable output.\n\n```\n {dateObject}<\/f:format.date>\n -1 year<\/f:format.date>\n {dateObject}<\/f:format.date>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"\\DateTimeInterface"},"argumentDefinitions":{"date":{"name":"date","type":"mixed","description":"Either an object implementing DateTimeInterface or a string that is accepted by DateTime constructor","required":false,"defaultValue":null,"escape":null},"format":{"name":"format","type":"string","description":"Format String which is taken to format the Date\/Time","required":false,"defaultValue":"","escape":null},"pattern":{"name":"pattern","type":"string","description":"Format date based on unicode ICO format pattern given see https:\/\/unicode-org.github.io\/icu\/userguide\/format_parse\/datetime\/#datetime-format-syntax. If both \"pattern\" and \"format\" arguments are given, pattern will be used.","required":false,"defaultValue":null,"escape":null},"locale":{"name":"locale","type":"string","description":"A locale format such as \"nl-NL\" to format the date in a specific locale, if none given, uses the current locale of the current request. Only works when pattern argument is given","required":false,"defaultValue":null,"escape":null},"base":{"name":"base","type":"mixed","description":"A base time (an object implementing DateTimeInterface or a string) used if $date is a relative date specification. Defaults to current time.","required":false,"defaultValue":null,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Date","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Date"},"format.html":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\HtmlViewHelper","tagName":"format.html","documentation":"ViewHelper to render a string which can contain HTML markup\nby passing it to a TYPO3 `parseFunc`. This can sanitize\nunwanted HTML tags and attributes, and keep wanted HTML syntax and\ntake care of link substitution and other parsing.\nEither specify a path to the TypoScript setting or set the `parseFunc` options directly.\nBy default, `lib.parseFunc_RTE` is used to parse the string.\n\n```\n \n {$project} is a cool CMS<\/b> (TYPO3<\/a>).\n <\/f:format.html>\n```\n\n**Note:** The ViewHelper must not be used in backend context, as it triggers frontend logic.\nInstead, use `` within backend context to secure a given HTML string\nor `` to parse links in HTML.","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/docs.typo3.org\/permalink\/t3tsref:parsefunc"},"argumentDefinitions":{"parseFuncTSPath":{"name":"parseFuncTSPath","type":"string","description":"Path to the TypoScript parseFunc setup.","required":false,"defaultValue":"lib.parseFunc_RTE","escape":null},"data":{"name":"data","type":"mixed","description":"Initialize the content object with this set of data. Either an array or object.","required":false,"defaultValue":null,"escape":null},"current":{"name":"current","type":"string","description":"Initialize the content object with this value for current property.","required":false,"defaultValue":null,"escape":null},"currentValueKey":{"name":"currentValueKey","type":"string","description":"Define the value key, used to locate the current value for the content object","required":false,"defaultValue":null,"escape":null},"table":{"name":"table","type":"string","description":"The table name associated with the \"data\" argument.","required":false,"defaultValue":"","escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Html","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Html"},"format.htmlentities":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlentitiesViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\HtmlentitiesViewHelper","tagName":"format.htmlentities","documentation":"ViewHelper to apply `htmlentities()` escaping to a value,\ntransforming all HTML special characters to entity representations\n(like `\"` to `"`).\n\n```\n {textWithHtml}<\/f:format.htmlentities>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/www.php.net\/manual\/function.htmlentities.php"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"string to format","required":false,"defaultValue":null,"escape":null},"keepQuotes":{"name":"keepQuotes","type":"bool","description":"If TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag).","required":false,"defaultValue":false,"escape":null},"encoding":{"name":"encoding","type":"string","description":"Define the encoding used when converting characters (Default: UTF-8","required":false,"defaultValue":null,"escape":null},"doubleEncode":{"name":"doubleEncode","type":"bool","description":"If FALSE existing html entities won't be encoded, the default is to convert everything.","required":false,"defaultValue":true,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Htmlentities","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Htmlentities"},"format.htmlentitiesDecode":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlentitiesDecodeViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\HtmlentitiesDecodeViewHelper","tagName":"format.htmlentitiesDecode","documentation":"ViewHelper to apply `html_entity_decode()` to a value,\ntransforming HTML entity representations back into HTML special characters\n(like `"` to `\"`).\n\n```\n {textWithEntities}<\/f:format.htmlentitiesDecode>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/www.php.net\/html_entity_decode"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"string to format","required":false,"defaultValue":null,"escape":null},"keepQuotes":{"name":"keepQuotes","type":"bool","description":"If TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag).","required":false,"defaultValue":false,"escape":null},"encoding":{"name":"encoding","type":"string","description":"Define the encoding used when converting characters (Default: UTF-8).","required":false,"defaultValue":null,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\HtmlentitiesDecode","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/HtmlentitiesDecode"},"format.htmlspecialchars":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\HtmlspecialcharsViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\HtmlspecialcharsViewHelper","tagName":"format.htmlspecialchars","documentation":"Applies PHP ``htmlspecialchars()`` escaping to a value.\n\nSee http:\/\/www.php.net\/manual\/function.htmlspecialchars.php\n\nExamples\n========\n\nDefault notation\n----------------\n\n::\n\n {text}<\/f:format.htmlspecialchars>\n\nOutput::\n\n Text with & \" ' < > * replaced by HTML entities (htmlspecialchars applied).\n\nInline notation\n---------------\n\n::\n\n {text -> f:format.htmlspecialchars(encoding: 'ISO-8859-1')}\n\nOutput::\n\n Text with & \" ' < > * replaced by HTML entities (htmlspecialchars applied).","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-htmlspecialchars"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"Value to format","required":false,"defaultValue":null,"escape":null},"keepQuotes":{"name":"keepQuotes","type":"boolean","description":"If true quotes will not be replaced (ENT_NOQUOTES)","required":false,"defaultValue":false,"escape":null},"encoding":{"name":"encoding","type":"string","description":"Encoding","required":false,"defaultValue":"UTF-8","escape":null},"doubleEncode":{"name":"doubleEncode","type":"boolean","description":"If false, html entities will not be encoded","required":false,"defaultValue":true,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Htmlspecialchars","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Htmlspecialchars"},"format.json":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\JsonViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\JsonViewHelper","tagName":"format.json","documentation":"Wrapper for PHPs :php:`json_encode` function.\nSee https:\/\/www.php.net\/manual\/function.json-encode.php.\n\nExamples\n========\n\nEncoding a view variable\n------------------------\n\n::\n\n {someArray -> f:format.json()}\n\n``[\"array\",\"values\"]``\nDepending on the value of ``{someArray}``.\n\nAssociative array\n-----------------\n\n::\n\n {f:format.json(value: {foo: 'bar', bar: 'baz'})}\n\n``{\"foo\":\"bar\",\"bar\":\"baz\"}``\n\nNon associative array with forced object\n----------------------------------------\n\n::\n\n {f:format.json(value: {0: 'bar', 1: 'baz'}, forceObject: true)}\n\n``{\"0\":\"bar\",\"1\":\"baz\"}``","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-json"},"argumentDefinitions":{"value":{"name":"value","type":"mixed","description":"The incoming data to convert, or null if VH children should be used","required":false,"defaultValue":null,"escape":null},"forceObject":{"name":"forceObject","type":"bool","description":"Outputs an JSON object rather than an array","required":false,"defaultValue":false,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Json","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Json"},"format.nl2br":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\Nl2brViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\Nl2brViewHelper","tagName":"format.nl2br","documentation":"Wrapper for PHPs :php:`nl2br` function.\nSee https:\/\/www.php.net\/manual\/function.nl2br.php.\n\nExamples\n========\n\nDefault\n-------\n\n::\n\n {text_with_linebreaks}<\/f:format.nl2br>\n\nText with line breaks replaced by ``
``\n\nInline notation\n---------------\n\n::\n\n {text_with_linebreaks -> f:format.nl2br()}\n\nText with line breaks replaced by ``
``","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-nl2br"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"string to format","required":false,"defaultValue":null,"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Nl2br","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Nl2br"},"format.number":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\NumberViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\NumberViewHelper","tagName":"format.number","documentation":"Formats a number with custom precision, decimal point and grouped thousands.\nSee https:\/\/www.php.net\/manual\/function.number-format.php.\n\nExamples\n========\n\nDefaults\n--------\n\n::\n\n 423423.234<\/f:format.number>\n\n``423,423.20``\n\nWith all parameters\n-------------------\n\n::\n\n \n 423423.234\n <\/f:format.number>\n\n``423.423,2``","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-number"},"argumentDefinitions":{"decimals":{"name":"decimals","type":"int","description":"The number of digits after the decimal point","required":false,"defaultValue":2,"escape":null},"decimalSeparator":{"name":"decimalSeparator","type":"string","description":"The decimal point character","required":false,"defaultValue":".","escape":null},"thousandsSeparator":{"name":"thousandsSeparator","type":"string","description":"The character for grouping the thousand digits","required":false,"defaultValue":",","escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Number","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Number"},"format.padding":{"className":"TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\PaddingViewHelper","namespace":"TYPO3\\CMS\\Fluid\\ViewHelpers","name":"Format\\PaddingViewHelper","tagName":"format.padding","documentation":"ViewHelper to format a string to specific lengths, by using PHPs `str_pad` function.\n\n```\n TYPO3<\/f:format.padding>\n```","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3\/CMS\/Fluid\/ViewHelpers","docTags":{"@see":"https:\/\/www.php.net\/manual\/en\/function.str-pad"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"string to format","required":false,"defaultValue":null,"escape":null},"padLength":{"name":"padLength","type":"int","description":"Length of the resulting string. If the value of pad_length is negative or less than the length of the input string, no padding takes place.","required":true,"defaultValue":null,"escape":null},"padString":{"name":"padString","type":"string","description":"The padding string","required":false,"defaultValue":" ","escape":null},"padType":{"name":"padType","type":"string","description":"Append the padding at this site (Possible values: right,left,both. Default: right)","required":false,"defaultValue":"right","escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Padding","namespaceWithoutSuffix":"TYPO3\\CMS\\Fluid","uri":"Global\/Format\/Padding"},"format.printf":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\PrintfViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\PrintfViewHelper","tagName":"format.printf","documentation":"A ViewHelper for formatting values with printf. Either supply an array for\nthe arguments or a single value.\n\nSee http:\/\/www.php.net\/manual\/en\/function.sprintf.php\n\nExamples\n========\n\nScientific notation\n-------------------\n\n::\n\n %.3e<\/f:format.printf>\n\nOutput::\n\n 3.625e+8\n\nArgument swapping\n-----------------\n\n::\n\n %2$s is great, TYPO%1$d too. Yes, TYPO%1$d is great and so is %2$s!<\/f:format.printf>\n\nOutput::\n\n Kasper is great, TYPO3 too. Yes, TYPO3 is great and so is Kasper!\n\nSingle argument\n---------------\n\n::\n\n We love %s<\/f:format.printf>\n\n\nOutput::\n\n We love TYPO3\n\nInline notation\n---------------\n\n::\n\n {someText -> f:format.printf(arguments: {1: 'TYPO3'})}\n\n\nOutput::\n\n We love TYPO3","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-printf"},"argumentDefinitions":{"value":{"name":"value","type":"string","description":"String to format","required":false,"defaultValue":null,"escape":null},"arguments":{"name":"arguments","type":"array","description":"The arguments for vsprintf","required":false,"defaultValue":[],"escape":null}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Printf","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Printf"},"format.raw":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\RawViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\RawViewHelper","tagName":"format.raw","documentation":"Outputs an argument\/value without any escaping. Is normally used to output\nan ObjectAccessor which should not be escaped, but output as-is.\n\nPAY SPECIAL ATTENTION TO SECURITY HERE (especially Cross Site Scripting),\nas the output is NOT SANITIZED!\n\nExamples\n========\n\nChild nodes\n-----------\n\n::\n\n {string}<\/f:format.raw>\n\nOutput::\n\n (Content of ``{string}`` without any conversion\/escaping)\n\nValue attribute\n---------------\n\n::\n\n \n\nOutput::\n\n (Content of ``{string}`` without any conversion\/escaping)\n\nInline notation\n---------------\n\n::\n\n {string -> f:format.raw()}\n\nOutput::\n\n (Content of ``{string}`` without any conversion\/escaping)","xmlNamespace":"http:\/\/typo3.org\/ns\/TYPO3Fluid\/Fluid\/ViewHelpers","docTags":{"@api":"","@see":"https:\/\/docs.typo3.org\/permalink\/fluid:typo3fluid-fluid-format-raw"},"argumentDefinitions":{"value":{"name":"value","type":"mixed","description":"The value to output","required":false,"defaultValue":null,"escape":false}},"allowsArbitraryArguments":false,"nameWithoutSuffix":"Format\\Raw","namespaceWithoutSuffix":"TYPO3Fluid\\Fluid","uri":"Global\/Format\/Raw"},"format.stripTags":{"className":"TYPO3Fluid\\Fluid\\ViewHelpers\\Format\\StripTagsViewHelper","namespace":"TYPO3Fluid\\Fluid\\ViewHelpers","name":"Format\\StripTagsViewHelper","tagName":"format.stripTags","documentation":"Removes tags from the given string (applying PHPs :php:`strip_tags()` function)\nSee https:\/\/www.php.net\/manual\/function.strip-tags.php.\n\nExamples\n========\n\nDefault notation\n----------------\n\n::\n\n Some Text with Tags<\/b> and an Ümlaut.<\/f:format.stripTags>\n\nSome Text with Tags and an Ümlaut. :php:`strip_tags()` applied.\n\n.. note::\n Encoded entities are not decoded.\n\nDefault notation with allowedTags\n---------------------------------\n\n::\n\n