Table.php 722 B

12345678910111213141516171819202122232425262728293031323334
  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\Create\Totals;
  7. use Magento\Store\Model\ResourceModel\Website\Collection;
  8. /**
  9. * Adminhtml sales order create totals table block
  10. *
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. */
  13. class Table extends \Magento\Backend\Block\Template
  14. {
  15. /**
  16. * Website collection
  17. *
  18. * @var Collection|null
  19. */
  20. protected $_websiteCollection = null;
  21. /**
  22. * Constructor
  23. *
  24. * @return void
  25. */
  26. protected function _construct()
  27. {
  28. parent::_construct();
  29. $this->setId('sales_order_create_totals_table');
  30. }
  31. }