Copyright.php 415 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Block\Page;
  7. /**
  8. * Copyright footer block
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Copyright extends \Magento\Backend\Block\Template
  14. {
  15. /**
  16. * Path to template file in theme
  17. *
  18. * @var string
  19. */
  20. protected $_template = 'Magento_Backend::page/copyright.phtml';
  21. }