Collection.php 492 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Store\Model\ResourceModel\Website\Grid;
  7. /**
  8. * Grid collection
  9. */
  10. class Collection extends \Magento\Store\Model\ResourceModel\Website\Collection
  11. {
  12. /**
  13. * Join website and store names
  14. *
  15. * @return $this
  16. */
  17. protected function _initSelect()
  18. {
  19. parent::_initSelect();
  20. $this->joinGroupAndStore();
  21. return $this;
  22. }
  23. }