21 lines
534 B
HTML
21 lines
534 B
HTML
<div
|
|
data-control="formwidget"
|
|
data-refresh-handler="<?= $this->getEventHandler('onRender') ?>"
|
|
class="form-widget form-elements layout"
|
|
role="form"
|
|
id="<?= $this->getId() ?>">
|
|
|
|
<?php if ($outsideFields): ?>
|
|
<?= $this->makePartial('form_outside_fields') ?>
|
|
<?php endif ?>
|
|
|
|
<?php if ($primaryTabs): ?>
|
|
<?= $this->makePartial('form_primary_tabs') ?>
|
|
<?php endif ?>
|
|
|
|
<?php if ($secondaryTabs): ?>
|
|
<?= $this->makePartial('form_secondary_tabs') ?>
|
|
<?php endif ?>
|
|
|
|
</div>
|