Configuration.php 1.72 KB
<?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,
    ];
}