ZwiiCMS/module/news/view/add/add.php

70 lines
2.2 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php echo template::formOpen('newsAddForm'); ?>
<div class="row">
2022-02-18 12:43:48 +01:00
<div class="col1">
2018-04-02 08:29:19 +02:00
<?php echo template::button('newsAddBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
2022-02-18 12:43:48 +01:00
'value' => template::ico('left')
2018-04-02 08:29:19 +02:00
]); ?>
</div>
2022-02-18 12:43:48 +01:00
<div class="col2 offset7">
2018-04-02 08:29:19 +02:00
<?php echo template::button('newsAddDraft', [
'uniqueSubmission' => true,
2023-02-13 14:47:26 +01:00
'value' => helper::translate('Brouillon')
2018-04-02 08:29:19 +02:00
]); ?>
<?php echo template::hidden('newsAddState', [
'value' => true
]); ?>
</div>
<div class="col2">
<?php echo template::submit('newsAddPublish', [
'value' => 'Publier',
'uniqueSubmission' => true
2018-04-02 08:29:19 +02:00
]); ?>
</div>
</div>
<div class="row">
<div class="col12">
<div class="block">
2023-02-13 14:39:09 +01:00
<h4><?php echo helper::translate('Informations générales');?></h4>
2018-04-02 08:29:19 +02:00
<?php echo template::text('newsAddTitle', [
'label' => 'Titre'
]); ?>
</div>
</div>
</div>
<?php echo template::textarea('newsAddContent', [
'class' => 'editorWysiwyg'
]); ?>
<div class="row">
<div class="col12">
<div class="block">
2023-02-13 14:39:09 +01:00
<h4><?php echo helper::translate('Options de publication');?></h4>
2018-04-02 08:29:19 +02:00
<div class="row">
2021-05-09 18:19:43 +02:00
<div class="col4">
2018-04-02 08:29:19 +02:00
<?php echo template::select('newsAddUserId', $module::$users, [
'label' => 'Auteur',
'selected' => $this->getUser('id')
]); ?>
</div>
2021-05-09 18:19:43 +02:00
<div class="col4">
2018-04-02 08:29:19 +02:00
<?php echo template::date('newsAddPublishedOn', [
'help' => 'La news est consultable à partir du moment ou la date de publication est passée.',
'label' => 'Date de publication',
2023-02-17 10:59:25 +01:00
'type' => 'datetime-local',
2018-04-02 08:29:19 +02:00
'value' => time()
]); ?>
</div>
2021-05-09 18:19:43 +02:00
<div class="col4">
<?php echo template::date('newsAddPublishedOff', [
2021-05-13 22:58:12 +02:00
'help' => 'La news est consultable Jusqu\'à cette date si elle est spécifiée. Pour annuler la date de dépublication, sélectionnez une date antérieure à la publication.',
2021-05-09 18:19:43 +02:00
'label' => 'Date de dépublication',
2023-02-17 10:59:25 +01:00
'type' => 'datetime-local',
2021-05-09 18:19:43 +02:00
'value' => $this->getData(['module', $this->getUrl(0),'posts', $this->getUrl(2), 'publishedOff'])
]); ?>
</div>
2018-04-02 08:29:19 +02:00
</div>
</div>
</div>
</div>
<?php echo template::formClose(); ?>