?AlkantarClanX12

Your IP : 216.73.216.177


Current Path : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/parts/sidebar/
Upload File :
Current File : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/parts/sidebar/frequency.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 Scheduled Settings", 'backwpup'),
  'type' => 'sidebar'
]);

$optionAdapter = new OptionAdapter();

if ( ! isset ( $job_id ) ) {
  return;
}

$job_cron    = BackWPup_Option::get($job_id, 'cron', $optionAdapter->defaults_job('cron'));
$active_type = BackWPup_Option::get( $job_id, 'activetype' );
$url = BackWPup_Job::get_jobrun_url( 'runext', $job_id );
?>

<?php BackWPupHelpers::component("containers/scrollable-start", ["gap_size" => "small"]); ?>

<?php
$current = [
	'frequency'         => '',
	'start_time'        => '00:00',
	'hourly_start_time' => 0,
	'monthly_start_day' => '',
	'weekly_start_day'  => '',
];

if ( 'link' === $active_type ) {
	$current['frequency'] = 'link';
} else {
	try {
		$current = BackWPup_Cron::parse_cron_expression($job_cron);
	} catch (Exception $e) {
		BackWPupHelpers::component("alerts/error", [
			"type" => "info",
			"font" => "small",
			"content" => __("Current cron expression is not supported by this UI.", 'backwpup') . ' ' . esc_html($job_cron),
		]);
	}
}
?>

<?php
$options = wpm_apply_filters_typed( 'array', 'backwpup_backup_select_frequency_options', [
	'hourly'  => __( 'Hourly', 'backwpup' ),
	'daily'   => __( 'Daily', 'backwpup' ),
	'weekly'  => __( 'Weekly', 'backwpup' ),
	'monthly' => __( 'Monthly', 'backwpup' ),
], $job_id );

if( ! get_site_option( 'backwpup_onboarding', false ) ) {
    $options['link'] =  __( 'Triggered by link', 'backwpup' );
}
BackWPupHelpers::component( 'form/select', [
  'name'       => 'frequency',
  'label'      => __( 'Frequency', 'backwpup' ),
  'trigger'    => 'frequency-job',
  'value'      => $basic_frequency ?? $current['frequency'], // hourly, daily, weekly, monthly, link
  'options'    => $options,
  'identifier' => 'backwpup_frequency',
]);
?>

<div class="js-backwpup-frequency-job-show-if-hourly">
  <?php
  BackWPupHelpers::component( 'form/select', [
    'name' => 'hourly_start_time',
    'label' => __( 'Minutes', 'backwpup' ),
    'value' => $current['hourly_start_time'],
    'options' => [
      '0' => 0,
      '5' => 5,
      '10' => 10,
      '15' => 15,
      '20' => 20,
      '25' => 25,
      '30' => 30,
      '35' => 35,
      '40' => 40,
      '45' => 45,
      '50' => 50,
      '55' => 55,
    ],
  ]);
  ?>
</div>

<div class="js-backwpup-frequency-job-show-if-monthly">
  <?php
  $days_in_month = cal_days_in_month( CAL_GREGORIAN, current_time( 'n' ), current_time( 'Y' ) );
  $days_in_month = range( 1,   $days_in_month );
  $days_in_month = array_map( function ( $day ) {
    return  sprintf('%02d', $day);
  }, $days_in_month );
  $days_in_month = array_combine( $days_in_month, $days_in_month );

  // Backward Compatibility with old monthly frequency.
  $old_monthly_frequency = [
    "first-monday" => __("1st Monday of the month", 'backwpup'),
    "first-sunday" => __("1st Sunday of the month", 'backwpup'),
  ];

  if ( in_array( $current['monthly_start_day'], array_keys( $old_monthly_frequency ), true ) ) {
    $days_in_month[ $current['monthly_start_day'] ] = $old_monthly_frequency[ $current['monthly_start_day'] ];
  }

  BackWPupHelpers::component("form/select", [
    "name" => "day_of_month",
    "label" => __("Start day", 'backwpup'),
    "value" => $current['monthly_start_day'],
    "options" => $days_in_month,
    "hide_subset_current_options" => array_keys( $old_monthly_frequency ),
    "identifier" => 'backwpup_day_of_month',
  ]);
  ?>
