Skip to content

Commit

Permalink
Mise à jour pour la version alpha7.1 du CMS.
Browse files Browse the repository at this point in the history
  • Loading branch information
noelma committed Aug 5, 2019
1 parent 056e740 commit a5d0c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Services/HookConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ public function form(&$form, $data)
return $form->group('start-config-fieldset', 'fieldset', function ($form) use ($data) {
$form->legend('start-config-legend', 'Starterkit config')
->group('start-start_check-group', 'div', function ($form) use ($data) {
$form->checkbox('start_check', 'start_check', [ 'checked' => $data[ 'start_check' ] ])
$form->checkbox('start_check', [ 'checked' => $data[ 'start_check' ] ])
->label('start-start_check-label', '<span class="ui"></span> Start check.', [
'for' => 'start_check'
]);
}, [ 'class' => 'form-group' ])
->group('system-start_text-group', 'div', function ($form) use ($data) {
$form->label('system-start_text-label', 'Start text')
->text('start_text', 'start_text', [
->text('start_text', [
'class' => 'form-control',
'required' => 1,
'placeholder' => 'Text exemple',
Expand Down

0 comments on commit a5d0c02

Please sign in to comment.