FluidTYPO3\Flux\ViewHelpers\Wizard\ListViewHelper::initializeArguments PHP Method

initializeArguments() public method

Initialize arguments
public initializeArguments ( ) : void
return void
    public function initializeArguments()
    {
        parent::initializeArguments();
        $this->registerArgument('table', 'string', 'Table name that records are added to', TRUE);
        $this->registerArgument('pid', 'mixed', 'Storage page UID or (as is default) ###CURRENT_PID###', FALSE, '###CURRENT_PID###');
        $this->registerArgument('width', 'integer', 'Width of the popup window', FALSE, 500);
        $this->registerArgument('height', 'integer', 'height of the popup window', FALSE, 500);
    }