handler = $handler; } function getListingsInSegment($data) { if(!isset($data['filter']['segment'])) { throw new \InvalidArgumentException('Missing segment id'); } $segment = Segment::findOne($data['filter']['segment']); return $this->getListings($data, $segment ?: null); } private function getListings($data, Segment $segment = null) { if(!$segment || $segment->type === Segment::TYPE_DEFAULT || $segment->type === Segment::TYPE_WP_USERS) { return $listing_data = $this->handler->get('\MailPoet\Models\Subscriber', $data); } $handlers = Hooks::applyFilters('mailpoet_get_subscribers_listings_in_segment_handlers', array()); foreach($handlers as $handler) { $listings = $handler->get($segment, $data); if($listings) { return $listings; } } throw new \InvalidArgumentException('No handler found for segment'); } }