PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
components
/
onboarding
<?php use BackWPup\Utils\BackWPupHelpers; if ( ! defined( 'ABSPATH' ) ) { exit; } // Get all the cloud destinations. $destinations = BackWPup_Destinations::get_destinations(); $dist_storages = []; foreach ($destinations as $destination) { $dist_storages[] = [ "slug" => $destination["slug"], "label" => $destination["label"], "name" => "onboarding_storage[]", "active" => false, "deactivated_message" => $destination["deactivated_message"] ?? "", ]; } BackWPupHelpers::component("heading", [ "level" => 2, "title" => __("Where to store your backup?", 'backwpup'), ]); ?> <div class="flex-auto"> <div class="flex items-center gap-4 border-b border-grey-200 py-6"> <div class="flex-auto"> <?php BackWPupHelpers::component("heading-desc", [ "title" => __("Website storage", 'backwpup'), "description" => __("Store your backup on your website's server", 'backwpup'), ]); ?> <?php BackWPupHelpers::component("storage-list", [ "storages" => [ [ "slug" => "FOLDER", "label" => "Website Server", "name" => "onboarding_storage[]", "active" => false, "deactivated_message" => "", ], ], "show_locked" => false, ]); ?> </div> </div> <div class="flex items-center gap-4 py-6"> <div class="flex-auto"> <?php BackWPupHelpers::component("heading-desc", [ "title" => __("Cloud Storages", 'backwpup'), "description" => __("Store your backup on your favorite cloud storage platforms", 'backwpup'), ]); ?> <?php BackWPupHelpers::component("storage-list", [ "storages" => $dist_storages ]); ?> </div> </div> </div> <footer class="mt-6 flex justify-between items-center gap-4"> <?php BackWPupHelpers::component("form/button", [ "type" => "secondary", "label" => __("Back to When", 'backwpup'), "icon_name" => "arrow-left", "icon_position" => "before", "trigger" => "onboarding-step-2", ]); ?> <?php BackWPupHelpers::component("form/button", [ "type" => "primary", "label" => __("Save & Continue", 'backwpup'), "icon_name" => "arrow-right", "icon_position" => "after", "trigger" => "onboarding-submit-form", "disabled" => true, ]); ?> </footer>
[-] storage-item-disabled.php
[edit]
[-] storage-item-locked.php
[edit]
[-] step2.php
[edit]
[-] step1.php
[edit]
[+]
..
[-] step3.php
[edit]
[-] storage-item.php
[edit]