update plugins

This commit is contained in:
Tony Volpe
2024-06-17 14:42:23 -04:00
parent a00f379f7f
commit 38e314323c
9467 changed files with 2032414 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
defined( 'ABSPATH' ) || die( 'Cheatin uh?' );
$this->print_template( 'notice-header', array(
'classes' => array( 'error' ),
) );
$backup_path = $this->filesystem->make_path_relative( get_imagify_backup_dir_path( true ) );
if ( $this->filesystem->exists( get_imagify_backup_dir_path() ) ) {
/* translators: %s is a file path. */
$message = __( 'The backup folder %s is not writable by the server, original images cannot be saved!', 'imagify' );
} else {
/* translators: %s is a file path. */
$message = __( 'The backup folder %s cannot be created. Is its parent directory writable by the server? Original images cannot be saved!', 'imagify' );
}
echo '<p>' . sprintf( $message, "<code>$backup_path</code>" ) . '</p>';
$this->print_template( 'notice-footer' );