Index.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currencysymbol;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Index extends \Magento\CurrencySymbol\Controller\Adminhtml\System\Currencysymbol implements HttpGetActionInterface
  10. {
  11. /**
  12. * Show Currency Symbols Management dialog
  13. *
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. // set active menu and breadcrumbs
  19. $this->_view->loadLayout();
  20. $this->_setActiveMenu(
  21. 'Magento_CurrencySymbol::system_currency_symbols'
  22. )->_addBreadcrumb(
  23. __('System'),
  24. __('System')
  25. )->_addBreadcrumb(
  26. __('Manage Currency Rates'),
  27. __('Manage Currency Rates')
  28. );
  29. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Currency Symbols'));
  30. $this->_view->renderLayout();
  31. }
  32. }