2018-04-02 08:29:19 +02:00
< ? php echo template :: formOpen ( 'newsEditForm' ); ?>
< div class = " row " >
< div class = " col2 " >
< ? php echo template :: button ( 'newsEditBack' , [
'class' => 'buttonGrey' ,
'href' => helper :: baseUrl () . $this -> getUrl ( 0 ) . '/config' ,
2022-02-12 17:10:59 +01:00
'ico' => 'left' ,
'value' => 'Retour'
2018-04-02 08:29:19 +02:00
]); ?>
</ div >
2022-02-12 17:10:59 +01:00
< div class = " col3 offset5 " >
2018-04-02 08:29:19 +02:00
< ? php echo template :: button ( 'newsEditDraft' , [
'uniqueSubmission' => true ,
2022-02-12 17:10:59 +01:00
'value' => 'Enregistrer en brouillon'
2018-04-02 08:29:19 +02:00
]); ?>
< ? php echo template :: hidden ( 'newsEditState' , [
'value' => true
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: submit ( 'newsEditSubmit' , [
2021-12-01 17:08:35 +01:00
'value' => 'Publier' ,
'uniqueSubmission' => true
2018-04-02 08:29:19 +02:00
]); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Informations générales </ h4 >
< ? php echo template :: text ( 'newsEditTitle' , [
'label' => 'Titre' ,
2020-11-17 09:47:45 +01:00
'value' => $this -> getData ([ 'module' , $this -> getUrl ( 0 ), 'posts' , $this -> getUrl ( 2 ), 'title' ])
2018-04-02 08:29:19 +02:00
]); ?>
</ div >
</ div >
</ div >
< ? php echo template :: textarea ( 'newsEditContent' , [
'class' => 'editorWysiwyg' ,
2020-11-17 09:47:45 +01:00
'value' => $this -> getData ([ 'module' , $this -> getUrl ( 0 ), 'posts' , $this -> getUrl ( 2 ), 'content' ])
2018-04-02 08:29:19 +02:00
]); ?>
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Options de publication </ h4 >
< div class = " row " >
2021-05-03 22:18:38 +02:00
< div class = " col4 " >
2018-04-02 08:29:19 +02:00
< ? php echo template :: select ( 'newsEditUserId' , $module :: $users , [
'label' => 'Auteur' ,
'selected' => $this -> getUser ( 'id' )
]); ?>
</ div >
2021-05-03 22:18:38 +02:00
< div class = " col4 " >
2018-04-02 08:29:19 +02:00
< ? php echo template :: date ( 'newsEditPublishedOn' , [
'help' => 'La news est consultable à partir du moment ou la date de publication est passée.' ,
'label' => 'Date de publication' ,
2020-11-17 09:47:45 +01:00
'value' => $this -> getData ([ 'module' , $this -> getUrl ( 0 ), 'posts' , $this -> getUrl ( 2 ), 'publishedOn' ])
2018-04-02 08:29:19 +02:00
]); ?>
</ div >
2021-05-03 22:18:38 +02:00
< div class = " col4 " >
< ? php echo template :: date ( 'newsEditPublishedOff' , [
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-03 22:18:38 +02:00
'label' => 'Date de dépublication' ,
'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 (); ?>