ids = $ids; $this->config = $config; $this->structure = $structure; } /** * Get Feed Body. * * @return false|string * @throws \Exception Exception. */ public function get_feed() { $feed = ProductFactory::get_content( $this->ids, $this->config, $this->structure ); return $feed->make_body(); } /** * Get Feed Header. * * @return mixed */ public function get_header() { $feed = FileFactory::get_file_data( $this->structure, $this->config ); $feed = $feed->make_header_footer(); return $feed['header']; } /** * Get Feed Footer. * * @return mixed */ public function get_footer() { $feed = FileFactory::get_file_data( $this->structure, $this->config ); $feed = $feed->make_header_footer(); return $feed['footer']; } }