* Copyright 2016 Nicolas Goaziou * * This file is part of CHD Gestion. * * CHD Gestion is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * CHD Gestion is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with CHD Gestion. If not, see . **/ ?>
Form->create($adherent) ?>
Form->input('adherent_statut_id', ['options' => $adherentStatuts]); ?>
Form->input('num_adt_ttn'); ?>
Form->input('adherent_type_id', ['options' => $adherentTypes]); echo $this->Form->input('civilite_id', ['options' => $civilites]); echo $this->Form->input('nom'); echo $this->Form->input('prenom'); echo $this->Form->input('raison'); echo $this->Form->input('tel_fixe1'); echo $this->Form->input('tel_mobile1'); ?>
Form->input('adresse1'); echo $this->Form->input('adresse2'); echo $this->Form->input('ville_id', ['options' => $villes]); echo $this->Form->input('mail1'); echo $this->Form->input('mail2'); echo $this->Form->input('tel_fixe2'); echo $this->Form->input('tel_mobile2'); ?>
Form->input('proprio'); echo $this->Form->input('nom2'); echo $this->Form->input('prenom2'); ?>
Form->input('notes', ['rows' => 7]); ?>
Form->button(__('Submit')) ?> Form->end() ?>