FluidTYPO3\Flux\ViewHelpers\Field\TextViewHelper::initializeArguments PHP Метод

initializeArguments() публичный Метод

Initialize
public initializeArguments ( ) : void
Результат void
    public function initializeArguments()
    {
        parent::initializeArguments();
        $this->registerArgument('validate', 'string', 'FlexForm-type validation configuration for this input', FALSE, 'trim');
        $this->registerArgument('cols', 'int', 'Number of columns in editor', FALSE, 85);
        $this->registerArgument('rows', 'int', 'Number of rows in editor', FALSE, 10);
        $this->registerArgument('defaultExtras', 'string', 'FlexForm-syntax "defaultExtras" definition, example: "richtext[*]:rte_transform[mode=ts_css]"', FALSE, '');
        $this->registerArgument('enableRichText', 'boolean', 'Shortcut for adding value of TS plugin.tx_flux.settings.flexform.rteDefaults to "defaultExtras"', FALSE, FALSE);
        $this->registerArgument('renderType', 'string', 'Render type allows you to modify the behaviour of text field. At the moment only t3editor and none (works as disabled) are supported but you can create your own. More information: https://docs.typo3.org/typo3cms/TCAReference/Reference/Columns/Text/Index.html#rendertype', FALSE, '');
        $this->registerArgument('format', 'string', 'Format is used with renderType and, at the moment, is just useful if renderType is equals to t3editor. At the moment possible values are:  html, typoscript, javascript, css, xml, html, php, sparql, mixed. More information: https://docs.typo3.org/typo3cms/TCAReference/Reference/Columns/Text/Index.html#format', FALSE, '');
    }