1 |
mlimic |
515 |
<?php |
2 |
|
|
|
3 |
mlimic |
522 |
/* |
4 |
mlimic |
523 |
* Processes requests received via services which concern users. |
5 |
mlimic |
522 |
* |
6 |
|
|
* @author Mirna Limic <[email protected]> |
7 |
|
|
* Date: 18/10/2012 |
8 |
|
|
* |
9 |
|
|
* Follow-up: |
10 |
|
|
* Bugs: |
11 |
|
|
*/ |
12 |
|
|
|
13 |
mlimic |
515 |
class MessagesManager extends MetierManager { |
14 |
|
|
|
15 |
mlimic |
522 |
/* |
16 |
|
|
* Constructor |
17 |
|
|
* |
18 |
|
|
* Calls its parent's constructor. |
19 |
|
|
*/ |
20 |
mlimic |
515 |
function __construct() { |
21 |
|
|
parent::__construct(); |
22 |
|
|
} |
23 |
|
|
|
24 |
mlimic |
522 |
/* |
25 |
|
|
* Destructor |
26 |
|
|
* |
27 |
|
|
* Calls its parent's destructor. |
28 |
|
|
*/ |
29 |
mlimic |
515 |
function __destruct() { |
30 |
|
|
parent::__destruct(); |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
|
34 |
mlimic |
522 |
/* |
35 |
|
|
* Called when ERP wants to indicate if the dossier d'instruction |
36 |
|
|
* is complete with respect to services for handicapped persons. |
37 |
|
|
* |
38 |
|
|
* @param mixed $data The data received in the request. |
39 |
|
|
* @return string 'OK'. |
40 |
|
|
*/ |
41 |
mlimic |
515 |
function completude_dossier_ACC($data) { |
42 |
|
|
return $this->OK; |
43 |
|
|
} |
44 |
|
|
|
45 |
|
|
|
46 |
mlimic |
522 |
/* |
47 |
|
|
* Called when ERP wants to indicate if the dossier d'instruction |
48 |
|
|
* is complete with respect to security (e.g. fire) regulations. |
49 |
|
|
* |
50 |
|
|
* @param mixed $data The data received in the request. |
51 |
|
|
* @return string 'OK'. |
52 |
|
|
*/ |
53 |
mlimic |
515 |
function completude_dossier_SECU($data) { |
54 |
|
|
return $this->OK; |
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
|
58 |
mlimic |
522 |
/* |
59 |
|
|
* Called when ERP wants to indicate if the dossier d'instruction |
60 |
|
|
* is an ERP dossier or not. |
61 |
|
|
* |
62 |
|
|
* @param mixed $data The data received in the request. |
63 |
|
|
* @return string 'OK'. |
64 |
|
|
*/ |
65 |
mlimic |
515 |
function qualification_dossier($data) { |
66 |
|
|
return $this->OK; |
67 |
|
|
} |
68 |
|
|
|
69 |
|
|
|
70 |
mlimic |
522 |
/* |
71 |
|
|
* Called when ERP wants to indicate if the dossier d'instruction |
72 |
|
|
* is important, i.e. dossier a enjeux. |
73 |
|
|
* |
74 |
|
|
* @param mixed $data The data received in the request. |
75 |
|
|
* @return string 'OK'. |
76 |
|
|
*/ |
77 |
mlimic |
515 |
function dossier_enjeux($data) { |
78 |
|
|
return $this->OK; |
79 |
|
|
} |
80 |
|
|
|
81 |
|
|
} |
82 |
|
|
|
83 |
|
|
?> |