ORIENT/modules/backend/behaviors/relationcontroller/partials/_toolbar.htm

19 lines
512 B
HTML

<div data-control="toolbar">
<?php foreach ($relationToolbarButtons as $type => $text): ?>
<?php if ($type === 'update'): ?>
<?= $this->relationMakePartial('button_update', [
'relationManageId' => $relationViewModel->getKey(),
'text' => $text
]) ?>
<?php else: ?>
<?= $this->relationMakePartial('button_' . $type, [
'text' => $text
]) ?>
<?php endif ?>
<?php endforeach ?>
</div>