</div>

<div class="js-backwpup-frequency-job-show-if-weekly">
  <?php
  BackWPupHelpers::component("form/select", [
    "name" => "day_of_week",
    "label" => __("Start day", 'backwpup'),
    "value" => $current['weekly_start_day'],
    "options" => [
      "1"    => __("Monday", 'backwpup'),
      "2"   => __("Tuesday", 'backwpup'),
      "3" => __("Wednesday", 'backwpup'),
      "4"  => __("Thursday", 'backwpup'),
      "5"    => __("Friday", 'backwpup'),
      "6"  => __("Saturday", 'backwpup'),
      "0"    => __("Sunday", 'backwpup'),
    ],
  ]);
  ?>
</div>

<div class="js-backwpup-frequency-job-hide-if-hourly">
<?php
BackWPupHelpers::component("form/text", [
  "type" => "time",
  "name" => "start_time",
  "label" => __("Start time", 'backwpup'),
  "value" => $current['start_time'],
  "required" => true,
]);
?>
</div>

<div class="js-backwpup-frequency-job-hide-if-hourly">
<?php
BackWPupHelpers::component("alerts/info", [
  "type" => "alert",
  "font" => "small",
  "content" => __("Making a copy of your website can slow down your site a bit. We recommend doing this at night to avoid any inconvenience.", 'backwpup'),
]);
?>
</div>

<div class="js-backwpup-frequency-job-show-if-hourly">
<?php
BackWPupHelpers::component( 'alerts/info', [
  'type'    => 'alert',
  'font'    => 'small',
  'content' => __( 'Enable "Reduced server load" in “Advanced Settings > Jobs” to reduce website load and keep your site running smoothly during hourly backups.', 'backwpup' ),
]);
?>
</div>

    <div class="js-backwpup-frequency-job-show-if-link">
        <div class="bg-slate-300 text-black js-frequency-link-url pl-3 flex rounded-md mb-3">
        <span class="backwpup-backup-link truncate self-center pr-3">
	            <?php echo esc_url( $url['url'] ?? '' ); ?>
        </span>
            <button type="button"
                    aria-label="Copy backup link to clipboard"
                    class="js-backwpup-copy-clipboard rounded-md cursor-pointer py-2 px-4 bg-black text-white inline-block min-w-20 text-center">
                Copy
            </button>
            <span class="sr-only" role="status" aria-live="polite" aria-atomic="true"></span>
        </div>
		<?php
		BackWPupHelpers::component( 'alerts/info', [
			'type'    => 'alert',
			'font'    => 'small',
			'content' => __(
				"Use the link above to trigger this backup. The link stays the same even if you change the frequency and switch back to “Triggered by link.”",
				'backwpup'
			),
		]);
		?>
    </div>
<div class="mt-2 pl-3 pr-3">
  <strong>
    <?php esc_html_e( 'Start Backups with CLI:', 'backwpup' ); ?>
  </strong>
  <?php
  $link_info_frequency = wpm_apply_filters_typed( 'string', 'backwpup_url_add_hash',"https://backwpup.com/docs/backwpup-wp-cli-commands/?utm_source=backwpup_plugin&utm_medium=plugin&utm_campaign=in_product&utm_content=wpcli_help" );
  // translators: %1$s: link tag to backwpup.com, %2$s: closing link tag, %3$s: link tag to wp-cli.org.
  printf( esc_html__( 'Use %1$sWP-CLI%2$s to run backups from the command line.', 'backwpup' ), '<a class="underline" href="' . esc_url( $link_info_frequency ) . '" target="_blank">', '</a>' );
  ?>
</div>

<?php BackWPupHelpers::component("containers/scrollable-end"); ?>

<?php BackWPupHelpers::component("form/hidden", ["identifier" => 'job_id', "name" => "job_id", "value" => $job_id]); ?>

<?php
BackWPupHelpers::component("form/button", [
  "type" => "primary",
  "label" => __("Save settings", 'backwpup'),
  "full_width" => true,
  "class" => "mt-4 save_job_settings",
  "identifier" => 'save-job-settings',
]);
?>