Configuration.php
1.72 KB
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
53
54
55
56
57
58
59
60
61
<?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
* @property string $nom_groupe_thematique
* @property string $nom_groupe_metier
* @property bool $envoi_mail_management_dev
* @property string $sender_mail
* @property string $emailGuest1
* @property string $emailGuest2
* @property string $emailGuest3
* @property string $emailGuest4
* @property string $emailGuest5
* @property string $emailGuest6
* @property string $emailGuest7
* @property string $emailGuest8
* @property string $emailGuest9
* @property string $emailGuest10
* @property bool $test
* @property bool $date_commande_facultative
* @property bool $numero_labo_sans_annee
* @property int $prix_inventaire_administratif
* @property int $taille_max_doc
* @property bool $metrologie
*/
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
];
}