Blame view

src/Model/Table/VariablesTable.php 1.09 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
<?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;

/**
 * Variables Model
 *
 * @property \Cake\ORM\Association\BelongsTo $Formule
 */
class VariablesTable extends AppTable
{

    /**
     * Initialize method
     *
63c3cb16   epallier   Nombreux petits b...
21
22
     * @param array $config
     *            The configuration for the Table.
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
23
24
25
26
27
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);
63c3cb16   epallier   Nombreux petits b...
28
        
39547043   Etienne Pallier   Mise à jour frame...
29
30
31
        $this->setTable('variables');
        $this->setDisplayField('id');
        $this->setPrimaryKey('id');
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
32
33
        
        $this->belongsTo('Formules', [
63c3cb16   epallier   Nombreux petits b...
34
            'foreignKey' => 'formule_id'
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
35
        ]);
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
36
37
38
39
40
    }

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