product_helper = $product_helper; $this->options_helper = $options_helper; } /** * Returns the ID. * * @deprecated 23.2 * @codeCoverageIgnore * * @return string */ public function get_id() { \_deprecated_function( __METHOD__, 'Yoast SEO 23.2' ); return 'ai-generate-titles-and-descriptions-upsell'; } /** * Returns the unique name. * * @deprecated 21.6 * @codeCoverageIgnore * * @return string */ public function get_name() { \_deprecated_function( __METHOD__, 'Yoast SEO 21.6', 'Please use get_id() instead' ); return $this->get_id(); } /** * Returns the requested pagination priority. Lower means earlier. * * @deprecated 23.2 * @codeCoverageIgnore * * @return int */ public function get_priority() { \_deprecated_function( __METHOD__, 'Yoast SEO 23.2' ); return 10; } /** * Returns whether this introduction should show. * * @deprecated 23.2 * @codeCoverageIgnore * * @return bool */ public function should_show() { \_deprecated_function( __METHOD__, 'Yoast SEO 23.2' ); // Outdated feature introduction. return false; } }