woocommerce-multilingual
/
classes
/
media
/
class-wcml-update-product-gallery-translation-factory.php
Wrapper
1 month ago
class-wcml-product-gallery-filter-factory.php
3 years ago
class-wcml-product-gallery-filter.php
1 month ago
class-wcml-product-image-filter-factory.php
3 years ago
class-wcml-product-image-filter.php
1 month ago
class-wcml-update-product-gallery-translation-factory.php
5 years ago
class-wcml-update-product-gallery-translation.php
1 month ago
class-wml-append-gallery-to-post-media-ids-factory.php
5 years ago
class-wml-append-gallery-to-post-media-ids.php
1 month ago
class-wcml-update-product-gallery-translation-factory.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | class WCML_Update_Product_Gallery_Translation_Factory implements IWPML_Backend_Action_Loader { |
| 4 | |
| 5 | public function create() { |
| 6 | global $sitepress; |
| 7 | |
| 8 | if ( class_exists( 'WPML_Media_Usage_Factory' ) ) { |
| 9 | return new WCML_Update_Product_Gallery_Translation( |
| 10 | new WPML_Translation_Element_Factory( $sitepress ), |
| 11 | new WPML_Media_Usage_Factory() |
| 12 | ); |
| 13 | } |
| 14 | |
| 15 | return null; |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |