FluidTYPO3\Vhs\ViewHelpers\Asset\AbstractAssetViewHelper::assertFluidEnabled PHP Method

assertFluidEnabled() public method

Returns TRUE of settings specify that the source of this Asset should be rendered as if it were a Fluid template, using variables from the "arguments" attribute
public assertFluidEnabled ( ) : boolean
return boolean
    public function assertFluidEnabled()
    {
        $settings = $this->getAssetSettings();
        if (true === (isset($settings['fluid']) && $settings['fluid'] > 0)) {
            return true;
        }
        return false;
    }