12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\ResourceModel\Order\Address;
- use Magento\Sales\Api\Data\OrderAddressSearchResultInterface;
- use \Magento\Sales\Model\ResourceModel\Order\Collection\AbstractCollection;
- /**
- * Flat sales order payment collection
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Collection extends AbstractCollection implements OrderAddressSearchResultInterface
- {
- /**
- * Event prefix
- *
- * @var string
- */
- protected $_eventPrefix = 'sales_order_address_collection';
- /**
- * Event object
- *
- * @var string
- */
- protected $_eventObject = 'order_address_collection';
- /**
- * Model initialization
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(
- \Magento\Sales\Model\Order\Address::class,
- \Magento\Sales\Model\ResourceModel\Order\Address::class
- );
- }
- /**
- * Redeclare after load method for dispatch event
- *
- * @return $this
- */
- protected function _afterLoad()
- {
- parent::_afterLoad();
- $this->_eventManager->dispatch($this->_eventPrefix . '_load_after', [$this->_eventObject => $this]);
- return $this;
- }
- }
|