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 |