Giftoptions.php 617 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\View;
  7. /**
  8. * Adminhtml sales order view gift options block
  9. *
  10. * @api
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. * @codeCoverageIgnore
  13. * @since 100.0.2
  14. */
  15. class Giftoptions extends \Magento\Backend\Block\Template
  16. {
  17. /**
  18. * Get order item object from parent block
  19. *
  20. * @return \Magento\Sales\Model\Order\Item
  21. */
  22. public function getItem()
  23. {
  24. return $this->getParentBlock()->getData('item');
  25. }
  26. }