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,16 +0,0 @@
<?php
// Copyright 1999-2021. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<div class="plesk-ext-ruby-panel">
<div class="plesk-ext-ruby-panel__header">
<div class="plesk-ext-ruby-panel__title"><?= $this->lmsg('controllers.domain.index.configurationFilesTitle') ?></div>
</div>
<div class="plesk-ext-ruby-panel__content">
<p><?= $this->lmsg('controllers.domain.index.configurationFilesDescription') ?></p>
<ul>
<?php foreach ($this->files as $file): ?>
<li><a href="<?= $this->fileManagerUrl . rawurlencode($file) ?>"><?= $this->escape(basename($file)) ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>

View File

@@ -1,22 +0,0 @@
<?php
// Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<div id="<?php echo $this->element->getId();?>">
<?php echo $this->content; ?>
</div>
<script>
Jsw.onReady(function() {
var DynamicSubForm = Class.create(Jsw.AddRemoveDynamicSubForm, {
_bindDynamicContent: function($super, content) {
$super(content, false);
}
});
new DynamicSubForm({
applyTo: '<?php echo $this->element->getId();?>',
addButtonId: '<?php echo $this->element->getId();?>-addButton',
addButtonTitle: '<?php echo $this->lmsg('components.forms.environment.addButton');?>',
removeButtonId: '<?php echo $this->element->getId();?>-removeButton',
removeButtonTitle: '<?php echo $this->lmsg('components.forms.environment.removeButton');?>'
});
});
</script>

View File

@@ -1,28 +0,0 @@
<?php
// Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<?php
$nameElement = $this->element->getElement($this->nameId);
?>
<div id='<?php echo $nameElement->getId(); ?>-form-row' class='form-row'>
<div class='field-name'>
<label for="<?php echo $nameElement->getId(); ?>">
<?php echo $nameElement->getLabel(); ?>
<?php if ($nameElement->isRequired()): ?>
<span class="required">*</span>
<?php endif; ?>
</label>
</div>
<div class='field-value'>
<span>
<?php
echo $this->elementPart($nameElement)->content() . '&nbsp;' .
$this->elementPart($this->element->getElement($this->valueId))->content();
?>
</span>
<span class="field-errors" style="display: none;"></span>
<?php if ($nameElement->getDescription()): ?>
<span class="hint"><?php echo $nameElement->getDescription(); ?></span>
<?php endif; ?>
</div>
</div>

View File

@@ -1,22 +0,0 @@
<?php
// Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<?= $this->renderSmallTools($this->smallTools); ?>
<script src="<?= pm_Context::getBaseUrl() ?>javascript/application.js"></script>
<script>
<?php if ($this->noStartupFileHint): ?>
new Jsw.Hint({
renderTo: 'main',
renderMode: 'top',
hint: <?= $this->jsHtml($this->noStartupFileHint) ?>,
expandable: true
});
<?php endif; ?>
Jsw.Locale.addSection('controllers.domain.index', <?= json_encode(pm_Locale::getSection('controllers.domain.index')) ?>);
Jsw.Locale.addSection('rubyComponents.buttons', <?= json_encode(pm_Locale::getSection('components.buttons')) ?>);
Jsw.Locale.addSection('components.run-rake-task-popup', <?= json_encode(pm_Locale::getSection('components.run-rake-task-popup')) ?>);
require(['<?= pm_Context::getBaseUrl() ?>javascript/bundle.js?<?= $this->moduleVersion ?>'], function (main) {
PleskExt.Ruby.render($('main'), <?= json_encode($this->getVars()) ?>);
});
</script>

View File

@@ -1,4 +0,0 @@
<?php
// Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<?php echo $this->renderList($this->list); ?>