Blame view

src/Model/Entity/Configuration.php 1.66 KB
9be43b8a   Alexandre   #3523 Implémentai...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Configuration Entity.
 *
 * @property int $id
 * @property string $nom
 * @property bool $mode_install
 * @property bool $mode_debug
 * @property bool $use_ldap
 * @property string $host_ldap
 * @property string $port_ldap
 * @property string $authentificationType_ldap
 * @property string $baseDn_ldap
 * @property string $filter_ldap
 * @property string $labName
 * @property string $labNameShort
 * @property string $labPresent
 * @property string $labUmr
 * @property bool $hasPrinter
e3633c13   Alexandre   Version: 2.4.2.23
24
25
 * @property string $nom_groupe_thematique
 * @property string $nom_groupe_metier
72d73dc4   Alexandre   Version: 2.4.3.2
26
 * @property bool $envoi_mail_management_dev
3ab8435b   Alexandre   Version: 2.4.6.4
27
 * @property string $sender_mail
9be43b8a   Alexandre   #3523 Implémentai...
28
29
30
 * @property string $emailGuest1
 * @property string $emailGuest2
 * @property string $emailGuest3
e3633c13   Alexandre   Version: 2.4.2.23
31
32
 * @property string $emailGuest4
 * @property string $emailGuest5
d58b8953   Alexandre   Version: 2.4.4.0
33
34
35
36
37
 * @property string $emailGuest6
 * @property string $emailGuest7
 * @property string $emailGuest8
 * @property string $emailGuest9
 * @property string $emailGuest10
72d73dc4   Alexandre   Version: 2.4.3.2
38
 * @property bool $test
15ebf91f   Alexandre   Version: 2.4.7.2
39
40
 * @property bool $date_commande_facultative
 * @property bool $numero_labo_sans_annee
9cfb4997   Alexandre   Version: 2.4.3.10
41
 * @property int $prix_inventaire_administratif
9be43b8a   Alexandre   #3523 Implémentai...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 */
class Configuration 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,
    ];
}