<?php
$this->addTplJSName([
'admin-wysiwygs'
]);
$this->addBreadcrumb(LANG_WW_PRESETS, $this->href_to('presets'));
if ($do=='add'){
$this->addBreadcrumb(LANG_ADD);
}
if ($do=='edit'){
$this->addBreadcrumb($preset['title']);
}
$this->addToolButton([
'class' => 'save process-save',
'title' => LANG_SAVE,
'href' => '#',
'icon' => 'save'
]);
$this->addToolButton([
'class' => 'cancel',
'title' => LANG_CANCEL,
'href' => $this->href_to('presets'),
'icon' => 'undo'
]);
?>
<div id="form-preset" data-wysiwyg_options_url="<?php echo $this->href_to('wysiwyg_options'); ?>" data-preset_id="<?php echo $preset['id'] ?? 0; ?>">
<?php
$this->renderForm($form, $preset, [
'action' => '',
'method' => 'post'
], $errors);
?>
</div>