user_helper = $user_helper; $this->product_helper = $product_helper; $this->current_page_helper = $current_page_helper; } /** * Returns the ID. * * @return string The ID. */ public function get_id() { return self::ID; } /** * Returns the requested pagination priority. Lower means earlier. * * @return int The priority. */ public function get_priority() { return 20; } /** * Returns whether this introduction should show. * We no longer show this introduction, so we always return false. * * @return bool Whether this introduction should show. */ public function should_show() { return false; } }