$this->addField(['name' => 'chapo',
'type' => 'Textarea',
- 'label' => 'Chapo']);
+ 'label' => 'Chapo',
+ 'hint' => 'Texte court affiché sur le listing des actualités']);
$this->addField(['name' => 'image',
'type' => 'Images',
'label' => 'Image']);
+ $this->addField(['name' => 'content',
+ 'type' => 'Markdown',
+ 'label' => 'Contenu'
+ ]);
+
$this->addField(['name' => 'status',
- 'type' => 'SelectFormArray',
+ 'type' => 'SelectFromArray',
+ 'label'=>'Status',
'options' => ['0' => 'Offline', '1' => 'Published'],
'column' => true
]);