Neos\FluidAdaptor\Core\ViewHelper\AbstractConditionViewHelper::initializeArguments PHP 메소드

initializeArguments() 공개 메소드

Initializes the "then" and "else" arguments
public initializeArguments ( )
    public function initializeArguments()
    {
        $this->registerArgument('then', 'mixed', 'Value to be returned if the condition if met.', false);
        $this->registerArgument('else', 'mixed', 'Value to be returned if the condition if not met.', false);
        $this->registerArgument('condition', 'boolean', 'Condition expression conforming to Fluid boolean rules', false, false);
    }