MediaAttachmentByUrlFactory.php 204 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <?php namespace WPML\MediaTranslation; class MediaAttachmentByUrlFactory { public function create( $url, $language ) { global $wpdb; return new MediaAttachmentByUrl( $wpdb, $url, $language ); } }