You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
385 B
18 lines
385 B
<?php
|
|
|
|
class WCML_Update_Product_Gallery_Translation_Factory implements IWPML_Backend_Action_Loader {
|
|
|
|
public function create() {
|
|
global $sitepress;
|
|
|
|
if ( class_exists( 'WPML_Media_Usage_Factory' ) ) {
|
|
return new WCML_Update_Product_Gallery_Translation(
|
|
new WPML_Translation_Element_Factory( $sitepress ),
|
|
new WPML_Media_Usage_Factory()
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|