Magento 2 Registry & Register: How to Use?

Magento 2 registry is the next topic Mageplaza wants to introduce in the series of this module development. Both Magento 1 and Magento 2 authorize you to register global variable that supports the static registry method.

To implement that, maybe you used to work with Mage::register() and Mage::registry() in Magento 1, but now in Magento 2 platform, there is a difference in running the registry. You will be required to apply \Magento\Framework\Registry, that accepts the settings and the registry of the restored data. However, first of all, you need to learn how to create or use the own custom registry. This article also shows you how to retrieve global Magento 2 registry objects like current product, category, cms page, cms block, etc.

And that is lucky because all of them will be referred here. The topic today will help you be familiar with Magento 2 registry objects.

Hire Magento Developers

What you need to do is only describing desired features of the Magento website, we will help you to build the store that ticks all the boxes!

Get Started
hire magento developers

Please follow the following code snippet:

How to get and set custom attribute in registry / register

/**
  * @var \Magento\Framework\Registry
  */
 
 protected $_registry;
 
 /**
 * ...
 * ...
 * @param \Magento\Framework\Registry $registry,
 */
public function __construct(
    ...,
    ...,
    \Magento\Framework\Registry $registry,
    ...
) {
    $this->_registry = $registry;
    ...
    ...
}
 
 /**
 * Setting custom variable in registry to be used
 *
 */
 
public function setCustomVariable()
{
     $this->registry->register('custom_var', 'Added Value');
}
 
/**
 * Retrieving custom variable from registry
 * @return string
 */
public function getCustomVariable()
{
     return $this->registry->registry('custom_var');
}

How to get registry of current Product, Category, CMS Page


/**
  * @var \Magento\Framework\Registry
  */
 
 protected $_registry;
 
 /**
 * ...
 * ...
 * @param \Magento\Framework\Registry $registry,
 */
public function __construct(
    ...,
    ...,
    \Magento\Framework\Registry $registry,
    ...
) {
    $this->_registry = $registry;
    ...
    ...
}

/**
 * Return catalog product object
 *
 * @return \Magento\Catalog\Model\Product
 */
 
public function getProduct()
{
    return $this->_registry->registry('current_product');
}
 
/**
 * Return catalog current category object
 *
 * @return \Magento\Catalog\Model\Category
 */
 
public function getCurrentCategory()
{
    return $this->_registry->registry('current_category');
}


/**
 * Return catalog current cms page object
 *
 */
public function getCurrentCategory()
{
    return $this->_registry->registry('current_cms_page');
}

Final words

With this instruction, you can achieve the best results of Magento 2 registry. Thanks for your reading and I hope you are happy with it.

Happy coding!

Image Description
Sam is the CEO & co-founder of Mageplaza, a company established to support Magento merchants with different powerful tools and resources. Sam Nguyen is also the CEO & founder of Avada Commerce, an e-commerce solution provider headquartered in Singapore – aiming to support more than a million online businesses to grow and develop.

People also searched for

  • magento 2 registry
  • magento 2 register
  • magento 2 registry not working
  • magento 2 registry key already exists
  • magento 2 registry current category
  • magento 2 registry current product
  • magento 2 registry is undefined
  • magento 2 register variable
  • magento 2 registry product
  • magento 2 registry set get
  • magento 2 registry get current product
  • magento 2 registry
  • magento 2 change registry value
  • magento 2 mage registry current category
  • magento 2 registry database
  • magento 2 registry.get(eventname)
  • magento 2 wedding registry extension
  • magento 2 registry functions
  • magento 2 gift registry free
  • magento 2 get registry value
  • magento type error registry is undefined
  • mage registry in magento 2
  • magento 2 prototype registry is undefined
  • magento 2 check if registry key exists
  • magento 2 prototype js registry is undefined
  • magento 2 prototype typeerror registry is undefined
  • 2.3.x, 2.4.x
x