FluidTYPO3\Vhs\ViewHelpers\Once\AbstractOnceViewHelper::initializeArguments PHP Метод

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

Initialize arguments
public initializeArguments ( ) : void
Результат void
    public function initializeArguments()
    {
        parent::initializeArguments();
        $this->registerArgument('identifier', 'string', 'Identity of this condition - if used in other places, the condition applies to the same identity in the ' . 'storage (i.e. cookie name or session key)');
        $this->registerArgument('lockToDomain', 'boolean', 'If TRUE, locks this condition to a specific domain, i.e. the storage of $identity is associated with ' . 'a domain. If same identity is also used without domain lock, it matches any domain locked condition', false, false);
        $this->registerArgument('ttl', 'integer', 'Time-to-live for skip registration, number of seconds. After this expires the registration is unset', false, 86400);
    }