| Current Path : /var/www/html/vendor/magento/module-backend/Controller/Adminhtml/ |
| Current File : /var/www/html/vendor/magento/module-backend/Controller/Adminhtml/System.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Controller\Adminhtml;
use Magento\Backend\App\AbstractAction;
/**
* System admin controller
*
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class System extends AbstractAction
{
/**
* Authorization level of a basic admin session
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Magento_Backend::system';
}