12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sitemap\Controller\Adminhtml;
- /**
- * XML sitemap controller
- */
- abstract class Sitemap extends \Magento\Backend\App\Action
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_Sitemap::sitemap';
- /**
- * Init actions
- *
- * @return $this
- */
- protected function _initAction()
- {
- // load layout, set active menu and breadcrumbs
- $this->_view->loadLayout();
- $this->_setActiveMenu(
- 'Magento_Sitemap::catalog_sitemap'
- )->_addBreadcrumb(
- __('Catalog'),
- __('Catalog')
- )->_addBreadcrumb(
- __('XML Sitemap'),
- __('XML Sitemap')
- );
- return $this;
- }
- }
|