Form->create($entity) ?>
Form->control('nom'); echo $this->Form->control('description'); echo $this->Form->control('groupes_thematique_id', ['label'=>'Groupe thématique', 'options' => $groupes_thematiques, 'empty' => true]); echo $this->Form->control('chef_science_id', ['label' => 'Responsable scientifique', 'options' => $pis, 'empty' => true]); echo $this->Form->control('chef_projet_id', ['label' => 'Chef de projet', 'options' => $pms, 'empty' => true]); $comment = 'Entrez une date (JJ/MM/AAAA)'; echo $this->Form->control('date_start', [ //'empty' => true, 'type' => 'text', 'label' => 'Date début projet', 'class' => 'datepicker', 'placeholder' => $comment, // ADD only 'default' => date("d/m/Y"), // A CAUSE DE CE FICHU PHP5 ET VIEUX MYSQL !!!, INUTILE EN PHP7 !! // Affichage dd/mm/yy //'value' => $materiel->date_acquisition->format('d/m/y'), 'value' => $IS_ADD ? null : ($entity->date_start ? $entity->date_start->format('d/m/Y') : null), // EDIT only //'disabled' => $IS_ADD ? false : $isReadonlyField('date_acquisition', $myReadonlyFields) ]); echo $this->Form->control('date_stop', [ //'empty' => true, 'type' => 'text', 'label' => 'Date fin projet', 'class' => 'datepicker', 'placeholder' => $comment, // ADD only //'default' => date("d/m/Y"), // A CAUSE DE CE FICHU PHP5 ET VIEUX MYSQL !!!, INUTILE EN PHP7 !! // Affichage dd/mm/yy //'value' => $materiel->date_acquisition->format('d/m/y'), 'value' => $IS_ADD ? null : ($entity->date_stop ? $entity->date_stop->format('d/m/Y') : null), // EDIT only //'disabled' => $IS_ADD ? false : $isReadonlyField('date_acquisition', $myReadonlyFields) ]); ?>
Form->submit(__('Valider')) ?> Form->button(__('Submit')) ?> Form->end() ?>