-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.php
46 lines (45 loc) · 1.13 KB
/
data.php
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
<?php
$users = array(
array(
'prenom' => 'David',
'nom' => 'BITTON',
'bu' => 'MyBestPro',
'poste' => 9,//Directeur général
'image' => '1.jpg',
'envies' => array(
6,//Chef de produit
1
)
),
array(
'prenom' => 'Laurent',
'nom' => 'Garcia',
'bu' => 'RDVMedicaux',
'poste' => 1,
'image' => 'hani.jpg',
'envies' => array(
3
)
),
array(
'prenom' => 'Alexia',
'nom' => 'SAVVA',
'bu' => 'Wengo',
'poste' => 3,
'image' => 'hani.jpg',
'envies' => array(
1
)
)
);
$jobsList = array(
9 => 'Directeur général',
4 => 'Comptable',
5 => 'Assistant de direction',
7 => 'Direction administrative',
8 => 'Rédacteur web',
6 => 'Chef de produit',
2 => 'Chef de projet',
1 => 'Développeur web',
3 => 'Intégrateur web'
);