class-wcml-relevanssi.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | class WCML_Relevanssi implements \IWPML_Action { |
| 4 | |
| 5 | public function add_hooks() { |
| 6 | add_action( 'wcml_update_extra_fields', [ $this, 'index_product' ], 10, 4 ); |
| 7 | } |
| 8 | |
| 9 | public function index_product( $product_id, $tr_product_id, $translations, $target_language ) { |
| 10 | $current_language = apply_filters( 'wpml_current_language', null ); |
| 11 | do_action( 'wpml_switch_language', $target_language ); |
| 12 | relevanssi_insert_edit( $tr_product_id ); |
| 13 | do_action( 'wpml_switch_language', $current_language ); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |