Warning — Because you\'ve turned off %1$s, we will not offer to move existing media to the new path as it could result in overwriting some media in your bucket. %2$s', 'amazon-s3-and-cloudfront' ); $strings['no_move_objects_year_month_notice'] = sprintf( $notice_msg, __( 'Year/Month', 'amazon-s3-and-cloudfront' ), $notice_link ); $strings['no_move_objects_object_versioning_notice'] = sprintf( $notice_msg, __( 'Object Versioning', 'amazon-s3-and-cloudfront' ), $notice_link ); return $strings; } /** * Get title text. * * @return string */ public function get_title_text() { return __( 'Move files to new storage path', 'amazon-s3-and-cloudfront' ); } /** * Get queued status text. * * @return string */ public function get_queued_status(): string { return __( 'Moving media items to new storage path.', 'amazon-s3-and-cloudfront' ); } /** * Get more info text. * * @return string */ public static function get_more_info_text() { return __( 'Would you like to move your offloaded media files to paths that match the current storage path settings? All existing offloaded media URLs will be updated to reference the new paths.', 'amazon-s3-and-cloudfront' ); } /** * Get prompt text for when tool could be run in response to settings change. * * @return string */ public static function get_prompt_text() { global $as3cf; $mesg = '
' . __( 'You just updated the storage path. Any new media you offload from now on will use this new path.', 'amazon-s3-and-cloudfront' ) . '
'; $mesg .= ''; $mesg .= __( 'You can also move existing media to this new path. Beware however that moving existing media will update URLs and will result in 404s for any sites embedding or linking to your media. It could also have a negative impact on SEO. If you\'re unsure about this, we recommend not moving existing media to the new path.', 'amazon-s3-and-cloudfront' ); $mesg .= ' '; $mesg .= $as3cf::more_info_link( '/wp-offload-media/doc/how-to-move-media-to-a-new-bucket-path/', 'move+objects', 'public-path' ); $mesg .= '
'; return $mesg; } /** * @inheritDoc */ public function get_doc_url() { global $as3cf; $args = array( 'utm_campaign' => 'move+objects' ); return $as3cf::dbrains_url( '/wp-offload-media/doc/how-to-move-media-to-a-new-bucket-path/', $args, 'public-path' ); } /** * Message for error notice. * * @param string|null $message Optional message to override the default for the tool. * * @return string */ protected function get_error_notice_message( $message = null ) { $title = __( 'Move Objects Errors', 'amazon-s3-and-cloudfront' ); $message = empty( $message ) ? __( 'Previous attempts at moving your media library to new storage paths have resulted in errors.', 'amazon-s3-and-cloudfront' ) : $message; return sprintf( '%1$s — %2$s', $title, $message ); } /** * Get background process class. * * @return Background_Tool_Process|null */ protected function get_background_process_class() { return new Move_Public_Objects_Process( $this->as3cf, $this ); } }