Neos\FluidAdaptor\Core\Widget\AbstractWidgetViewHelper::initializeWidgetIdentifier PHP Method

initializeWidgetIdentifier() private method

The widget identifier is unique on the current page, and is used in the URI as a namespace for the widget's arguments.
private initializeWidgetIdentifier ( ) : void
return void the widget identifier for this widget
    private function initializeWidgetIdentifier()
    {
        $widgetIdentifier = $this->hasArgument('widgetId') ? $this->arguments['widgetId'] : strtolower(str_replace('\\', '-', get_class($this)));
        $this->widgetContext->setWidgetIdentifier($widgetIdentifier);
    }