class-wpml-translation-batch-factory.php 260 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php class WPML_Translation_Batch_Factory { /** * @param int $id * * @return WPML_Translation_Batch */ public function create( $id ) { global $sitepress; $wpdb = $sitepress->get_wpdb(); return new WPML_Translation_Batch( $wpdb, $id ); } }