Blame view

src/Model/Table/TypeSuivisTable.php 1.24 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
<?php
namespace App\Model\Table;

6c4edfa3   Alexandre   First Commit LabI...
4
5
6
7
8
9
use Cake\ORM\Table;
use Cake\Validation\Validator;

/**
 * TypeSuivis Model
 *
ebe38bef   Alexandre   #3586 Ajout assoc...
10
 * @property \Cake\ORM\Association\HasMany $Suivis
6c4edfa3   Alexandre   First Commit LabI...
11
 */
0e5846aa   Alexandre   Css bouton valide...
12
class TypeSuivisTable extends AppTable
6c4edfa3   Alexandre   First Commit LabI...
13
14
15
16
17
{

    /**
     * Initialize method
     *
63c3cb16   epallier   Nombreux petits b...
18
19
     * @param array $config
     *            The configuration for the Table.
6c4edfa3   Alexandre   First Commit LabI...
20
21
22
23
24
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);
63c3cb16   epallier   Nombreux petits b...
25
        
6c4edfa3   Alexandre   First Commit LabI...
26
27
28
        $this->table('type_suivis');
        $this->displayField('id');
        $this->primaryKey('id');
ebe38bef   Alexandre   #3586 Ajout assoc...
29
30
        
        $this->hasMany('Suivis', [
63c3cb16   epallier   Nombreux petits b...
31
            'foreignKey' => 'type_suivi_id'
ebe38bef   Alexandre   #3586 Ajout assoc...
32
        ]);
6c4edfa3   Alexandre   First Commit LabI...
33
34
35
36
37
    }

    /**
     * Default validation rules.
     *
63c3cb16   epallier   Nombreux petits b...
38
39
     * @param \Cake\Validation\Validator $validator
     *            Validator instance.
6c4edfa3   Alexandre   First Commit LabI...
40
41
42
43
     * @return \Cake\Validation\Validator
     */
    public function validationDefault(Validator $validator)
    {
63c3cb16   epallier   Nombreux petits b...
44
45
46
47
48
49
50
51
52
53
        $validator->integer('id')->allowEmpty('id', 'create');
        
        $validator->allowEmpty('nom')->add('nom', 'valid', [
            'rule' => [
                'check_string'
            ],
            'message' => 'Le champ doit ĂȘtre valide.',
            'provider' => 'table'
        ]);
        
6c4edfa3   Alexandre   First Commit LabI...
54
55
56
        return $validator;
    }
}