Blame view

src/Model/Entity/Projet.php 1.39 KB
e66a89f2   Etienne Pallier   Ajout de l'entité...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Projet Entity
 *
 * @property int $id
 * @property string $nom
 * @property string|null $description
 * @property int|null $groupes_thematique_id
 * @property string|null $chef_science_id
 * @property string|null $chef_projet_id
 * @property \Cake\I18n\FrozenDate|null $date_start
 * @property \Cake\I18n\FrozenDate|null $date_stop
 *
 * @property \App\Model\Entity\GroupesThematique $groupes_thematique
 * @property \App\Model\Entity\Materiel[] $materiels
 */
class Projet extends Entity
{
    /**
     * Fields that can be mass assigned using newEntity() or patchEntity().
     *
     * Note that when '*' is set to true, this allows all unspecified fields to
     * be mass assigned. For security purposes, it is advised to set '*' to false
     * (or remove it), and explicitly make individual fields accessible as needed.
     *
     * @var array
     */
    protected $_accessible = [
        '*' => true,
        'id' => false
    ];
    /*
    protected $_accessible = [
        'nom' => true,
        'description' => true,
        'groupes_thematique_id' => true,
        'chef_science_id' => true,
        'chef_projet_id' => true,
        'date_start' => true,
        'date_stop' => true,
        'groupes_thematique' => true,
        'materiels' => true,
        'Pis' => true,
        'Pms' => true
        //'user' => true,
    ];
    */
}