12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
|
|
class WPML_Media_Attachment_By_URL_Factory {
|
|
|
|
public function create( $url, $language ) {
|
|
global $wpdb;
|
|
|
|
return new WPML_Media_Attachment_By_URL( $wpdb, $url, $language );
|
|
}
|
|
|
|
}
|