Magento 2 Registry & Register: How to Use?
Vinh Jacker | 12-18-2024
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 StartedPlease 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!