?AlkantarClanX12
| Current Path : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/parts/sidebar/ |
| Current File : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/parts/sidebar/format.php |
<?php
use BackWPup\Utils\BackWPupHelpers;
use WPMedia\BackWPup\Adapters\OptionAdapter;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var int $job_id ID of the job we are retrieving the frequency settings for.
*/
BackWPupHelpers::component(
'closable-heading',
[
'title' => __( 'Job Format Settings', 'backwpup' ),
'type' => 'sidebar',
]
);
$optionAdapter = new OptionAdapter();
if ( ! isset( $job_id ) ) {
return;
}
$archiveFormat = BackWPup_Option::get( $job_id, 'archiveformat', $optionAdapter->defaults_job( 'archiveformat' ) );
$archiveNameNoHash = BackWPup_Option::get( $job_id, 'archivenamenohash', $optionAdapter->defaults_job( 'archivenamenohash' ) );
$hash = BackWPup_Option::get_generated_hash( $job_id );
$archiveNamePreview = str_replace( '%hash%', $hash, BackWPup_Job::sanitize_file_name( BackWPup_Option::substitute_date_vars( $archiveNameNoHash ) ) );
$docsUrl = wpm_apply_filters_typed( 'string', 'backwpup_url_add_hash','https://backwpup.com/docs/what-placeholders-can-i-use-in-archive-names-and-what-do-they-mean/?utm_source=backwpup_plugin&utm_medium=plugin&utm_campaign=in_product&utm_content=formart_help' );
BackWPupHelpers::component( 'containers/scrollable-start', [ 'gap_size' => 'small' ] );
BackWPupHelpers::component(
'form/text',
[
'label' => __( 'Archive name', 'backwpup' ),
'name' => 'archivename',
'value' => $archiveNameNoHash,
'required' => true,
'maxlength' => 200,
'trigger' => 'format-job-name',
]
);
?>
<div class="js-backwpup-format-job-name-no-hash" style="display: none;">
<?php
BackWPupHelpers::component(
'alerts/info',
[
'type' => 'danger',
'font' => 'small',
// translators: %hash%: Archive name hash placeholder.
'content' => __( 'In order for backup history to work, %hash% must be included anywhere in the archive name.', 'backwpup' ),
]
);
?>
</div>
<?php
$allowedFormats = BackWPup_Option::get_allowed_archive_formats();
if ( ! in_array( $archiveFormat, $allowedFormats, true ) ) {
BackWPupHelpers::component(
'alerts/info',
[
'type' => 'alert',
'font' => 'small',
'content' => BackWPup_Admin::unavailable_archive_format_notice(
BackWPup_Option::get( $job_id, 'name' ),
$archiveFormat
),
]
);
$archiveFormat = '.tar';
}
BackWPupHelpers::children(
'sidebar/parts/archive-format-selector',
false,
[
'label' => __( 'Archive format', 'backwpup' ),
'archiveformat' => $archiveFormat,
]
);
?>
<div class="">
<p class="mt-2 pl-3 pr-3">
<?php esc_html_e( 'Archive name preview:', 'backwpup' ); ?>
<span class="break-all font-bold">
<span class="js-backwpup-format-archive-name" data-hash="<?php echo esc_attr( $hash ); ?>"><?php echo esc_attr( $archiveNamePreview ); ?></span>_<?php echo esc_html( BackWPup_Job::sanitize_file_name( implode( '-', BackWPup_Option::get( $job_id, 'type' ) ) ) ); ?><span class="js-backwpup-format-archive-name-format"><?php echo esc_attr( $archiveFormat ); ?></span>
</span>
</p>
<p class="mt-3 underline pl-3 pr-3">
<a class="underline" href="<?php echo esc_url( $docsUrl ); ?>" target="_blank"><?php esc_html_e( 'What do these placeholders mean?', 'backwpup' ); ?></a>
</p>
</div>
<?php
BackWPupHelpers::component( 'containers/scrollable-end' );
BackWPupHelpers::component(
'form/hidden',
[
'identifier' => 'job_id',
'name' => 'job_id',
'value' => $job_id,
]
);
BackWPupHelpers::component(
'form/button',
[
'type' => 'primary',
'label' => __( 'Save settings', 'backwpup' ),
'full_width' => true,
'class' => 'mt-4 save_job_format',
'identifier' => 'save-job-format',
]
);
?>