product = $product; $this->config = $config; } /** * Get Regular Price. * * @return string */ public function regular_price() { return $this->product->get_regular_price(); } /** * Get Price. * * @return string */ public function price() { return $this->product->get_price(); } /** * Get Sale Price. * * @return string */ public function sale_price() { return $this->product->get_sale_price(); } }