Important

We are updating the images for OroCommerce version 6.1 to align with the latest changes in the back-office design. During this transition, some images may still show older versions. Thank you for your patience as we work to update all visuals to reflect these changes.

Current Localization 

Receive Current Localization 

To receive the current localization, use Oro\Bundle\LocaleBundle\Helper\LocalizationHelper::getCurrentLocalization() or oro_locale.helper.localization->getCurrentLocalization().

Provide Current Localization 

To provide the current localization, create a custom extension, implement Oro\Bundle\LocaleBundle\Extension\CurrentLocalizationExtensionInterface, and register it by tag oro_locale.extension.current_localization.

services:
    ...
    acme_demo.extension.current_localization:
        class: Acme\Bundle\DemoBundle\Extension\CurrentLocalizationExtension
        arguments:
            ...
        tags:
            - { name: oro_locale.extension.current_localization }
namespace Acme\Bundle\DemoBundle\Extension;

use Oro\Bundle\LocaleBundle\Entity\Localization;
use Oro\Bundle\LocaleBundle\Extension\CurrentLocalizationExtensionInterface;

class CurrentLocalizationExtension implements CurrentLocalizationExtensionInterface
{
    /**
     * @return Localization|null
     */
    public function getCurrentLocalization()
    {
        // your custom logic to receive current localization
    }
}