10 lines
367 B
PHTML
10 lines
367 B
PHTML
<?php
|
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
?>
|
|
<div id="<?php echo $this->element->getId() ?>">
|
|
<?php if ($this->element->getSubForm('general')): ?>
|
|
<?php echo $this->element->getSubForm('general')->render($this); ?>
|
|
<?php endif; ?>
|
|
<?php echo $this->element->getSubForm('performance')->render($this); ?>
|
|
</div>
|