?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/storage-DROPBOX.php

<?php
use BackWPup\Utils\BackWPupHelpers;
use WPMedia\BackWPup\Plugin\Plugin;

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

$job_id = $job_id ?? null;
BackWPupHelpers::component("closable-heading", [
  'title' => __("Dropbox Settings", 'backwpup'),
  'type' => 'sidebar'
]);
// if null we are on onboarding so we use the default values.
if (null === $job_id || empty($job_id) ) {
	$is_in_form    = true;
    $job_id = get_site_option(Plugin::FIRST_JOB_ID, false);
}

$dropboxdir = BackWPup_Option::get($job_id, 'dropboxdir', trailingslashit(sanitize_title_with_dashes(get_bloginfo('name'))));
$dropboxmaxbackups = BackWPup_Option::get($job_id, 'dropboxmaxbackups', 15);

$dropbox = new BackWPup_Destination_Dropbox_API('dropbox');
$dropbox_auth_url = $dropbox->o_auth_authorize();
$dropbox = new BackWPup_Destination_Dropbox_API('sandbox');
$sandbox_auth_url = $dropbox->o_auth_authorize();

$dropboxtoken = BackWPup_Option::get($job_id, 'dropboxtoken', []);
?>

<?php if (isset($is_in_form) && ( false === $is_in_form || 'false' === $is_in_form )) : ?>
  <p>
    <?php
    BackWPupHelpers::component("form/button", [
      "type" => "link",
      "label" => __("Back to Storages", 'backwpup'),
      "icon_name" => "arrow-left",
      "icon_position" => "before",
      "trigger" => "load-and-open-sidebar",
      "display" => "storages",
      "data"		=> ['job-id' => $job_id, 'block-type' => 'children', 'block-name' => 'sidebar/storages',  ]
    ]);
    ?>
  </p>
<?php endif; ?>

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

<div class="rounded-lg p-4 bg-grey-100" id="drobox_authenticate_infos">
  <?php
		BackWPupHelpers::children("sidebar/dropbox-parts/api-connexion", false, ['job_id' => $job_id]);
  ?>
</div>

<div class="rounded-lg p-4 bg-grey-100">
  <?php
  BackWPupHelpers::component("heading", [
    "level" => 2,
    "title" => __("Backup Settings", 'backwpup'),
    "font" => "small",
    "class" => "mb-4",
  ]);
  ?>

  <div class="flex flex-col gap-2">
    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "dropboxdir",
      "identifier" => "dropboxdir",
      "label" => __("Folder to store files in", 'backwpup'),
      "value" => $dropboxdir,
      "required" => true,
    ]);
    ?>

    <p class="px-2 font-light text-xs">
      <?php esc_html_e("Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden.", 'backwpup'); ?>
    </p>

    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "dropboxmaxbackups",
      "identifier" => "dropboxmaxbackups",
      "type" => "number",
      "min" => 0,
      "label" => __("Max backups to retain", 'backwpup'),
      "value" => $dropboxmaxbackups,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("alerts/info", [
      "type" => "alert",
      "font" => "xs",
      "content" => __("Limits the number of stored backups. When exceeded, the oldest backup is removed. Setting this to 0 keeps unlimited backups and may increase storage usage.", 'backwpup'),
    ]);
    ?>
  </div>
</div>

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

<?php
BackWPupHelpers::component("form/button", [
  "type" => "primary",
  "label" => __("Save & Test connection", 'backwpup'),
  "full_width" => true,
  "trigger" => "test-DROPBOX-storage",
  "data" => [
    "storage" => "dropbox",
    "job-id" => $job_id,
  ],
]);
?>