30 lines
598 B
PHP
30 lines
598 B
PHP
<?php
|
|
return array(
|
|
'entreprise' => array(
|
|
'actif' => true,
|
|
),
|
|
'interne' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
'gestion' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
'extraction' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
'exporter' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
'saisie' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
'pieces' => array(
|
|
'actif' => true,
|
|
'idClient' => 1,
|
|
),
|
|
); |