1 |
<?php |
2 |
|
3 |
/* |
4 |
* Processes requests received via services which concern users. |
5 |
* |
6 |
* @author Mirna Limic <[email protected]> |
7 |
* Date: 18/10/2012 |
8 |
* |
9 |
* Follow-up: |
10 |
* Bugs: |
11 |
*/ |
12 |
|
13 |
class MessagesManager extends MetierManager { |
14 |
|
15 |
/* |
16 |
* Constructor |
17 |
* |
18 |
* Calls its parent's constructor. |
19 |
*/ |
20 |
public function __construct() { |
21 |
parent::__construct(); |
22 |
} |
23 |
|
24 |
/* |
25 |
* Destructor |
26 |
* |
27 |
* Calls its parent's destructor. |
28 |
*/ |
29 |
public function __destruct() { |
30 |
parent::__destruct(); |
31 |
} |
32 |
|
33 |
|
34 |
/* |
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 |
public function completude_dossier_ACC($data) { |
42 |
return $this->OK; |
43 |
} |
44 |
|
45 |
|
46 |
/* |
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 |
public function completude_dossier_SECU($data) { |
54 |
return $this->OK; |
55 |
} |
56 |
|
57 |
|
58 |
/* |
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 |
public function qualification_dossier($data) { |
66 |
return $this->OK; |
67 |
} |
68 |
|
69 |
|
70 |
/* |
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 |
public function dossier_enjeux($data) { |
78 |
return $this->OK; |
79 |
} |
80 |
|
81 |
} |
82 |
|
83 |
?> |