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,22 +0,0 @@
<?php
// Copyright 1999-2024. WebPros International 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-2024. WebPros International 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,5 +0,0 @@
<?php
// Copyright 1999-2024. WebPros International GmbH. All rights reserved.
?>
<?php echo $this->partial('partials/app.phtml', null, $this); ?>

View File

@@ -1,5 +0,0 @@
<?php
// Copyright 1999-2024. WebPros International GmbH. All rights reserved.
?>
<?php echo $this->partial('partials/app.phtml', null, $this); ?>

View File

@@ -1,10 +0,0 @@
<?php
// Copyright 1999-2024. WebPros International GmbH. All rights reserved.
?>
<div id="<?= $this->moduleId; ?>"></div>
<script>
require(['<?= $this->baseUrl; ?>dist/main.js'], function (main) {
main.default(<?= $this->frontendParameters ?>);
});
</script>