12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Dashboard admin controller
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Backend\Controller\Adminhtml;
- abstract class Dashboard extends \Magento\Backend\App\Action
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_Backend::dashboard';
- }
|