<?php
$this->addTplJSName('content');
$this->setPageTitle($page_title);
if(!$this->isBreadcrumbs()){
if ($ctype['options']['list_on'] && empty($ctype['options']['list_off_breadcrumb_ctype']) && !$parent){
$this->addBreadcrumb($ctype['title'], href_to($ctype['name']));
}
if(!empty($item['category']['path'])){
foreach($item['category']['path'] as $c){
$this->addBreadcrumb($c['title'], href_to($base_url, $c['slug']));
}
}
}
$this->addBreadcrumb($page_title);
if(!empty($show_save_button) || !isset($show_save_button)){
$this->addToolButton([
'class' => 'save process-save',
'title' => $button_save_text,
'href' => '#',
'icon' => 'save'
]);
}
if(!$hide_draft_btn){
$this->addToolButton([
'class' => 'process-save save_draft',
'icon' => 'bookmark',
'data' => ['submit_class' => '.button.to_draft'],
'title' => $button_draft_text,
'href' => '#'
]);
}
if ($cancel_url){
$this->addToolButton([
'class' => 'cancel',
'icon' => 'undo',
'title' => LANG_CANCEL,
'href' => $cancel_url
]);
}
?>
<h1><?php echo html($page_title) ?></h1>
<?php if ($is_premoderation && !$is_moderator) { ?>
<div class="alert alert-info content_moderation_notice">
<?php echo LANG_MODERATION_NOTICE; ?>
</div>
<?php } ?>
<?php
$this->renderForm($form, $item, [
'action' => '',
'submit' => ['title' => $button_save_text, 'show' => (isset($show_save_button) ? $show_save_button : true)],
'cancel' => ['show' => (bool)$cancel_url, 'href' => $cancel_url],
'buttons' => $hide_draft_btn ? [] : [
[
'title' => $button_draft_text,
'name' => 'to_draft',
'attributes' => [
'type' => 'submit',
'class' => 'to_draft btn-warning'
]
]
],
'method' => 'post',
'toolbar' => false,
'hook' => [
'event' => "content_{$ctype['name']}_form_html",
'param' => [
'do' => $do,
'id' => $do == 'edit' ? $item['id'] : null
]
]
], $errors);
?>
<?php if ($perms_notices) { ?>
<div class="alert alert-info mt-3 mb-0">
<p><?php echo LANG_CONTENT_PERMS_TIME_HINT; ?></p>
<ul>
<?php if (!empty($perms_notices['edit_times'])) { ?>
<li>
<?php echo html_minutes_format($perms_notices['edit_times']); ?> <?php echo LANG_CONTENT_PERMS_TIME_HINT_EDIT; ?>;
</li>
<?php } ?>
<?php if (!empty($perms_notices['delete_times'])) { ?>
<li>
<?php echo html_minutes_format($perms_notices['delete_times']); ?> <?php echo LANG_CONTENT_PERMS_TIME_HINT_DELETE; ?>;
</li>
<?php } ?>
</ul>
<p class="mb-0"><?php echo LANG_CONTENT_PERMS_TIME_HINT1; ?></p>
</div>
<?php } ?>
<?php ob_start(); ?>
<script>
$(function(){
icms.content.initMultiCats();
<?php if ($props){ ?>
icms.content.initProps('<?php echo href_to($ctype['name'], 'props'); ?>'<?php if($do=='edit'){ ?>, <?php echo $item['id']; ?><?php } ?>);
<?php if ($is_load_props){ ?>
icms.content.loadProps();
<?php } ?>
<?php } ?>
});
</script>
<?php $this->addBottom(ob_get_clean()); ?>