Blame view

src/Model/Table/FormulesTable.php 1.27 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
namespace App\Model\Table;

use App\Model\Entity\Formule;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;

/**
 * Formules Model
 *
 * @property \Cake\ORM\Association\BelongsTo $Fichemetrologique
 * @property \Cake\ORM\Association\HasMany $Variables
 */
class FormulesTable extends AppTable
{

    /**
     * Initialize method
     *
63c3cb16   epallier   Nombreux petits b...
22
23
     * @param array $config
     *            The configuration for the Table.
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
24
25
26
27
28
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);
63c3cb16   epallier   Nombreux petits b...
29
        
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
30
31
32
        $this->table('formules');
        $this->displayField('id');
        $this->primaryKey('id');
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
33
34
        
        $this->belongsTo('Fichemetrologiques', [
63c3cb16   epallier   Nombreux petits b...
35
            'foreignKey' => 'formule_id'
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
36
37
38
        ]);
        $this->hasMany('Variables', [
            'foreignKey' => 'formule_id',
63c3cb16   epallier   Nombreux petits b...
39
            'dependent' => true
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
40
41
42
43
44
45
        ]);
    }

    /**
     * Default validation rules.
     *
63c3cb16   epallier   Nombreux petits b...
46
47
     * @param \Cake\Validation\Validator $validator
     *            Validator instance.
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
48
49
50
51
     * @return \Cake\Validation\Validator
     */
    public function validationDefault(Validator $validator)
    {
63c3cb16   epallier   Nombreux petits b...
52
53
        $validator->integer('id')->allowEmpty('id', 'create');
        
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
54
55
        return $validator;
    }
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
56
}