PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / trunk
JetBackup – Backup, Restore & Migrate vtrunk
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / modal / exportBackup.htm
backup / public / views / modal Last commit date
backupNow.htm 1 year ago callSupport.htm 1 year ago deleteBackup.htm 1 year ago downloadBackup.htm 1 year ago downloadBackupLog.htm 1 year ago editBackupNotes.htm 1 year ago exportBackup.htm 1 year ago extractBackup.htm 1 year ago fileManager.htm 10 months ago importBackup.htm 1 year ago lockBackup.htm 1 year ago manageBackupJob.htm 1 year ago manageDestination.htm 1 year ago manageSchedule.htm 1 year ago quickStart.htm 1 year ago restoreBackup.htm 1 year ago showExtractedPath.htm 1 year ago viewLog.htm 1 year ago
exportBackup.htm
61 lines
1 <div class="modal-header">
2 <div class="modal-main-title text-center w-100">
3 <h1 class="modal-title fs-5" id="exportBackupLabel">
4 {{ lang.t("Export Backup (Control Panel Format)") }}
5 </h1>
6 </div>
7 <button type="button" class="btn-close" ng-click="cancel()" aria-label="Close"></button>
8 </div>
9
10 <div class="modal-body text-center">
11 <div class="row">
12 <p class="px-3 text-start">
13 {{ lang.t("Select your preferred template panel. JetBackup will attempt to transform your WordPress backup into the chosen panel format, enabling straightforward restoration within the panel.") }}
14 </p>
15 </div>
16
17 <div class="row justify-content-center">
18 <div class="col-md-8">
19 <div class="d-flex justify-content-around">
20 <!-- cPanel option -->
21 <label class="d-flex align-items-center">
22 <input class="form-check-input me-2" type="radio" name="controlPanel" value=1 ng-model="selectedPanel" />
23 <img ng-src="{{icons.cpanel_icon}}" alt="cPanel Logo" class="me-2" height="24">
24 </label>
25
26 <!-- DirectAdmin option -->
27 <label class="d-flex align-items-center">
28 <input class="form-check-input me-2" type="radio" name="controlPanel" value=2 ng-model="selectedPanel" />
29 <img ng-src="{{icons.da_icon}}" alt="DirectAdmin Logo" class="me-2" height="24">
30 </label>
31 </div>
32 </div>
33 </div>
34
35 <!-- Destination selection (shown only if there are multiple destinations and a panel is selected) -->
36 <div class="row mt-4" ng-if="backup.destinations.length > 1 && selectedPanel">
37 <div class="col-md-12 mx-auto text-start fs-13">
38 <label class="form-label text-start w-100">{{ lang.t("This backup exists on multiple destinations. Please select the destination you want to export from.") }}</label>
39 <div class="list-group">
40 <label ng-repeat="dest in backup.destinations">
41 <input type="radio" name="destinationRadio" ng-click="selectDestination(dest.id)">
42 {{ lang.t(dest.name || 'Unknown') }}
43 </label>
44 </div>
45 </div>
46 </div>
47
48
49
50 </div>
51
52 <div class="modal-footer justify-content-between">
53 <button class="btn btn-secondary" type="button" ng-click="cancel()">
54 {{ lang.t("Cancel") }}
55 </button>
56 <button class="btn btn-primary" type="button" ng-click="ok()"
57 ng-disabled="!selectedPanel || (backup.destinations.length > 1 && !selectedDestination)">
58 {{ lang.t("Export") }}
59 </button>
60 </div>
61