/home/techb158/primomovers.ca/wp-content/plugins/polylang-pro/modules/media
Edit: /home/techb158/primomovers.ca/wp-content/plugins/polylang-pro/modules/media/media-bulk-option.php (1270B)
posts = $posts;
}
/**
* Checks whether the option should be selectable by the user.
*
* @since 2.7
*
* @return bool
*/
public function is_available() {
$screen = get_current_screen();
return $screen && 'upload' === $screen->base && current_user_can( 'upload_files' );
}
/**
* Duplicates a media object
*
* @since 2.7
*
* @param int $object_id The media id.
* @param string $lang A language locale.
* @return void
*/
public function translate( $object_id, $lang ) {
$this->posts->create_media_translation( $object_id, $lang );
}
}