-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportexportoutcomes.php
166 lines (155 loc) · 6.75 KB
/
importexportoutcomes.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
/**
*
* OUTCOMES CSV FILE
* Separator ';'
* outcome_name;outcome_shortname;outcome_description;scale_name;scale_items;scale_description
* "C2i2e-2011 A.1-1 :: Identifier les personnes ressources Tic et leurs rôles respectifs (...)";A.1-1;"Identifier les personnes ressources Tic et leurs rôles respectifs au niveau local, régional et national.";"Item référentiel";"Non pertinent,Non validé,Validé";"Ce barème est destiné à évaluer l'acquisition des compétences du module référentiel."
*
* Skills repositoy outcome_name has to match '/(.*)::(.*)/i' regular expression
* That's mandatory
* @author Jean Fruitet <[email protected]>
* @package mod/checkskill
*/
$separator_outcomes = ';';
// fieldname => output string
$fields_outcomes = array('outcome_name' => 'Outcome name',
'outcome_shortname' => 'Outcome shortname',
'outcome_description' => 'Outcome Description',
'scale_name' => 'Scale name [Item référentiel]',
'scale_items' => 'Item Values [Non pertinent, Non validé, Validé]',
'scale_description' => 'Scale description [Ce barème est destiné à évaluer l\'acquisition des compétences du module référentiel.]');
/**
* Extract skill repository and competency codes from a displaytext field
* outcome_name;outcome_shortname;outcome_description;scale_name;scale_items;scale_description
* "C2i2e-2011 A.1-1 :: Identifier les personnes ressources Tic et leurs rôles respectifs (...)";A.1-1;"Identifier les personnes ressources Tic et leurs rôles respectifs au niveau local, régional et national.";"Item référentiel";"Non pertinent,Non validé,Validé";"Ce barème est destiné à évaluer l'acquisition des compétences du module référentiel."
* | | | description
* | | ^ separator 2 '::'
* ^ separator 1 ' '
* | | competence_code
* | referentiel_code
* @imput displaytext string
* @output object
**/
function get_outcome_code($a_text, $referentielcode=''){
// extract skill repository code and competency code from an outcome_name field
$item_outcome = new stdClass;
if (!empty($a_text)){
if (preg_match('/(.*)::(.*)/i', $a_text, $matches)){
if ($matches[1]){
if ($keywords = preg_split("/[\s]+/",$matches[1],-1,PREG_SPLIT_NO_EMPTY)){
if ($keywords[0] && $keywords[1]){
if ($referentielcode){
$item_outcome->code_referentiel=$referentielcode;
}else{
$item_outcome->code_referentiel=trim($keywords[0]);
}
$item_outcome->code_competence=trim($keywords[1]);
}
else if ($keywords[0]){
if ($referentielcode){
$item_outcome->code_referentiel=$referentielcode;
}else{
$item_outcome->code_referentiel='REF_'.get_string('a_completer', 'checkskill');
}
$item_outcome->code_competence=trim($keywords[0]);
}
else{
return NULL;
}
}
}
else{
return NULL;
}
if (!empty($matches[2])){
$item_outcome->description=trim($matches[2]);
}
else{
$item_outcome->description=get_string('a_completer', 'checkskill');
}
$item_outcome->outcome=$item_outcome->code_referentiel.' '. $item_outcome->code_competence.' :: '.$item_outcome->description;
}
}
/*
print_r($item_outcome);
echo "<br />importexportoutcome.php :: 84 ::EXIT\n";
exit;
*/
return $item_outcome;
}
/**
* uses get_outcome_code()
* @imput string
* @output object
**/
function get_outcome_code_from_item($item, $referentielcode='', $useitemid=false){
if (!empty($item) && !empty($item->checkskill) && !empty($item->displaytext)){
$item_outcome=get_outcome_code($item->displaytext, $referentielcode);
/*
// DEBUG
echo "<br />INPUT\n";
print_object($item_outcome);
echo "<br />\n";
*/
if (empty($item_outcome) || empty($item_outcome->code_competence)){
$chaine=trim($item->displaytext);
$chaine1=str_replace(array("\n","\r","\r\n"),'. ',$chaine);
$chaine=str_replace(array("\n","\r","\r\n"),' ',$chaine);
$keywords = preg_split("/[\s]+/",$chaine,-1,PREG_SPLIT_NO_EMPTY);
if ($keywords){
if (!empty($keywords[1])){
if ($referentielcode){
$item_outcome->code_referentiel=$referentielcode;
}else{
$item_outcome->code_referentiel=trim($keywords[0]);
}
if ($useitemid){
$item_outcome->code_competence='#ID_'.$item->id;
}
else{
$item_outcome->code_competence=trim($keywords[1]);
}
}
else if (!empty($keywords[0])){
if ($useitemid){
$item_outcome->code_competence='#ID_'.$item->id;
}
else{
$item_outcome->code_competence=trim($keywords[0]);
}
if ($referentielcode){
$item_outcome->code_referentiel=$referentielcode;
}
else{
$item_outcome->code_referentiel='REF_'.$item->checkskill;
}
}
}
else{
if ($useitemid){
$item_outcome->code_competence='#ID_'.$item->id;
}
else{
$item_outcome->code_competence=$chaine;
}
if ($referentielcode){
$item_outcome->code_referentiel=$referentielcode;
}
else{
$item_outcome->code_referentiel='REF_'.$item->checkskill;
}
}
$item_outcome->description=$chaine1.' ['.get_string('a_completer', 'checkskill').']';
$item_outcome->outcome=$item_outcome->code_referentiel.' '. $item_outcome->code_competence.' :: '.$item_outcome->description;
}
/*
// DEBUG
echo "<br />SORTIE\n";
print_object($item_outcome);
echo "<br />\n";
*/
return $item_outcome;
}
return NULL;
}