woocommerce_wpml = $woocommerce_wpml; $this->next_step_url = $next_step_url; } public function get_model() { $custom_posts_unlocked = apply_filters( 'wpml_get_setting', false, 'custom_posts_unlocked_option' ); $custom_posts_sync = apply_filters( 'wpml_get_setting', false, 'custom_posts_sync_option' ); $is_display_as_translated_checked = isset( $custom_posts_unlocked['product'], $custom_posts_sync['product'] ) && 1 === $custom_posts_unlocked['product'] && WPML_CONTENT_TYPE_DISPLAY_AS_IF_TRANSLATED === $custom_posts_sync['product']; $model = [ 'strings' => [ 'step_id' => 'translation_options_step', 'heading' => __( 'Translation Options', 'woocommerce-multilingual' ), 'description' => __( "Normally, you first create products in the site's default language and then you translate them. If products are not translated, do you want to show them on other languages?", 'woocommerce-multilingual' ), 'label_display_as_translated' => sprintf( __( 'Yes - show products even if they are not yet translated (%1$smore on how this will work%2$s)', 'woocommerce-multilingual' ), '', '' ), 'label_translated' => __( 'No - only display products on other languages once they are translated', 'woocommerce-multilingual' ), 'description_footer' => __( 'Note, to change this later, go to %1$sWPML » Settings » Post Types Translation.%2$s', 'woocommerce-multilingual' ), 'continue' => __( 'Continue', 'woocommerce-multilingual' ), ], 'is_display_as_translated_checked' => $is_display_as_translated_checked, 'continue_url' => $this->next_step_url, ]; return $model; } protected function init_template_base_dir() { $this->template_paths = [ WCML_PLUGIN_PATH . '/templates/', ]; } public function get_template() { return '/setup/translation-options.twig'; } }