Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Currency.php
Go to the documentation of this file.
1 <?php
13 
18 abstract class Currency extends \Magento\Backend\App\Action
19 {
25  const ADMIN_RESOURCE = 'Magento_CurrencySymbol::currency_rates';
26 
32  protected $_coreRegistry = null;
33 
38  public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $coreRegistry)
39  {
40  $this->_coreRegistry = $coreRegistry;
41  parent::__construct($context);
42  }
43 }
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $coreRegistry)
Definition: Currency.php:38