This commit is contained in:
cutemeli
2025-12-22 10:35:30 +00:00
parent 0bfc6c8425
commit 5ce7ca2c5d
38927 changed files with 0 additions and 4594700 deletions

View File

@@ -1,50 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<script type="text/javascript">
//<![CDATA[
Jsw.onReady(function() {
var backupPasswordSourceChanged = function () {
var useBackupPasswordCheckbox = document.getElementById('securitySettings-useBackupPasswordCheckbox');
var backupPasswordManualInput = document.getElementById('securitySettings-backupPasswordSource-backupPasswordManualInput');
[
document.getElementById('securitySettings-backupPasswordSource-backupPasswordFromFtpSettings'),
backupPasswordManualInput
].forEach(function (element) {
if (element) {
if (useBackupPasswordCheckbox.checked) {
element.disabled = false;
} else {
element.disabled = true;
}
}
});
[
document.getElementById('securitySettings-backupPassword'),
document.getElementById('securitySettings-confirmBackupPassword')
].forEach(function (element) {
if (element) {
if (useBackupPasswordCheckbox.checked && (!backupPasswordManualInput || backupPasswordManualInput && backupPasswordManualInput.checked)) {
element.disabled = false;
} else {
element.disabled = true;
}
}
});
};
[
document.getElementById('securitySettings-useBackupPasswordCheckbox'),
document.getElementById('securitySettings-backupPasswordSource-backupPasswordFromFtpSettings'),
document.getElementById('securitySettings-backupPasswordSource-backupPasswordManualInput')
].forEach(function (element) {
if (element) {
element.addEventListener('click', backupPasswordSourceChanged);
}
});
backupPasswordSourceChanged();
});
//]]>
</script>

View File

@@ -1,28 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<div class="listArea">
<table width="100%" cellspacing="0" class="list">
<tr>
<th class="min"><?php echo $this->lmsg('components.forms.backup.conflict-database.serverType'); ?></th>
<th><?php echo $this->lmsg('components.forms.backup.conflict-database.hostName'); ?></th>
<th><?php echo $this->lmsg('components.forms.backup.conflict-database.port'); ?></th>
<th><?php echo $this->lmsg('components.forms.backup.conflict-database.destinationDbServer'); ?></th>
</tr>
<?php foreach($this->dbMapping as $id => $db): ?>
<tr>
<td class="min"><?php echo $db['type'] ?></td>
<td><?php echo $db['host'] ?></td>
<td><?php echo $db['port'] ?></td>
<td>
<?php
if ($this->element->getElement($id)->getType() == 'CommonPanel_Form_Element_Hidden') {
echo $this->lmsg('components.forms.backup.conflict-database.migrationDbServerNotFind');
};
echo $this->elementPart($this->element->getElement($id))->content();
?>
</td>
</tr>
<?php endforeach ?>
</table>
</div>

View File

@@ -1,19 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<div class="listArea">
<table width="100%" cellspacing="0" class="list">
<tr>
<th><?php echo $this->lmsg('components.forms.backup.conflict-ip.oldIp'); ?></th>
<th><?php echo $this->lmsg('components.forms.backup.conflict-ip.newIp'); ?></th>
</tr>
<?php foreach($this->ipMapping as $elementId => $ip): ?>
<tr>
<td><i class="icon"><img src="<?php echo $this->skinUrl("/icons/16/plesk/ip-{$ip->type}.png") ?>"></i> <?php echo $ip->value ?></td>
<td>
<?php echo $this->elementPart($this->element->getElement($elementId))->content(); ?>
</td>
</tr>
<?php endforeach ?>
</table>
</div>

View File

@@ -1,30 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<div id="<?php echo $this->element->getId();?>">
<div class="dynamicSubFormTemplate" style="display: none;">
<div class='form-row'>
<div class='field-name'>
<?php echo $this->elementPart($this->element)->label(); ?>
</div>
<div class='field-value'>
<div class="text-value">
<input type="hidden" name="<?php echo $this->element->getFullyQualifiedName() ?>[]" value="">
<span class="webContentPath"></span>
<span class="buttonRemoveItem"></span>
</div>
<span class="field-errors" style="display: none;"></span>
</div>
</div>
</div>
<div class="form-row">
<div class="field-name"></div>
<div class="field-value">
<div id="<?php echo $this->element->getId();?>-buttonAddItem" class="text-value"></div>
</div>
</div>
</div>
<?= $this->requireJs('app/backup/web-content-dynamic', [
'applyTo' => $this->element->getId(),
'dataUrl' => $this->dataUrl,
]) ?>