Notification.php 454 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Adminhtml AdminNotification controller
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\AdminNotification\Controller\Adminhtml;
  9. /**
  10. * @api
  11. * @since 100.0.2
  12. */
  13. abstract class Notification extends \Magento\Backend\App\AbstractAction
  14. {
  15. /**
  16. * Authorization level of a basic admin session
  17. */
  18. const ADMIN_RESOURCE = 'Magento_AdminNotification::show_list';
  19. }