Form.php 446 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Block\Adminhtml\Order\View;
  7. /**
  8. * Adminhtml sales order view plane
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Form extends \Magento\Backend\Block\Template
  13. {
  14. /**
  15. * Template
  16. *
  17. * @var string
  18. */
  19. protected $_template = 'Magento_Sales::order/view/form.phtml';
  20. }