wp = $wp; } public function init() { $this->wp->addAction( 'mailpoet_get_segment_filters', [$this, 'getSegmentFilters'] ); } public function getSegmentFilters($segmentId) { $singleSegmentLoader = new SingleSegmentLoader(new DBMapper()); return $singleSegmentLoader->load($segmentId)->getFilters(); } }