@@ -95,7 +95,7 @@ |
||
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Get the progress of this learnpath. Only the last attempt are taken into account. |
98 | - * @param $stud_id student id (default: all students who have results - then the average is returned) |
|
98 | + * @param integer $stud_id student id (default: all students who have results - then the average is returned) |
|
99 | 99 | * @return array (score, max) if student is given |
100 | 100 | * array (sum of scores, number of scores) otherwise |
101 | 101 | * or null if no scores available |
@@ -29,8 +29,9 @@ discard block |
||
29 | 29 | public function get_not_created_links() |
30 | 30 | { |
31 | 31 | return false; |
32 | - if (empty($this->course_code)) |
|
33 | - die('Error in get_not_created_links() : course code not set'); |
|
32 | + if (empty($this->course_code)) { |
|
33 | + die('Error in get_not_created_links() : course code not set'); |
|
34 | + } |
|
34 | 35 | |
35 | 36 | $tbl_grade_links = Database :: get_main_table(TABLE_MAIN_GRADEBOOK_LINK); |
36 | 37 | |
@@ -57,8 +58,9 @@ discard block |
||
57 | 58 | */ |
58 | 59 | public function get_all_links() |
59 | 60 | { |
60 | - if (empty($this->course_code)) |
|
61 | - die('Error in get_not_created_links() : course code not set'); |
|
61 | + if (empty($this->course_code)) { |
|
62 | + die('Error in get_not_created_links() : course code not set'); |
|
63 | + } |
|
62 | 64 | |
63 | 65 | $session_id = api_get_session_id(); |
64 | 66 | if (empty($session_id)) { |
@@ -111,8 +113,9 @@ discard block |
||
111 | 113 | lp_id = ".$this->get_ref_id()." AND |
112 | 114 | session_id = $session_id "; |
113 | 115 | |
114 | - if (isset($stud_id)) |
|
115 | - $sql .= ' AND user_id = '.intval($stud_id); |
|
116 | + if (isset($stud_id)) { |
|
117 | + $sql .= ' AND user_id = '.intval($stud_id); |
|
118 | + } |
|
116 | 119 | |
117 | 120 | // order by id, that way the student's first attempt is accessed first |
118 | 121 | $sql .= ' ORDER BY view_count DESC'; |
@@ -122,8 +125,9 @@ discard block |
||
122 | 125 | if (isset($stud_id)) { |
123 | 126 | if ($data = Database::fetch_array($scores)) { |
124 | 127 | return array ($data['progress'], 100); |
125 | - } else |
|
126 | - return null; |
|
128 | + } else { |
|
129 | + return null; |
|
130 | + } |
|
127 | 131 | } else { |
128 | 132 | // all students -> get average |
129 | 133 | $students = array(); // user list, needed to make sure we only |
@@ -9,261 +9,261 @@ |
||
9 | 9 | */ |
10 | 10 | class LearnpathLink extends AbstractLink |
11 | 11 | { |
12 | - private $course_info = null; |
|
13 | - private $learnpath_table = null; |
|
14 | - private $learnpath_data = null; |
|
15 | - |
|
16 | - /** |
|
17 | - * Constructor |
|
18 | - */ |
|
19 | - public function __construct() |
|
20 | - { |
|
21 | - parent::__construct(); |
|
22 | - $this->set_type(LINK_LEARNPATH); |
|
23 | - } |
|
24 | - |
|
25 | - /** |
|
26 | - * Generate an array of learnpaths that a teacher hasn't created a link for. |
|
27 | - * @return array 2-dimensional array - every element contains 2 subelements (id, name) |
|
28 | - */ |
|
29 | - public function get_not_created_links() |
|
30 | - { |
|
31 | - return false; |
|
32 | - if (empty($this->course_code)) |
|
33 | - die('Error in get_not_created_links() : course code not set'); |
|
34 | - |
|
35 | - $tbl_grade_links = Database :: get_main_table(TABLE_MAIN_GRADEBOOK_LINK); |
|
36 | - |
|
37 | - $sql = 'SELECT id, name from '.$this->get_learnpath_table().' lp |
|
12 | + private $course_info = null; |
|
13 | + private $learnpath_table = null; |
|
14 | + private $learnpath_data = null; |
|
15 | + |
|
16 | + /** |
|
17 | + * Constructor |
|
18 | + */ |
|
19 | + public function __construct() |
|
20 | + { |
|
21 | + parent::__construct(); |
|
22 | + $this->set_type(LINK_LEARNPATH); |
|
23 | + } |
|
24 | + |
|
25 | + /** |
|
26 | + * Generate an array of learnpaths that a teacher hasn't created a link for. |
|
27 | + * @return array 2-dimensional array - every element contains 2 subelements (id, name) |
|
28 | + */ |
|
29 | + public function get_not_created_links() |
|
30 | + { |
|
31 | + return false; |
|
32 | + if (empty($this->course_code)) |
|
33 | + die('Error in get_not_created_links() : course code not set'); |
|
34 | + |
|
35 | + $tbl_grade_links = Database :: get_main_table(TABLE_MAIN_GRADEBOOK_LINK); |
|
36 | + |
|
37 | + $sql = 'SELECT id, name from '.$this->get_learnpath_table().' lp |
|
38 | 38 | WHERE c_id = '.$this->course_id.' AND id NOT IN ' |
39 | - .' (SELECT ref_id FROM '.$tbl_grade_links |
|
40 | - .' WHERE type = '.LINK_LEARNPATH |
|
41 | - ." AND course_code = '".$this->get_course_code()."'" |
|
42 | - .') AND lp.session_id='.api_get_session_id().''; |
|
43 | - |
|
44 | - $result = Database::query($sql); |
|
45 | - |
|
46 | - $cats=array(); |
|
47 | - while ($data=Database::fetch_array($result)) { |
|
48 | - $cats[] = array ($data['id'], $data['name']); |
|
49 | - } |
|
50 | - |
|
51 | - return $cats; |
|
52 | - } |
|
53 | - |
|
54 | - /** |
|
55 | - * Generate an array of all learnpaths available. |
|
56 | - * @return array 2-dimensional array - every element contains 2 subelements (id, name) |
|
57 | - */ |
|
58 | - public function get_all_links() |
|
59 | - { |
|
60 | - if (empty($this->course_code)) |
|
61 | - die('Error in get_not_created_links() : course code not set'); |
|
62 | - |
|
63 | - $session_id = api_get_session_id(); |
|
64 | - if (empty($session_id)) { |
|
65 | - $session_condition = api_get_session_condition(0, true); |
|
66 | - } else { |
|
67 | - $session_condition = api_get_session_condition($session_id, true, true); |
|
68 | - } |
|
69 | - |
|
70 | - $sql = 'SELECT id, name FROM '.$this->get_learnpath_table().' |
|
39 | + .' (SELECT ref_id FROM '.$tbl_grade_links |
|
40 | + .' WHERE type = '.LINK_LEARNPATH |
|
41 | + ." AND course_code = '".$this->get_course_code()."'" |
|
42 | + .') AND lp.session_id='.api_get_session_id().''; |
|
43 | + |
|
44 | + $result = Database::query($sql); |
|
45 | + |
|
46 | + $cats=array(); |
|
47 | + while ($data=Database::fetch_array($result)) { |
|
48 | + $cats[] = array ($data['id'], $data['name']); |
|
49 | + } |
|
50 | + |
|
51 | + return $cats; |
|
52 | + } |
|
53 | + |
|
54 | + /** |
|
55 | + * Generate an array of all learnpaths available. |
|
56 | + * @return array 2-dimensional array - every element contains 2 subelements (id, name) |
|
57 | + */ |
|
58 | + public function get_all_links() |
|
59 | + { |
|
60 | + if (empty($this->course_code)) |
|
61 | + die('Error in get_not_created_links() : course code not set'); |
|
62 | + |
|
63 | + $session_id = api_get_session_id(); |
|
64 | + if (empty($session_id)) { |
|
65 | + $session_condition = api_get_session_condition(0, true); |
|
66 | + } else { |
|
67 | + $session_condition = api_get_session_condition($session_id, true, true); |
|
68 | + } |
|
69 | + |
|
70 | + $sql = 'SELECT id, name FROM '.$this->get_learnpath_table().' |
|
71 | 71 | WHERE c_id = '.$this->course_id.' '.$session_condition.' '; |
72 | - $result = Database::query($sql); |
|
72 | + $result = Database::query($sql); |
|
73 | 73 | |
74 | - $cats = array(); |
|
75 | - while ($data=Database::fetch_array($result)) { |
|
76 | - $cats[] = array ($data['id'], $data['name']); |
|
77 | - } |
|
74 | + $cats = array(); |
|
75 | + while ($data=Database::fetch_array($result)) { |
|
76 | + $cats[] = array ($data['id'], $data['name']); |
|
77 | + } |
|
78 | 78 | |
79 | - return $cats; |
|
80 | - } |
|
79 | + return $cats; |
|
80 | + } |
|
81 | 81 | |
82 | 82 | |
83 | - /** |
|
84 | - * Has anyone used this learnpath yet ? |
|
85 | - */ |
|
86 | - public function has_results() |
|
87 | - { |
|
88 | - $tbl_stats = Database::get_course_table(TABLE_LP_VIEW); |
|
89 | - $sql = "SELECT count(id) AS number FROM $tbl_stats |
|
83 | + /** |
|
84 | + * Has anyone used this learnpath yet ? |
|
85 | + */ |
|
86 | + public function has_results() |
|
87 | + { |
|
88 | + $tbl_stats = Database::get_course_table(TABLE_LP_VIEW); |
|
89 | + $sql = "SELECT count(id) AS number FROM $tbl_stats |
|
90 | 90 | WHERE c_id = ".$this->course_id." AND lp_id = ".$this->get_ref_id(); |
91 | - $result = Database::query($sql); |
|
92 | - $number = Database::fetch_array($result,'NUM'); |
|
93 | - return ($number[0] != 0); |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * Get the progress of this learnpath. Only the last attempt are taken into account. |
|
98 | - * @param $stud_id student id (default: all students who have results - then the average is returned) |
|
99 | - * @return array (score, max) if student is given |
|
100 | - * array (sum of scores, number of scores) otherwise |
|
101 | - * or null if no scores available |
|
102 | - */ |
|
103 | - public function calc_score($stud_id = null, $type = null) |
|
104 | - { |
|
105 | - $tbl_stats = Database::get_course_table(TABLE_LP_VIEW); |
|
106 | - $session_id = api_get_session_id(); |
|
107 | - |
|
108 | - $sql = "SELECT * FROM $tbl_stats |
|
91 | + $result = Database::query($sql); |
|
92 | + $number = Database::fetch_array($result,'NUM'); |
|
93 | + return ($number[0] != 0); |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * Get the progress of this learnpath. Only the last attempt are taken into account. |
|
98 | + * @param $stud_id student id (default: all students who have results - then the average is returned) |
|
99 | + * @return array (score, max) if student is given |
|
100 | + * array (sum of scores, number of scores) otherwise |
|
101 | + * or null if no scores available |
|
102 | + */ |
|
103 | + public function calc_score($stud_id = null, $type = null) |
|
104 | + { |
|
105 | + $tbl_stats = Database::get_course_table(TABLE_LP_VIEW); |
|
106 | + $session_id = api_get_session_id(); |
|
107 | + |
|
108 | + $sql = "SELECT * FROM $tbl_stats |
|
109 | 109 | WHERE |
110 | 110 | c_id = ".$this->course_id." AND |
111 | 111 | lp_id = ".$this->get_ref_id()." AND |
112 | 112 | session_id = $session_id "; |
113 | 113 | |
114 | - if (isset($stud_id)) |
|
115 | - $sql .= ' AND user_id = '.intval($stud_id); |
|
116 | - |
|
117 | - // order by id, that way the student's first attempt is accessed first |
|
118 | - $sql .= ' ORDER BY view_count DESC'; |
|
119 | - |
|
120 | - $scores = Database::query($sql); |
|
121 | - // for 1 student |
|
122 | - if (isset($stud_id)) { |
|
123 | - if ($data = Database::fetch_assoc($scores)) { |
|
124 | - return array ($data['progress'], 100); |
|
125 | - } else |
|
126 | - return null; |
|
127 | - } else { |
|
128 | - // all students -> get average |
|
129 | - $students = array(); // user list, needed to make sure we only |
|
130 | - // take first attempts into account |
|
131 | - $rescount = 0; |
|
132 | - $sum = 0; |
|
133 | - $bestResult = 0; |
|
134 | - $sumResult = 0; |
|
135 | - while ($data = Database::fetch_array($scores)) { |
|
136 | - if (!(array_key_exists($data['user_id'], $students))) { |
|
137 | - $students[$data['user_id']] = $data['progress']; |
|
138 | - $rescount++; |
|
139 | - $sum += $data['progress'] / 100; |
|
140 | - $sumResult += $data['progress']; |
|
141 | - |
|
142 | - if ($data['progress'] > $bestResult) { |
|
143 | - $bestResult = $data['progress']; |
|
144 | - } |
|
145 | - } |
|
146 | - } |
|
147 | - |
|
148 | - if ($rescount == 0) { |
|
149 | - return null; |
|
150 | - } else { |
|
151 | - |
|
152 | - switch ($type) { |
|
153 | - case 'best': |
|
154 | - return array($bestResult, 100); |
|
155 | - break; |
|
156 | - case 'average': |
|
157 | - return array($sumResult/$rescount, 100); |
|
158 | - break; |
|
159 | - case 'ranking': |
|
160 | - return AbstractLink::getCurrentUserRanking($stud_id, $students); |
|
161 | - break; |
|
162 | - default: |
|
163 | - return array($sum, $rescount); |
|
164 | - break; |
|
165 | - } |
|
166 | - } |
|
167 | - } |
|
168 | - } |
|
169 | - |
|
170 | - /** |
|
171 | - * Get URL where to go to if the user clicks on the link. |
|
172 | - */ |
|
173 | - public function get_link() |
|
174 | - { |
|
175 | - $session_id = api_get_session_id(); |
|
176 | - $url = api_get_path(WEB_CODE_PATH) . 'lp/lp_controller.php?'.api_get_cidreq_params($this->get_course_code(), $session_id).'&gradebook=view'; |
|
177 | - |
|
178 | - if (!api_is_allowed_to_edit() || $this->calc_score(api_get_user_id()) == null) { |
|
179 | - $url .= '&action=view&lp_id='.$this->get_ref_id(); |
|
180 | - } else { |
|
181 | - $url .= '&action=build&lp_id='.$this->get_ref_id(); |
|
182 | - } |
|
183 | - return $url; |
|
184 | - } |
|
185 | - |
|
186 | - /** |
|
187 | - * Get name to display: same as learnpath title |
|
188 | - */ |
|
189 | - public function get_name() |
|
190 | - { |
|
191 | - $data = $this->get_learnpath_data(); |
|
192 | - return $data['name']; |
|
193 | - } |
|
194 | - |
|
195 | - /** |
|
196 | - * Get description to display: same as learnpath description |
|
197 | - */ |
|
198 | - public function get_description() |
|
199 | - { |
|
200 | - $data = $this->get_learnpath_data(); |
|
201 | - return $data['description']; |
|
202 | - } |
|
203 | - |
|
204 | - /** |
|
205 | - * Check if this still links to a learnpath |
|
206 | - */ |
|
207 | - public function is_valid_link() { |
|
208 | - $sql = 'SELECT count(id) FROM '.$this->get_learnpath_table().' |
|
114 | + if (isset($stud_id)) |
|
115 | + $sql .= ' AND user_id = '.intval($stud_id); |
|
116 | + |
|
117 | + // order by id, that way the student's first attempt is accessed first |
|
118 | + $sql .= ' ORDER BY view_count DESC'; |
|
119 | + |
|
120 | + $scores = Database::query($sql); |
|
121 | + // for 1 student |
|
122 | + if (isset($stud_id)) { |
|
123 | + if ($data = Database::fetch_assoc($scores)) { |
|
124 | + return array ($data['progress'], 100); |
|
125 | + } else |
|
126 | + return null; |
|
127 | + } else { |
|
128 | + // all students -> get average |
|
129 | + $students = array(); // user list, needed to make sure we only |
|
130 | + // take first attempts into account |
|
131 | + $rescount = 0; |
|
132 | + $sum = 0; |
|
133 | + $bestResult = 0; |
|
134 | + $sumResult = 0; |
|
135 | + while ($data = Database::fetch_array($scores)) { |
|
136 | + if (!(array_key_exists($data['user_id'], $students))) { |
|
137 | + $students[$data['user_id']] = $data['progress']; |
|
138 | + $rescount++; |
|
139 | + $sum += $data['progress'] / 100; |
|
140 | + $sumResult += $data['progress']; |
|
141 | + |
|
142 | + if ($data['progress'] > $bestResult) { |
|
143 | + $bestResult = $data['progress']; |
|
144 | + } |
|
145 | + } |
|
146 | + } |
|
147 | + |
|
148 | + if ($rescount == 0) { |
|
149 | + return null; |
|
150 | + } else { |
|
151 | + |
|
152 | + switch ($type) { |
|
153 | + case 'best': |
|
154 | + return array($bestResult, 100); |
|
155 | + break; |
|
156 | + case 'average': |
|
157 | + return array($sumResult/$rescount, 100); |
|
158 | + break; |
|
159 | + case 'ranking': |
|
160 | + return AbstractLink::getCurrentUserRanking($stud_id, $students); |
|
161 | + break; |
|
162 | + default: |
|
163 | + return array($sum, $rescount); |
|
164 | + break; |
|
165 | + } |
|
166 | + } |
|
167 | + } |
|
168 | + } |
|
169 | + |
|
170 | + /** |
|
171 | + * Get URL where to go to if the user clicks on the link. |
|
172 | + */ |
|
173 | + public function get_link() |
|
174 | + { |
|
175 | + $session_id = api_get_session_id(); |
|
176 | + $url = api_get_path(WEB_CODE_PATH) . 'lp/lp_controller.php?'.api_get_cidreq_params($this->get_course_code(), $session_id).'&gradebook=view'; |
|
177 | + |
|
178 | + if (!api_is_allowed_to_edit() || $this->calc_score(api_get_user_id()) == null) { |
|
179 | + $url .= '&action=view&lp_id='.$this->get_ref_id(); |
|
180 | + } else { |
|
181 | + $url .= '&action=build&lp_id='.$this->get_ref_id(); |
|
182 | + } |
|
183 | + return $url; |
|
184 | + } |
|
185 | + |
|
186 | + /** |
|
187 | + * Get name to display: same as learnpath title |
|
188 | + */ |
|
189 | + public function get_name() |
|
190 | + { |
|
191 | + $data = $this->get_learnpath_data(); |
|
192 | + return $data['name']; |
|
193 | + } |
|
194 | + |
|
195 | + /** |
|
196 | + * Get description to display: same as learnpath description |
|
197 | + */ |
|
198 | + public function get_description() |
|
199 | + { |
|
200 | + $data = $this->get_learnpath_data(); |
|
201 | + return $data['description']; |
|
202 | + } |
|
203 | + |
|
204 | + /** |
|
205 | + * Check if this still links to a learnpath |
|
206 | + */ |
|
207 | + public function is_valid_link() { |
|
208 | + $sql = 'SELECT count(id) FROM '.$this->get_learnpath_table().' |
|
209 | 209 | WHERE c_id = '.$this->course_id.' AND id = '.$this->get_ref_id().' '; |
210 | - $result = Database::query($sql); |
|
211 | - $number = Database::fetch_row($result,'NUM'); |
|
212 | - return ($number[0] != 0); |
|
213 | - } |
|
214 | - |
|
215 | - public function get_type_name() |
|
216 | - { |
|
217 | - return get_lang('LearningPaths'); |
|
218 | - } |
|
219 | - |
|
220 | - public function needs_name_and_description() |
|
221 | - { |
|
222 | - return false; |
|
223 | - } |
|
224 | - |
|
225 | - public function needs_max() |
|
226 | - { |
|
227 | - return false; |
|
228 | - } |
|
229 | - |
|
230 | - public function needs_results() |
|
231 | - { |
|
232 | - return false; |
|
233 | - } |
|
234 | - |
|
235 | - public function is_allowed_to_change_name() |
|
236 | - { |
|
237 | - return false; |
|
238 | - } |
|
239 | - |
|
240 | - // INTERNAL FUNCTIONS |
|
241 | - |
|
242 | - /** |
|
243 | - * Lazy load function to get the database table of the learnpath |
|
244 | - */ |
|
245 | - private function get_learnpath_table() |
|
246 | - { |
|
247 | - $this->learnpath_table = Database :: get_course_table(TABLE_LP_MAIN); |
|
248 | - return $this->learnpath_table; |
|
249 | - } |
|
250 | - |
|
251 | - /** |
|
252 | - * Lazy load function to get the database contents of this learnpath |
|
253 | - */ |
|
254 | - private function get_learnpath_data() |
|
255 | - { |
|
256 | - if (!isset($this->learnpath_data)) { |
|
257 | - $sql = 'SELECT * FROM '.$this->get_learnpath_table().' |
|
210 | + $result = Database::query($sql); |
|
211 | + $number = Database::fetch_row($result,'NUM'); |
|
212 | + return ($number[0] != 0); |
|
213 | + } |
|
214 | + |
|
215 | + public function get_type_name() |
|
216 | + { |
|
217 | + return get_lang('LearningPaths'); |
|
218 | + } |
|
219 | + |
|
220 | + public function needs_name_and_description() |
|
221 | + { |
|
222 | + return false; |
|
223 | + } |
|
224 | + |
|
225 | + public function needs_max() |
|
226 | + { |
|
227 | + return false; |
|
228 | + } |
|
229 | + |
|
230 | + public function needs_results() |
|
231 | + { |
|
232 | + return false; |
|
233 | + } |
|
234 | + |
|
235 | + public function is_allowed_to_change_name() |
|
236 | + { |
|
237 | + return false; |
|
238 | + } |
|
239 | + |
|
240 | + // INTERNAL FUNCTIONS |
|
241 | + |
|
242 | + /** |
|
243 | + * Lazy load function to get the database table of the learnpath |
|
244 | + */ |
|
245 | + private function get_learnpath_table() |
|
246 | + { |
|
247 | + $this->learnpath_table = Database :: get_course_table(TABLE_LP_MAIN); |
|
248 | + return $this->learnpath_table; |
|
249 | + } |
|
250 | + |
|
251 | + /** |
|
252 | + * Lazy load function to get the database contents of this learnpath |
|
253 | + */ |
|
254 | + private function get_learnpath_data() |
|
255 | + { |
|
256 | + if (!isset($this->learnpath_data)) { |
|
257 | + $sql = 'SELECT * FROM '.$this->get_learnpath_table().' |
|
258 | 258 | WHERE c_id = '.$this->course_id.' AND id = '.$this->get_ref_id().' '; |
259 | - $result = Database::query($sql); |
|
260 | - $this->learnpath_data = Database::fetch_array($result); |
|
261 | - } |
|
262 | - return $this->learnpath_data; |
|
263 | - } |
|
264 | - |
|
265 | - public function get_icon_name() |
|
266 | - { |
|
267 | - return 'learnpath'; |
|
268 | - } |
|
259 | + $result = Database::query($sql); |
|
260 | + $this->learnpath_data = Database::fetch_array($result); |
|
261 | + } |
|
262 | + return $this->learnpath_data; |
|
263 | + } |
|
264 | + |
|
265 | + public function get_icon_name() |
|
266 | + { |
|
267 | + return 'learnpath'; |
|
268 | + } |
|
269 | 269 | } |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | |
44 | 44 | $result = Database::query($sql); |
45 | 45 | |
46 | - $cats=array(); |
|
47 | - while ($data=Database::fetch_array($result)) { |
|
48 | - $cats[] = array ($data['id'], $data['name']); |
|
46 | + $cats = array(); |
|
47 | + while ($data = Database::fetch_array($result)) { |
|
48 | + $cats[] = array($data['id'], $data['name']); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return $cats; |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | $result = Database::query($sql); |
73 | 73 | |
74 | 74 | $cats = array(); |
75 | - while ($data=Database::fetch_array($result)) { |
|
76 | - $cats[] = array ($data['id'], $data['name']); |
|
75 | + while ($data = Database::fetch_array($result)) { |
|
76 | + $cats[] = array($data['id'], $data['name']); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | return $cats; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $sql = "SELECT count(id) AS number FROM $tbl_stats |
90 | 90 | WHERE c_id = ".$this->course_id." AND lp_id = ".$this->get_ref_id(); |
91 | 91 | $result = Database::query($sql); |
92 | - $number = Database::fetch_array($result,'NUM'); |
|
92 | + $number = Database::fetch_array($result, 'NUM'); |
|
93 | 93 | return ($number[0] != 0); |
94 | 94 | } |
95 | 95 | |
@@ -121,12 +121,12 @@ discard block |
||
121 | 121 | // for 1 student |
122 | 122 | if (isset($stud_id)) { |
123 | 123 | if ($data = Database::fetch_assoc($scores)) { |
124 | - return array ($data['progress'], 100); |
|
124 | + return array($data['progress'], 100); |
|
125 | 125 | } else |
126 | 126 | return null; |
127 | 127 | } else { |
128 | 128 | // all students -> get average |
129 | - $students = array(); // user list, needed to make sure we only |
|
129 | + $students = array(); // user list, needed to make sure we only |
|
130 | 130 | // take first attempts into account |
131 | 131 | $rescount = 0; |
132 | 132 | $sum = 0; |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | return array($bestResult, 100); |
155 | 155 | break; |
156 | 156 | case 'average': |
157 | - return array($sumResult/$rescount, 100); |
|
157 | + return array($sumResult / $rescount, 100); |
|
158 | 158 | break; |
159 | 159 | case 'ranking': |
160 | 160 | return AbstractLink::getCurrentUserRanking($stud_id, $students); |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | public function get_link() |
174 | 174 | { |
175 | 175 | $session_id = api_get_session_id(); |
176 | - $url = api_get_path(WEB_CODE_PATH) . 'lp/lp_controller.php?'.api_get_cidreq_params($this->get_course_code(), $session_id).'&gradebook=view'; |
|
176 | + $url = api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq_params($this->get_course_code(), $session_id).'&gradebook=view'; |
|
177 | 177 | |
178 | 178 | if (!api_is_allowed_to_edit() || $this->calc_score(api_get_user_id()) == null) { |
179 | 179 | $url .= '&action=view&lp_id='.$this->get_ref_id(); |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | $sql = 'SELECT count(id) FROM '.$this->get_learnpath_table().' |
209 | 209 | WHERE c_id = '.$this->course_id.' AND id = '.$this->get_ref_id().' '; |
210 | 210 | $result = Database::query($sql); |
211 | - $number = Database::fetch_row($result,'NUM'); |
|
211 | + $number = Database::fetch_row($result, 'NUM'); |
|
212 | 212 | return ($number[0] != 0); |
213 | 213 | } |
214 | 214 |
@@ -32,6 +32,8 @@ discard block |
||
32 | 32 | * @param array $evals |
33 | 33 | * @param array $links |
34 | 34 | * @param null $addparams |
35 | + * @param boolean $showTeacherView |
|
36 | + * @param integer $userId |
|
35 | 37 | */ |
36 | 38 | public function __construct( |
37 | 39 | $currentcat, |
@@ -895,7 +897,7 @@ discard block |
||
895 | 897 | |
896 | 898 | /** |
897 | 899 | * @param $item |
898 | - * @return mixed |
|
900 | + * @return string|null |
|
899 | 901 | */ |
900 | 902 | private function build_course_code($item) |
901 | 903 | { |
@@ -256,10 +256,11 @@ |
||
256 | 256 | } |
257 | 257 | |
258 | 258 | // Categories. |
259 | - if (!empty($data_array)) |
|
260 | - foreach ($data_array as $data) { |
|
259 | + if (!empty($data_array)) { |
|
260 | + foreach ($data_array as $data) { |
|
261 | 261 | // list of items inside the gradebook (exercises, lps, forums, etc) |
262 | 262 | $row = array(); |
263 | + } |
|
263 | 264 | /** @var AbstractLink $item */ |
264 | 265 | $item = $mainCategory = $data[0]; |
265 | 266 |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $this->set_additional_parameters($addparams); |
72 | 72 | } |
73 | 73 | |
74 | - $column= 0; |
|
74 | + $column = 0; |
|
75 | 75 | if ($this->teacherView) { |
76 | 76 | if ($this->exportToPdf == false) { |
77 | 77 | $this->set_header($column++, '', '', 'width="25px"'); |
@@ -281,13 +281,13 @@ discard block |
||
281 | 281 | $main_categories[$item->get_id()]['name'] = $item->get_name(); |
282 | 282 | } else { |
283 | 283 | $name = $this->build_name_link($item, $type); |
284 | - $row[] = $invisibility_span_open.$name. $invisibility_span_close; |
|
284 | + $row[] = $invisibility_span_open.$name.$invisibility_span_close; |
|
285 | 285 | $main_categories[$item->get_id()]['name'] = $name; |
286 | 286 | } |
287 | 287 | |
288 | 288 | $this->dataForGraph['categories'][] = $item->get_name(); |
289 | 289 | |
290 | - $main_categories[$item->get_id()]['weight']= $item->get_weight(); |
|
290 | + $main_categories[$item->get_id()]['weight'] = $item->get_weight(); |
|
291 | 291 | $total_categories_weight += $item->get_weight(); |
292 | 292 | |
293 | 293 | // Description. |
@@ -307,9 +307,9 @@ discard block |
||
307 | 307 | ); |
308 | 308 | |
309 | 309 | if ($this->teacherView) { |
310 | - $row[] = $invisibility_span_open .Display::tag('p', $weight, array('class' => 'score')).$invisibility_span_close; |
|
310 | + $row[] = $invisibility_span_open.Display::tag('p', $weight, array('class' => 'score')).$invisibility_span_close; |
|
311 | 311 | } else { |
312 | - $row[] = $invisibility_span_open .$weight.$invisibility_span_close; |
|
312 | + $row[] = $invisibility_span_open.$weight.$invisibility_span_close; |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | $category_weight = $item->get_weight(); |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | |
336 | 336 | if (!empty($score[1])) { |
337 | 337 | $completeScore = $scoredisplay->display_score($score, SCORE_DIV_PERCENT); |
338 | - $score = $score[0]/$score[1]*$item->get_weight(); |
|
338 | + $score = $score[0] / $score[1] * $item->get_weight(); |
|
339 | 339 | $score = $scoredisplay->display_score(array($score, null), SCORE_SIMPLE); |
340 | 340 | $scoreToDisplay = Display::tip($score, $completeScore); |
341 | 341 | } else { |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | $totalResultAverageValue = strip_tags($scoredisplay->display_score($totalResult, SCORE_AVERAGE)); |
372 | 372 | $this->dataForGraph['my_result'][] = str_replace('%', '', $totalResultAverageValue); |
373 | 373 | $totalAverageValue = strip_tags($scoredisplay->display_score($totalAverage, SCORE_AVERAGE)); |
374 | - $this->dataForGraph['average'][] = str_replace('%', '', $totalAverageValue); |
|
374 | + $this->dataForGraph['average'][] = str_replace('%', '', $totalAverageValue); |
|
375 | 375 | // Ranking |
376 | 376 | $row[] = $ranking; |
377 | 377 | // Best |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | $row[] = $this->build_type_column($item, array('style' => 'padding-left:5px')); |
454 | 454 | |
455 | 455 | // Name. |
456 | - $row[] = $invisibility_span_open." ".$this->build_name_link($item, $type) . $invisibility_span_close; |
|
456 | + $row[] = $invisibility_span_open." ".$this->build_name_link($item, $type).$invisibility_span_close; |
|
457 | 457 | |
458 | 458 | // Description. |
459 | 459 | if ($this->exportToPdf == false) { |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | // Students get the results and certificates columns |
492 | 492 | $eval_n_links = array_merge($alleval, $alllink); |
493 | 493 | |
494 | - if (count($eval_n_links)> 0) { |
|
494 | + if (count($eval_n_links) > 0) { |
|
495 | 495 | $value_data = isset($data[4]) ? $data[4] : null; |
496 | 496 | |
497 | 497 | if (!is_null($value_data)) { |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | $row = array( |
590 | 590 | null, |
591 | 591 | null, |
592 | - '<strong>' . get_lang('Total') . '</strong>', |
|
592 | + '<strong>'.get_lang('Total').'</strong>', |
|
593 | 593 | null, |
594 | 594 | $total |
595 | 595 | ); |
@@ -659,7 +659,7 @@ discard block |
||
659 | 659 | if ($this->exportToPdf) { |
660 | 660 | $row = array( |
661 | 661 | null, |
662 | - '<h3>' . get_lang('Total') . '</h3>', |
|
662 | + '<h3>'.get_lang('Total').'</h3>', |
|
663 | 663 | $main_weight, |
664 | 664 | $totalResult, |
665 | 665 | $totalRanking, |
@@ -669,7 +669,7 @@ discard block |
||
669 | 669 | } else { |
670 | 670 | $row = array( |
671 | 671 | null, |
672 | - '<h3>' . get_lang('Total') . '</h3>', |
|
672 | + '<h3>'.get_lang('Total').'</h3>', |
|
673 | 673 | null, |
674 | 674 | $main_weight, |
675 | 675 | $totalResult, |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | } |
685 | 685 | |
686 | 686 | // Warning messages |
687 | - $view = isset($_GET['view']) ? $_GET['view']: null; |
|
687 | + $view = isset($_GET['view']) ? $_GET['view'] : null; |
|
688 | 688 | |
689 | 689 | if ($this->teacherView) { |
690 | 690 | if (isset($_GET['selectcat']) && |
@@ -695,14 +695,14 @@ discard block |
||
695 | 695 | $category = Category::load($id_cat); |
696 | 696 | $weight_category = intval($this->build_weight($category[0])); |
697 | 697 | $course_code = $this->build_course_code($category[0]); |
698 | - $weight_total_links = round($weight_total_links); |
|
698 | + $weight_total_links = round($weight_total_links); |
|
699 | 699 | |
700 | 700 | if ($weight_total_links > $weight_category || |
701 | 701 | $weight_total_links < $weight_category || |
702 | 702 | $weight_total_links > $weight_category |
703 | 703 | ) { |
704 | 704 | $warning_message = sprintf(get_lang('TotalWeightMustBeX'), $weight_category); |
705 | - $modify_icons = '<a href="gradebook_edit_cat.php?editcat='.$id_cat.'&cidReq='.$course_code.'&id_session='.api_get_session_id().'">'. |
|
705 | + $modify_icons = '<a href="gradebook_edit_cat.php?editcat='.$id_cat.'&cidReq='.$course_code.'&id_session='.api_get_session_id().'">'. |
|
706 | 706 | Display::return_icon('edit.png', $warning_message, array(), ICON_SIZE_SMALL).'</a>'; |
707 | 707 | $warning_message .= $modify_icons; |
708 | 708 | Display::display_warning_message($warning_message, false); |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | if (empty($certificate_min_score) || |
758 | 758 | ($certificate_min_score > $weight_category) |
759 | 759 | ) { |
760 | - $warning_message .= $course_code .' - '.get_lang('CertificateMinimunScoreIsRequiredAndMustNotBeMoreThan').' '.$weight_category.'<br />'; |
|
760 | + $warning_message .= $course_code.' - '.get_lang('CertificateMinimunScoreIsRequiredAndMustNotBeMoreThan').' '.$weight_category.'<br />'; |
|
761 | 761 | } |
762 | 762 | } |
763 | 763 | |
@@ -806,12 +806,12 @@ discard block |
||
806 | 806 | $pChart->Antialias = false; |
807 | 807 | |
808 | 808 | /* Add a border to the picture */ |
809 | - $pChart->drawRectangle(0,0,$xSize-10,$ySize-10,array("R"=>0,"G"=>0,"B"=>0)); |
|
810 | - $pChart->drawText(10,16,get_lang('Results'),array("FontSize"=>11,"Align"=> TEXT_ALIGN_BOTTOMMIDDLE)); |
|
811 | - $pChart->setGraphArea(50, 30, $xSize-50, $ySize-50); |
|
809 | + $pChart->drawRectangle(0, 0, $xSize - 10, $ySize - 10, array("R"=>0, "G"=>0, "B"=>0)); |
|
810 | + $pChart->drawText(10, 16, get_lang('Results'), array("FontSize"=>11, "Align"=> TEXT_ALIGN_BOTTOMMIDDLE)); |
|
811 | + $pChart->setGraphArea(50, 30, $xSize - 50, $ySize - 50); |
|
812 | 812 | $pChart->setFontProperties( |
813 | 813 | array( |
814 | - 'FontName' => api_get_path(SYS_FONTS_PATH) . 'opensans/OpenSans-Regular.ttf', |
|
814 | + 'FontName' => api_get_path(SYS_FONTS_PATH).'opensans/OpenSans-Regular.ttf', |
|
815 | 815 | 'FontSize' => 10, |
816 | 816 | ) |
817 | 817 | ); |
@@ -859,13 +859,13 @@ discard block |
||
859 | 859 | $chartHash = $myCache->getHash($dataSet); |
860 | 860 | |
861 | 861 | $myCache->writeToCache($chartHash, $pChart); |
862 | - $imgSysPath = api_get_path(SYS_ARCHIVE_PATH) . $chartHash; |
|
862 | + $imgSysPath = api_get_path(SYS_ARCHIVE_PATH).$chartHash; |
|
863 | 863 | $myCache->saveFromCache($chartHash, $imgSysPath); |
864 | - $imgWebPath = api_get_path(WEB_ARCHIVE_PATH) . $chartHash; |
|
864 | + $imgWebPath = api_get_path(WEB_ARCHIVE_PATH).$chartHash; |
|
865 | 865 | |
866 | 866 | if (file_exists($imgSysPath)) { |
867 | 867 | $result = '<div id="contentArea" style="text-align: center;" >'; |
868 | - $result .= '<img src="' . $imgWebPath.'" >'; |
|
868 | + $result .= '<img src="'.$imgWebPath.'" >'; |
|
869 | 869 | $result .= '</div>'; |
870 | 870 | return $result; |
871 | 871 | } |
@@ -910,13 +910,13 @@ discard block |
||
910 | 910 | switch ($item->get_item_type()) { |
911 | 911 | // category |
912 | 912 | case 'C': |
913 | - return 'CATE' . $item->get_id(); |
|
913 | + return 'CATE'.$item->get_id(); |
|
914 | 914 | // evaluation |
915 | 915 | case 'E': |
916 | - return 'EVAL' . $item->get_id(); |
|
916 | + return 'EVAL'.$item->get_id(); |
|
917 | 917 | // link |
918 | 918 | case 'L': |
919 | - return 'LINK' . $item->get_id(); |
|
919 | + return 'LINK'.$item->get_id(); |
|
920 | 920 | } |
921 | 921 | } |
922 | 922 | |
@@ -944,11 +944,11 @@ discard block |
||
944 | 944 | switch ($item->get_item_type()) { |
945 | 945 | // category |
946 | 946 | case 'C': |
947 | - $prms_uri='?selectcat=' . $item->get_id() . '&view='.$view; |
|
947 | + $prms_uri = '?selectcat='.$item->get_id().'&view='.$view; |
|
948 | 948 | |
949 | 949 | if (isset($_GET['isStudentView'])) { |
950 | - if ( isset($is_student) || (isset($_SESSION['studentview']) && $_SESSION['studentview']=='studentview') ) { |
|
951 | - $prms_uri=$prms_uri.'&isStudentView='.Security::remove_XSS($_GET['isStudentView']); |
|
950 | + if (isset($is_student) || (isset($_SESSION['studentview']) && $_SESSION['studentview'] == 'studentview')) { |
|
951 | + $prms_uri = $prms_uri.'&isStudentView='.Security::remove_XSS($_GET['isStudentView']); |
|
952 | 952 | } |
953 | 953 | } |
954 | 954 | |
@@ -957,7 +957,7 @@ discard block |
||
957 | 957 | return ' <a href="'.Security::remove_XSS($_SESSION['gradebook_dest']).$prms_uri.'">' |
958 | 958 | . $item->get_name() |
959 | 959 | . '</a>' |
960 | - . ($item->is_course() ? ' [' . $item->get_course_code() . ']'.$show_message : ''); |
|
960 | + . ($item->is_course() ? ' ['.$item->get_course_code().']'.$show_message : ''); |
|
961 | 961 | // evaluation |
962 | 962 | case 'E': |
963 | 963 | $cat = new Category(); |
@@ -965,10 +965,10 @@ discard block |
||
965 | 965 | $show_message = $cat->show_message_resource_delete($course_id); |
966 | 966 | |
967 | 967 | // course/platform admin can go to the view_results page |
968 | - if (api_is_allowed_to_edit() && $show_message===false) { |
|
968 | + if (api_is_allowed_to_edit() && $show_message === false) { |
|
969 | 969 | if ($item->get_type() == 'presence') { |
970 | 970 | return ' ' |
971 | - . '<a href="gradebook_view_result.php?'.api_get_cidreq().'&selecteval=' . $item->get_id() . '">' |
|
971 | + . '<a href="gradebook_view_result.php?'.api_get_cidreq().'&selecteval='.$item->get_id().'">' |
|
972 | 972 | . $item->get_name() |
973 | 973 | . '</a>'; |
974 | 974 | } else { |
@@ -977,20 +977,20 @@ discard block |
||
977 | 977 | $extra = ''; |
978 | 978 | } |
979 | 979 | return ' ' |
980 | - . '<a href="gradebook_view_result.php?' . api_get_cidreq() . '&selecteval=' . $item->get_id() . '">' |
|
980 | + . '<a href="gradebook_view_result.php?'.api_get_cidreq().'&selecteval='.$item->get_id().'">' |
|
981 | 981 | . $item->get_name() |
982 | 982 | . '</a> '.$extra; |
983 | 983 | } |
984 | - } elseif (ScoreDisplay :: instance()->is_custom() && $show_message===false) { |
|
984 | + } elseif (ScoreDisplay :: instance()->is_custom() && $show_message === false) { |
|
985 | 985 | // students can go to the statistics page (if custom display enabled) |
986 | 986 | return ' ' |
987 | - . '<a href="gradebook_statistics.php?' . api_get_cidreq() . '&selecteval=' . $item->get_id() . '">' |
|
987 | + . '<a href="gradebook_statistics.php?'.api_get_cidreq().'&selecteval='.$item->get_id().'">' |
|
988 | 988 | . $item->get_name() |
989 | 989 | . '</a>'; |
990 | 990 | |
991 | 991 | } elseif ($show_message === false && !api_is_allowed_to_edit() && !ScoreDisplay :: instance()->is_custom()) { |
992 | 992 | return ' ' |
993 | - . '<a href="gradebook_statistics.php?' . api_get_cidreq() . '&selecteval=' . $item->get_id() . '">' |
|
993 | + . '<a href="gradebook_statistics.php?'.api_get_cidreq().'&selecteval='.$item->get_id().'">' |
|
994 | 994 | . $item->get_name() |
995 | 995 | . '</a>'; |
996 | 996 | } else { |
@@ -1005,7 +1005,7 @@ discard block |
||
1005 | 1005 | $url = $item->get_link(); |
1006 | 1006 | |
1007 | 1007 | if (isset($url) && $show_message === false) { |
1008 | - $text = ' <a href="' . $item->get_link() . '">' |
|
1008 | + $text = ' <a href="'.$item->get_link().'">' |
|
1009 | 1009 | . $item->get_name() |
1010 | 1010 | . '</a>'; |
1011 | 1011 | } else { |
@@ -351,6 +351,12 @@ |
||
351 | 351 | |
352 | 352 | /** |
353 | 353 | * Additional functions needed for fast integration |
354 | + * @param integer $status |
|
355 | + * @param string $section |
|
356 | + * @param string $title |
|
357 | + * @param string $url |
|
358 | + * @param string|null $formatter |
|
359 | + * @param string $comment |
|
354 | 360 | */ |
355 | 361 | public function build_setting($status, $section, $title, $url, $current_value, $expected_value, $formatter, $comment, $img_path = null) { |
356 | 362 | switch ($status) { |
@@ -401,19 +401,19 @@ |
||
401 | 401 | |
402 | 402 | public function format_yes_no_optional($value) |
403 | 403 | { |
404 | - $return = ''; |
|
405 | - switch($value) { |
|
406 | - case 0: |
|
407 | - $return = get_lang('No'); |
|
408 | - break; |
|
409 | - case 1: |
|
410 | - $return = get_lang('Yes'); |
|
411 | - break; |
|
412 | - case 2: |
|
413 | - $return = get_lang('Optional'); |
|
414 | - break; |
|
415 | - } |
|
416 | - return $return; |
|
404 | + $return = ''; |
|
405 | + switch($value) { |
|
406 | + case 0: |
|
407 | + $return = get_lang('No'); |
|
408 | + break; |
|
409 | + case 1: |
|
410 | + $return = get_lang('Yes'); |
|
411 | + break; |
|
412 | + case 2: |
|
413 | + $return = get_lang('Optional'); |
|
414 | + break; |
|
415 | + } |
|
416 | + return $return; |
|
417 | 417 | |
418 | 418 | } |
419 | 419 |
@@ -158,8 +158,9 @@ discard block |
||
158 | 158 | $array[] = $this->build_setting($status, '[INI]', 'display_errors', 'http://www.php.net/manual/en/ini.core.php#ini.display_errors', $setting, $req_setting, 'on_off', get_lang('DisplayErrorsInfo')); |
159 | 159 | |
160 | 160 | $setting = ini_get('default_charset'); |
161 | - if ($setting == '') |
|
162 | - $setting = null; |
|
161 | + if ($setting == '') { |
|
162 | + $setting = null; |
|
163 | + } |
|
163 | 164 | $req_setting = null; |
164 | 165 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_ERROR; |
165 | 166 | $array[] = $this->build_setting($status, '[INI]', 'default_charset', 'http://www.php.net/manual/en/ini.core.php#ini.default-charset', $setting, $req_setting, null, get_lang('DefaultCharsetInfo')); |
@@ -177,22 +178,25 @@ discard block |
||
177 | 178 | $setting = ini_get('memory_limit'); |
178 | 179 | $req_setting = '>= '.REQUIRED_MIN_MEMORY_LIMIT.'M'; |
179 | 180 | $status = self :: STATUS_ERROR; |
180 | - if ((float)$setting >= REQUIRED_MIN_MEMORY_LIMIT) |
|
181 | - $status = self :: STATUS_OK; |
|
181 | + if ((float)$setting >= REQUIRED_MIN_MEMORY_LIMIT) { |
|
182 | + $status = self :: STATUS_OK; |
|
183 | + } |
|
182 | 184 | $array[] = $this->build_setting($status, '[INI]', 'memory_limit', 'http://www.php.net/manual/en/ini.core.php#ini.memory-limit', $setting, $req_setting, null, get_lang('MemoryLimitInfo')); |
183 | 185 | |
184 | 186 | $setting = ini_get('post_max_size'); |
185 | 187 | $req_setting = '>= '.REQUIRED_MIN_POST_MAX_SIZE.'M'; |
186 | 188 | $status = self :: STATUS_ERROR; |
187 | - if ((float)$setting >= REQUIRED_MIN_POST_MAX_SIZE) |
|
188 | - $status = self :: STATUS_OK; |
|
189 | + if ((float)$setting >= REQUIRED_MIN_POST_MAX_SIZE) { |
|
190 | + $status = self :: STATUS_OK; |
|
191 | + } |
|
189 | 192 | $array[] = $this->build_setting($status, '[INI]', 'post_max_size', 'http://www.php.net/manual/en/ini.core.php#ini.post-max-size', $setting, $req_setting, null, get_lang('PostMaxSizeInfo')); |
190 | 193 | |
191 | 194 | $setting = ini_get('upload_max_filesize'); |
192 | 195 | $req_setting = '>= '.REQUIRED_MIN_UPLOAD_MAX_FILESIZE.'M'; |
193 | 196 | $status = self :: STATUS_ERROR; |
194 | - if ((float)$setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) |
|
195 | - $status = self :: STATUS_OK; |
|
197 | + if ((float)$setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) { |
|
198 | + $status = self :: STATUS_OK; |
|
199 | + } |
|
196 | 200 | $array[] = $this->build_setting($status, '[INI]', 'upload_max_filesize', 'http://www.php.net/manual/en/ini.core.php#ini.upload_max_filesize', $setting, $req_setting, null, get_lang('UploadMaxFilesizeInfo')); |
197 | 201 | |
198 | 202 | $setting = ini_get('variables_order'); |
@@ -205,7 +209,7 @@ discard block |
||
205 | 209 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
206 | 210 | $array[] = $this->build_setting($status, '[SESSION]', 'session.gc_maxlifetime', 'http://www.php.net/manual/en/ini.core.php#session.gc-maxlifetime', $setting, $req_setting, null, get_lang('SessionGCMaxLifetimeInfo')); |
207 | 211 | |
208 | - if (api_check_browscap()){$setting = true;}else{$setting=false;} |
|
212 | + if (api_check_browscap()){$setting = true;} else{$setting=false;} |
|
209 | 213 | $req_setting = true; |
210 | 214 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
211 | 215 | $array[] = $this->build_setting($status, '[INI]', 'browscap', 'http://www.php.net/manual/en/misc.configuration.php#ini.browscap', $setting, $req_setting, 'on_off', get_lang('BrowscapInfo')); |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | { |
16 | 16 | const STATUS_OK = 1; |
17 | 17 | const STATUS_WARNING = 2; |
18 | - const STATUS_ERROR = 3; |
|
18 | + const STATUS_ERROR = 3; |
|
19 | 19 | const STATUS_INFORMATION = 4; |
20 | 20 | |
21 | 21 | /** |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | $html .= '<li>'; |
46 | 46 | } |
47 | 47 | $params['section'] = $section; |
48 | - $html .='<a href="system_status.php?section='.$section.'">'.get_lang($section).'</a></li>'; |
|
48 | + $html .= '<a href="system_status.php?section='.$section.'">'.get_lang($section).'</a></li>'; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | $html .= '</ul><div class="tab-pane">'; |
52 | 52 | |
53 | - $data = call_user_func(array($this, 'get_' . $currentSection . '_data')); |
|
53 | + $data = call_user_func(array($this, 'get_'.$currentSection.'_data')); |
|
54 | 54 | echo $html; |
55 | 55 | |
56 | 56 | if ($currentSection != 'paths') { |
@@ -117,11 +117,11 @@ discard block |
||
117 | 117 | { |
118 | 118 | $array = array(); |
119 | 119 | $writable_folders = array( |
120 | - api_get_path(SYS_APP_PATH) .'cache', |
|
120 | + api_get_path(SYS_APP_PATH).'cache', |
|
121 | 121 | api_get_path(SYS_COURSE_PATH), |
122 | - api_get_path(SYS_APP_PATH) .'home', |
|
123 | - api_get_path(SYS_APP_PATH) .'upload/users/', |
|
124 | - api_get_path(SYS_PATH) .'main/default_course_document/images/', |
|
122 | + api_get_path(SYS_APP_PATH).'home', |
|
123 | + api_get_path(SYS_APP_PATH).'upload/users/', |
|
124 | + api_get_path(SYS_PATH).'main/default_course_document/images/', |
|
125 | 125 | ); |
126 | 126 | foreach ($writable_folders as $index => $folder) { |
127 | 127 | $writable = is_writable($folder); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | $exists = file_exists(api_get_path(SYS_CODE_PATH).'install'); |
142 | 142 | $status = $exists ? self :: STATUS_WARNING : self :: STATUS_OK; |
143 | - $array[] = $this->build_setting($status, '[FILES]', get_lang('DirectoryExists') . ': /install', 'http://be2.php.net/file_exists', $exists, 0, 'yes_no', get_lang('DirectoryShouldBeRemoved')); |
|
143 | + $array[] = $this->build_setting($status, '[FILES]', get_lang('DirectoryExists').': /install', 'http://be2.php.net/file_exists', $exists, 0, 'yes_no', get_lang('DirectoryShouldBeRemoved')); |
|
144 | 144 | |
145 | 145 | //$app_version = api_get_setting('chamilo_database_version'); |
146 | 146 | //$array[] = $this->build_setting(self :: STATUS_INFORMATION, '[DB]', 'chamilo_database_version', '#', $app_version, 0, null, 'Chamilo DB version'); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | $message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuredOnWindows'); |
156 | 156 | } else { |
157 | 157 | $dir = api_get_path(SYS_PATH); |
158 | - $du = exec('du -sh ' . $dir, $err); |
|
158 | + $du = exec('du -sh '.$dir, $err); |
|
159 | 159 | list($size, $none) = explode("\t", $du); |
160 | 160 | $limit = $_configuration[$access_url_id]['hosting_limit_disk_space']; |
161 | 161 | $message2 .= sprintf(get_lang('TotalSpaceUsedByPortalXLimitIsYMB'), $size, $limit); |
@@ -239,33 +239,33 @@ discard block |
||
239 | 239 | $array[] = $this->build_setting($status, '[INI]', 'default_charset', 'http://www.php.net/manual/en/ini.core.php#ini.default-charset', $setting, $req_setting, null, get_lang('DefaultCharsetInfo')); |
240 | 240 | |
241 | 241 | $setting = ini_get('max_execution_time'); |
242 | - $req_setting = '300 (' . get_lang('Minimum') . ')'; |
|
242 | + $req_setting = '300 ('.get_lang('Minimum').')'; |
|
243 | 243 | $status = $setting >= 300 ? self :: STATUS_OK : self :: STATUS_WARNING; |
244 | 244 | $array[] = $this->build_setting($status, '[INI]', 'max_execution_time', 'http://www.php.net/manual/en/ini.core.php#ini.max-execution-time', $setting, $req_setting, null, get_lang('MaxExecutionTimeInfo')); |
245 | 245 | |
246 | 246 | $setting = ini_get('max_input_time'); |
247 | - $req_setting = '300 (' . get_lang('Minimum') . ')'; |
|
247 | + $req_setting = '300 ('.get_lang('Minimum').')'; |
|
248 | 248 | $status = $setting >= 300 ? self :: STATUS_OK : self :: STATUS_WARNING; |
249 | 249 | $array[] = $this->build_setting($status, '[INI]', 'max_input_time', 'http://www.php.net/manual/en/ini.core.php#ini.max-input-time', $setting, $req_setting, null, get_lang('MaxInputTimeInfo')); |
250 | 250 | |
251 | 251 | $setting = ini_get('memory_limit'); |
252 | 252 | $req_setting = '>= '.REQUIRED_MIN_MEMORY_LIMIT.'M'; |
253 | 253 | $status = self :: STATUS_ERROR; |
254 | - if ((float)$setting >= REQUIRED_MIN_MEMORY_LIMIT) |
|
254 | + if ((float) $setting >= REQUIRED_MIN_MEMORY_LIMIT) |
|
255 | 255 | $status = self :: STATUS_OK; |
256 | 256 | $array[] = $this->build_setting($status, '[INI]', 'memory_limit', 'http://www.php.net/manual/en/ini.core.php#ini.memory-limit', $setting, $req_setting, null, get_lang('MemoryLimitInfo')); |
257 | 257 | |
258 | 258 | $setting = ini_get('post_max_size'); |
259 | 259 | $req_setting = '>= '.REQUIRED_MIN_POST_MAX_SIZE.'M'; |
260 | 260 | $status = self :: STATUS_ERROR; |
261 | - if ((float)$setting >= REQUIRED_MIN_POST_MAX_SIZE) |
|
261 | + if ((float) $setting >= REQUIRED_MIN_POST_MAX_SIZE) |
|
262 | 262 | $status = self :: STATUS_OK; |
263 | 263 | $array[] = $this->build_setting($status, '[INI]', 'post_max_size', 'http://www.php.net/manual/en/ini.core.php#ini.post-max-size', $setting, $req_setting, null, get_lang('PostMaxSizeInfo')); |
264 | 264 | |
265 | 265 | $setting = ini_get('upload_max_filesize'); |
266 | 266 | $req_setting = '>= '.REQUIRED_MIN_UPLOAD_MAX_FILESIZE.'M'; |
267 | 267 | $status = self :: STATUS_ERROR; |
268 | - if ((float)$setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) |
|
268 | + if ((float) $setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) |
|
269 | 269 | $status = self :: STATUS_OK; |
270 | 270 | $array[] = $this->build_setting($status, '[INI]', 'upload_max_filesize', 'http://www.php.net/manual/en/ini.core.php#ini.upload_max_filesize', $setting, $req_setting, null, get_lang('UploadMaxFilesizeInfo')); |
271 | 271 | |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
280 | 280 | $array[] = $this->build_setting($status, '[SESSION]', 'session.gc_maxlifetime', 'http://www.php.net/manual/en/ini.core.php#session.gc-maxlifetime', $setting, $req_setting, null, get_lang('SessionGCMaxLifetimeInfo')); |
281 | 281 | |
282 | - if (api_check_browscap()){$setting = true;}else{$setting=false;} |
|
282 | + if (api_check_browscap()) {$setting = true; } else {$setting = false; } |
|
283 | 283 | $req_setting = true; |
284 | 284 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
285 | 285 | $array[] = $this->build_setting($status, '[INI]', 'browscap', 'http://www.php.net/manual/en/misc.configuration.php#ini.browscap', $setting, $req_setting, 'on_off', get_lang('BrowscapInfo')); |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | |
346 | 346 | $loaded = extension_loaded($extension); |
347 | 347 | $status = $loaded ? self :: STATUS_OK : self :: STATUS_ERROR; |
348 | - $array[] = $this->build_setting($status, '[EXTENSION]', get_lang('LoadedExtension') . ': ' . $extension, $url, $loaded, $expected_value, 'yes_no_optional', $comment); |
|
348 | + $array[] = $this->build_setting($status, '[EXTENSION]', get_lang('LoadedExtension').': '.$extension, $url, $loaded, $expected_value, 'yes_no_optional', $comment); |
|
349 | 349 | } |
350 | 350 | |
351 | 351 | return $array; |
@@ -468,9 +468,9 @@ discard block |
||
468 | 468 | $formatted_expected_value = $expected_value; |
469 | 469 | |
470 | 470 | if ($formatter) { |
471 | - if (method_exists($this, 'format_' . $formatter)) { |
|
472 | - $formatted_current_value = call_user_func(array($this, 'format_' . $formatter), $current_value); |
|
473 | - $formatted_expected_value = call_user_func(array($this, 'format_' . $formatter), $expected_value); |
|
471 | + if (method_exists($this, 'format_'.$formatter)) { |
|
472 | + $formatted_current_value = call_user_func(array($this, 'format_'.$formatter), $current_value); |
|
473 | + $formatted_expected_value = call_user_func(array($this, 'format_'.$formatter), $expected_value); |
|
474 | 474 | } |
475 | 475 | } |
476 | 476 | |
@@ -485,13 +485,13 @@ discard block |
||
485 | 485 | */ |
486 | 486 | public function get_link($title, $url) |
487 | 487 | { |
488 | - return '<a href="' . $url . '" target="about:bank">' . $title . '</a>'; |
|
488 | + return '<a href="'.$url.'" target="about:bank">'.$title.'</a>'; |
|
489 | 489 | } |
490 | 490 | |
491 | 491 | public function format_yes_no_optional($value) |
492 | 492 | { |
493 | 493 | $return = ''; |
494 | - switch($value) { |
|
494 | + switch ($value) { |
|
495 | 495 | case 0: |
496 | 496 | $return = get_lang('No'); |
497 | 497 | break; |
@@ -1255,6 +1255,7 @@ discard block |
||
1255 | 1255 | |
1256 | 1256 | /** |
1257 | 1257 | * Validates the time control key |
1258 | + * @param integer $exercise_id |
|
1258 | 1259 | */ |
1259 | 1260 | public static function exercise_time_control_is_valid( |
1260 | 1261 | $exercise_id, |
@@ -1388,7 +1389,7 @@ discard block |
||
1388 | 1389 | * @param int $in_direction |
1389 | 1390 | * @param string $in_hotpot_path |
1390 | 1391 | * @param bool $in_get_count |
1391 | - * @param null $where_condition |
|
1392 | + * @param string $where_condition |
|
1392 | 1393 | * @return array|int |
1393 | 1394 | */ |
1394 | 1395 | public static function get_exam_results_hotpotatoes_data( |
@@ -2179,7 +2180,7 @@ discard block |
||
2179 | 2180 | /** |
2180 | 2181 | * Return true if pass_pourcentage activated (we use the pass pourcentage feature |
2181 | 2182 | * return false if pass_percentage = 0 (we don't use the pass pourcentage feature |
2182 | - * @param $in_pass_pourcentage |
|
2183 | + * @param string $in_pass_pourcentage |
|
2183 | 2184 | * @return boolean |
2184 | 2185 | * In this version, pass_percentage and show_success_message are disabled if |
2185 | 2186 | * pass_percentage is set to 0 |
@@ -2192,7 +2193,7 @@ discard block |
||
2192 | 2193 | /** |
2193 | 2194 | * Converts a numeric value in a percentage example 0.66666 to 66.67 % |
2194 | 2195 | * @param $value |
2195 | - * @return float Converted number |
|
2196 | + * @return string Converted number |
|
2196 | 2197 | */ |
2197 | 2198 | public static function convert_to_percentage($value) |
2198 | 2199 | { |
@@ -2208,7 +2209,7 @@ discard block |
||
2208 | 2209 | * @param float $score |
2209 | 2210 | * @param float $weight |
2210 | 2211 | * @deprecated seem not to be used |
2211 | - * @return float the score rounded converted to the new range |
|
2212 | + * @return string|null the score rounded converted to the new range |
|
2212 | 2213 | */ |
2213 | 2214 | public static function convert_score($score, $weight) |
2214 | 2215 | { |
@@ -2759,6 +2760,7 @@ discard block |
||
2759 | 2760 | * @param int exercise id |
2760 | 2761 | * @param int $courseId |
2761 | 2762 | * @param int session id |
2763 | + * @param integer $user_count |
|
2762 | 2764 | * @return float Best average score |
2763 | 2765 | */ |
2764 | 2766 | public static function get_best_average_score_by_exercise( |
@@ -3198,8 +3200,9 @@ discard block |
||
3198 | 3200 | } |
3199 | 3201 | |
3200 | 3202 | /** |
3201 | - * @param array $answer |
|
3203 | + * @param string|null $answer |
|
3202 | 3204 | * @param string $user_answer |
3205 | + * @param string|null $current_answer |
|
3203 | 3206 | * @return array |
3204 | 3207 | */ |
3205 | 3208 | public static function check_fill_in_blanks($answer, $user_answer, $current_answer) |
@@ -3805,7 +3808,7 @@ discard block |
||
3805 | 3808 | |
3806 | 3809 | /** |
3807 | 3810 | * @param int $countLetter |
3808 | - * @return mixed |
|
3811 | + * @return string |
|
3809 | 3812 | */ |
3810 | 3813 | public static function detectInputAppropriateClass($countLetter) |
3811 | 3814 | { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | if ($show_title) { |
67 | 67 | TestCategory::displayCategoryAndTitle($objQuestionTmp->id); |
68 | 68 | echo Display::div( |
69 | - $current_item . '. ' . $objQuestionTmp->selectTitle(), |
|
69 | + $current_item.'. '.$objQuestionTmp->selectTitle(), |
|
70 | 70 | array('class' => 'question_title') |
71 | 71 | ); |
72 | 72 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | <div class="clearfix"> |
111 | 111 | <ul class="exercise-draggable-answer ui-helper-reset ui-helper-clearfix list-inline">'; |
112 | 112 | } else { |
113 | - $s .= '<div id="drag' . $questionId . '_question" class="drag_question"> |
|
113 | + $s .= '<div id="drag'.$questionId.'_question" class="drag_question"> |
|
114 | 114 | <table class="data_table">'; |
115 | 115 | } |
116 | 116 | |
@@ -157,12 +157,12 @@ discard block |
||
157 | 157 | } elseif ($answerType == FREE_ANSWER) { |
158 | 158 | $fck_content = isset($user_choice[0]) && !empty($user_choice[0]['answer']) ? $user_choice[0]['answer'] : null; |
159 | 159 | |
160 | - $form = new FormValidator('free_choice_' . $questionId); |
|
160 | + $form = new FormValidator('free_choice_'.$questionId); |
|
161 | 161 | $config = array( |
162 | 162 | 'ToolbarSet' => 'TestFreeAnswer' |
163 | 163 | ); |
164 | - $form->addHtmlEditor("choice[" . $questionId . "]", null, false, false, $config); |
|
165 | - $form->setDefaults(array("choice[" . $questionId . "]" => $fck_content)); |
|
164 | + $form->addHtmlEditor("choice[".$questionId."]", null, false, false, $config); |
|
165 | + $form->setDefaults(array("choice[".$questionId."]" => $fck_content)); |
|
166 | 166 | $s .= $form->returnForm(); |
167 | 167 | } elseif ($answerType == ORAL_EXPRESSION) { |
168 | 168 | // Add nanog |
@@ -189,11 +189,11 @@ discard block |
||
189 | 189 | echo $objQuestionTmp->returnRecorder(); |
190 | 190 | } |
191 | 191 | |
192 | - $form = new FormValidator('free_choice_' . $questionId); |
|
192 | + $form = new FormValidator('free_choice_'.$questionId); |
|
193 | 193 | $config = array( |
194 | 194 | 'ToolbarSet' => 'TestFreeAnswer' |
195 | 195 | ); |
196 | - $form->addHtmlEditor("choice[" . $questionId . "]", null, false, false, $config); |
|
196 | + $form->addHtmlEditor("choice[".$questionId."]", null, false, false, $config); |
|
197 | 197 | //$form->setDefaults(array("choice[" . $questionId . "]" => $fck_content)); |
198 | 198 | $s .= $form->returnForm(); |
199 | 199 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | case UNIQUE_ANSWER_NO_OPTION: |
279 | 279 | //no break |
280 | 280 | case UNIQUE_ANSWER_IMAGE: |
281 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
281 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
282 | 282 | |
283 | 283 | if (isset($user_choice[0]['answer']) && $user_choice[0]['answer'] == $numAnswer) { |
284 | 284 | $attributes = array( |
@@ -304,14 +304,14 @@ discard block |
||
304 | 304 | if ($answerType == UNIQUE_ANSWER_IMAGE) { |
305 | 305 | if ($show_comment) { |
306 | 306 | if (empty($comment)) { |
307 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
307 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
308 | 308 | . 'class="exercise-unique-answer-image" style="text-align: center">'; |
309 | 309 | } else { |
310 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
310 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
311 | 311 | . 'class="exercise-unique-answer-image col-xs-6 col-sm-12" style="text-align: center">'; |
312 | 312 | } |
313 | 313 | } else { |
314 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
314 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
315 | 315 | . 'class="exercise-unique-answer-image col-xs-6 col-md-3" style="text-align: center">'; |
316 | 316 | } |
317 | 317 | } |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | |
321 | 321 | $s .= Display::input( |
322 | 322 | 'hidden', |
323 | - 'choice2[' . $questionId . ']', |
|
323 | + 'choice2['.$questionId.']', |
|
324 | 324 | '0' |
325 | 325 | ); |
326 | 326 | |
@@ -328,13 +328,13 @@ discard block |
||
328 | 328 | |
329 | 329 | if ($answerType == UNIQUE_ANSWER_IMAGE) { |
330 | 330 | $attributes['style'] = 'display: none;'; |
331 | - $answer = '<div class="thumbnail">' . $answer . '</div>'; |
|
331 | + $answer = '<div class="thumbnail">'.$answer.'</div>'; |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | $answer_input .= '<label class="radio">'; |
335 | 335 | $answer_input .= Display::input( |
336 | 336 | 'radio', |
337 | - 'choice[' . $questionId . ']', |
|
337 | + 'choice['.$questionId.']', |
|
338 | 338 | $numAnswer, |
339 | 339 | $attributes |
340 | 340 | ); |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | case MULTIPLE_ANSWER_TRUE_FALSE: |
362 | 362 | //no break |
363 | 363 | case GLOBAL_MULTIPLE_ANSWER: |
364 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
364 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
365 | 365 | $answer = Security::remove_XSS($answer, STUDENT); |
366 | 366 | |
367 | 367 | if (in_array($numAnswer, $user_choice_array)) { |
@@ -382,12 +382,12 @@ discard block |
||
382 | 382 | } |
383 | 383 | |
384 | 384 | if ($answerType == MULTIPLE_ANSWER || $answerType == GLOBAL_MULTIPLE_ANSWER) { |
385 | - $s .= '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
385 | + $s .= '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
386 | 386 | |
387 | 387 | $answer_input = '<label class="checkbox">'; |
388 | 388 | $answer_input .= Display::input( |
389 | 389 | 'checkbox', |
390 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
390 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
391 | 391 | $numAnswer, |
392 | 392 | $attributes |
393 | 393 | ); |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | 'td', |
441 | 441 | Display::input( |
442 | 442 | 'radio', |
443 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
443 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
444 | 444 | $id, |
445 | 445 | $attributes |
446 | 446 | ), |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | break; |
460 | 460 | case MULTIPLE_ANSWER_COMBINATION: |
461 | 461 | // multiple answers |
462 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
462 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
463 | 463 | |
464 | 464 | if (in_array($numAnswer, $user_choice_array)) { |
465 | 465 | $attributes = array( |
@@ -479,11 +479,11 @@ discard block |
||
479 | 479 | } |
480 | 480 | |
481 | 481 | $answer = Security::remove_XSS($answer, STUDENT); |
482 | - $answer_input = '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
482 | + $answer_input = '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
483 | 483 | $answer_input .= '<label class="checkbox">'; |
484 | 484 | $answer_input .= Display::input( |
485 | 485 | 'checkbox', |
486 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
486 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
487 | 487 | 1, |
488 | 488 | $attributes |
489 | 489 | ); |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | } |
505 | 505 | break; |
506 | 506 | case MULTIPLE_ANSWER_COMBINATION_TRUE_FALSE: |
507 | - $s .= '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
507 | + $s .= '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
508 | 508 | |
509 | 509 | $my_choice = array(); |
510 | 510 | if (!empty($user_choice_array)) { |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | 'td', |
540 | 540 | Display::input( |
541 | 541 | 'radio', |
542 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
542 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
543 | 543 | $key, |
544 | 544 | $attributes |
545 | 545 | ) |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | // may be "" if student viewed the question, but did not fill the blanks |
597 | 597 | $correctItem = $studentAnswerList[$i]; |
598 | 598 | } |
599 | - $attributes["style"] = "width:" . $listAnswerInformations["tabinputsize"][$i] . "px"; |
|
599 | + $attributes["style"] = "width:".$listAnswerInformations["tabinputsize"][$i]."px"; |
|
600 | 600 | $answer .= FillBlanks::getFillTheBlankHtml($separatorStartRegexp, $separatorEndRegexp, $correctItemRegexp, $questionId, $correctItem, $attributes, $answer, $listAnswerInformations, $displayForStudent, $i); |
601 | 601 | } |
602 | 602 | // display the last common word |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | // display the common words |
611 | 611 | $answer .= $listAnswerInformations["commonwords"][$i]; |
612 | 612 | // display the blank word |
613 | - $attributes["style"] = "width:" . $listAnswerInformations["tabinputsize"][$i] . "px"; |
|
613 | + $attributes["style"] = "width:".$listAnswerInformations["tabinputsize"][$i]."px"; |
|
614 | 614 | $correctItem = $listAnswerInformations["tabwords"][$i]; |
615 | 615 | $correctItemRegexp = $correctItem; |
616 | 616 | // replace / with \/ to allow the preg_replace bellow and all the regexp char |
@@ -634,8 +634,8 @@ discard block |
||
634 | 634 | if ($origin !== null) { |
635 | 635 | global $exe_id; |
636 | 636 | $trackAttempts = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ATTEMPT); |
637 | - $sql = 'SELECT answer FROM ' . $trackAttempts . ' |
|
638 | - WHERE exe_id=' . $exe_id . ' AND question_id=' . $questionId; |
|
637 | + $sql = 'SELECT answer FROM '.$trackAttempts.' |
|
638 | + WHERE exe_id=' . $exe_id.' AND question_id='.$questionId; |
|
639 | 639 | $rsLastAttempt = Database::query($sql); |
640 | 640 | $rowLastAttempt = Database::fetch_array($rsLastAttempt); |
641 | 641 | $answer = $rowLastAttempt['answer']; |
@@ -692,7 +692,7 @@ discard block |
||
692 | 692 | '', |
693 | 693 | $answerCorrected |
694 | 694 | ); |
695 | - $answerCorrected = '[' . $answerCorrected . ']'; |
|
695 | + $answerCorrected = '['.$answerCorrected.']'; |
|
696 | 696 | $studentAnswerList[] = $answerCorrected; |
697 | 697 | } |
698 | 698 | } |
@@ -713,7 +713,7 @@ discard block |
||
713 | 713 | */ |
714 | 714 | $tabComments = api_preg_split( |
715 | 715 | '/\[[^]]+\]/', |
716 | - ' ' . $answer . ' ' |
|
716 | + ' '.$answer.' ' |
|
717 | 717 | ); |
718 | 718 | if (!empty($correctAnswerList) && !empty($studentAnswerList)) { |
719 | 719 | $answer = ""; |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | $size |
731 | 731 | ); |
732 | 732 | |
733 | - $answer .= $tabComments[$i] . |
|
733 | + $answer .= $tabComments[$i]. |
|
734 | 734 | Display::input( |
735 | 735 | 'text', |
736 | 736 | "choice[$questionId][]", |
@@ -777,12 +777,12 @@ discard block |
||
777 | 777 | $s .= '<tr><td width="45%" valign="top">'; |
778 | 778 | $parsed_answer = $answer; |
779 | 779 | //left part questions |
780 | - $s .= '<p class="indent">' . $lines_count . '. ' . $parsed_answer . '</p></td>'; |
|
780 | + $s .= '<p class="indent">'.$lines_count.'. '.$parsed_answer.'</p></td>'; |
|
781 | 781 | //middle part (matches selects) |
782 | 782 | |
783 | 783 | $s .= '<td width="10%" valign="top" align="center" > |
784 | 784 | <div class="select-matching"> |
785 | - <select name="choice[' . $questionId . '][' . $numAnswer . ']">'; |
|
785 | + <select name="choice[' . $questionId.']['.$numAnswer.']">'; |
|
786 | 786 | |
787 | 787 | // fills the list-box |
788 | 788 | foreach ($select_items as $key => $val) { |
@@ -798,14 +798,14 @@ discard block |
||
798 | 798 | if (isset($user_choice_array_position[$numAnswer]) && $val['id'] == $user_choice_array_position[$numAnswer]) { |
799 | 799 | $selected = 'selected="selected"'; |
800 | 800 | } |
801 | - $s .= '<option value="' . $val['id'] . '" ' . $selected . '>' . $val['letter'] . '</option>'; |
|
801 | + $s .= '<option value="'.$val['id'].'" '.$selected.'>'.$val['letter'].'</option>'; |
|
802 | 802 | |
803 | 803 | } // end foreach() |
804 | 804 | |
805 | 805 | $s .= '</select></div></td><td width="5%" class="separate"> </td>'; |
806 | 806 | $s .= '<td width="40%" valign="top" >'; |
807 | 807 | if (isset($select_items[$lines_count])) { |
808 | - $s .= '<div class="text-right"><p class="indent">' . $select_items[$lines_count]['letter'] . '. ' . $select_items[$lines_count]['answer'] . '</p></div>'; |
|
808 | + $s .= '<div class="text-right"><p class="indent">'.$select_items[$lines_count]['letter'].'. '.$select_items[$lines_count]['answer'].'</p></div>'; |
|
809 | 809 | } else { |
810 | 810 | $s .= ' '; |
811 | 811 | } |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | $s .= '<tr> |
821 | 821 | <td colspan="2"></td> |
822 | 822 | <td valign="top">'; |
823 | - $s .= '<b>' . $select_items[$lines_count]['letter'] . '.</b> ' . $select_items[$lines_count]['answer']; |
|
823 | + $s .= '<b>'.$select_items[$lines_count]['letter'].'.</b> '.$select_items[$lines_count]['answer']; |
|
824 | 824 | $s .= "</td> |
825 | 825 | </tr>"; |
826 | 826 | $lines_count++; |
@@ -837,9 +837,9 @@ discard block |
||
837 | 837 | $data = $objAnswerTmp->getAnswerByAutoId($data['correct']); |
838 | 838 | $lines_count = $data['answer'];*/ |
839 | 839 | |
840 | - $windowId = $questionId . '_' . $lines_count; |
|
840 | + $windowId = $questionId.'_'.$lines_count; |
|
841 | 841 | |
842 | - $s .= '<li class="touch-items" id="' . $windowId . '">'; |
|
842 | + $s .= '<li class="touch-items" id="'.$windowId.'">'; |
|
843 | 843 | $s .= Display::div( |
844 | 844 | $parsed_answer, |
845 | 845 | [ |
@@ -897,7 +897,7 @@ discard block |
||
897 | 897 | Display::tag( |
898 | 898 | 'b', |
899 | 899 | $select_items[$lines_count]['letter'] |
900 | - ) . $select_items[$lines_count]['answer'], |
|
900 | + ).$select_items[$lines_count]['answer'], |
|
901 | 901 | [ |
902 | 902 | 'id' => "window_{$windowId}_answer", |
903 | 903 | 'style' => 'display: none;' |
@@ -1068,7 +1068,7 @@ discard block |
||
1068 | 1068 | |
1069 | 1069 | for ($answerId = 1; $answerId <= $nbrAnswers; $answerId++) { |
1070 | 1070 | $answerCorrect = $objAnswerTmp->isCorrect($answerId); |
1071 | - $windowId = $questionId . '_' . $counterAnswer; |
|
1071 | + $windowId = $questionId.'_'.$counterAnswer; |
|
1072 | 1072 | |
1073 | 1073 | if ($answerCorrect) { |
1074 | 1074 | $s .= Display::div( |
@@ -1117,7 +1117,7 @@ discard block |
||
1117 | 1117 | $course = api_get_course_info(); |
1118 | 1118 | $doc_id = DocumentManager::get_document_id( |
1119 | 1119 | $course, |
1120 | - '/images/' . $pictureName |
|
1120 | + '/images/'.$pictureName |
|
1121 | 1121 | ); |
1122 | 1122 | if (is_numeric($doc_id)) { |
1123 | 1123 | $images_folder_visibility = api_get_item_visibility( |
@@ -1142,7 +1142,7 @@ discard block |
||
1142 | 1142 | echo " |
1143 | 1143 | <script> |
1144 | 1144 | $(document).on('ready', function () { |
1145 | - new " . ($answerType == HOT_SPOT ? "HotspotQuestion" : "DelineationQuestion") . "({ |
|
1145 | + new " . ($answerType == HOT_SPOT ? "HotspotQuestion" : "DelineationQuestion")."({ |
|
1146 | 1146 | questionId: $questionId, |
1147 | 1147 | exerciseId: $exerciseId, |
1148 | 1148 | selector: '#hotspot-preview-$questionId', |
@@ -1176,7 +1176,7 @@ discard block |
||
1176 | 1176 | if ($answerType != HOT_SPOT_DELINEATION) { |
1177 | 1177 | $answerList = ' |
1178 | 1178 | <div class="well well-sm"> |
1179 | - <h5 class="page-header">' . get_lang('HotspotZones') . '</h5> |
|
1179 | + <h5 class="page-header">' . get_lang('HotspotZones').'</h5> |
|
1180 | 1180 | <ol> |
1181 | 1181 | '; |
1182 | 1182 | |
@@ -1201,7 +1201,7 @@ discard block |
||
1201 | 1201 | if (!$only_questions) { |
1202 | 1202 | if ($show_title) { |
1203 | 1203 | TestCategory::displayCategoryAndTitle($objQuestionTmp->id); |
1204 | - echo '<div class="question_title">' . $current_item . '. ' . $questionName . '</div>'; |
|
1204 | + echo '<div class="question_title">'.$current_item.'. '.$questionName.'</div>'; |
|
1205 | 1205 | } |
1206 | 1206 | //@todo I need to the get the feedback type |
1207 | 1207 | echo <<<HOTSPOT |
@@ -1218,7 +1218,7 @@ discard block |
||
1218 | 1218 | <div class=\"hotspot-image\"></div> |
1219 | 1219 | <script> |
1220 | 1220 | $(document).on('ready', function () { |
1221 | - new " . ($answerType == HOT_SPOT_DELINEATION ? 'DelineationQuestion' : 'HotspotQuestion') . "({ |
|
1221 | + new " . ($answerType == HOT_SPOT_DELINEATION ? 'DelineationQuestion' : 'HotspotQuestion')."({ |
|
1222 | 1222 | questionId: $questionId, |
1223 | 1223 | exerciseId: $exe_id, |
1224 | 1224 | selector: '#question_div_' + $questionId + ' .hotspot-image', |
@@ -1339,11 +1339,11 @@ discard block |
||
1339 | 1339 | $lp_id = intval($lp_id); |
1340 | 1340 | $lp_item_id = intval($lp_item_id); |
1341 | 1341 | return |
1342 | - api_get_course_int_id() . '_' . |
|
1343 | - api_get_session_id() . '_' . |
|
1344 | - $exercise_id . '_' . |
|
1345 | - api_get_user_id() . '_' . |
|
1346 | - $lp_id . '_' . |
|
1342 | + api_get_course_int_id().'_'. |
|
1343 | + api_get_session_id().'_'. |
|
1344 | + $exercise_id.'_'. |
|
1345 | + api_get_user_id().'_'. |
|
1346 | + $lp_id.'_'. |
|
1347 | 1347 | $lp_item_id; |
1348 | 1348 | } |
1349 | 1349 | |
@@ -1457,14 +1457,14 @@ discard block |
||
1457 | 1457 | $res = Database::query($sql); |
1458 | 1458 | $result = array(); |
1459 | 1459 | $apiIsAllowedToEdit = api_is_allowed_to_edit(); |
1460 | - $urlBase = api_get_path(WEB_CODE_PATH) . |
|
1461 | - 'exercise/hotpotatoes_exercise_report.php?action=delete&' . |
|
1462 | - api_get_cidreq() . '&id='; |
|
1460 | + $urlBase = api_get_path(WEB_CODE_PATH). |
|
1461 | + 'exercise/hotpotatoes_exercise_report.php?action=delete&'. |
|
1462 | + api_get_cidreq().'&id='; |
|
1463 | 1463 | while ($data = Database::fetch_array($res)) { |
1464 | 1464 | $actions = null; |
1465 | 1465 | |
1466 | 1466 | if ($apiIsAllowedToEdit) { |
1467 | - $url = $urlBase . $data['id'] . '&path=' . $data['exe_name']; |
|
1467 | + $url = $urlBase.$data['id'].'&path='.$data['exe_name']; |
|
1468 | 1468 | $actions = Display::url( |
1469 | 1469 | Display::return_icon('delete.png', get_lang('Delete')), |
1470 | 1470 | $url |
@@ -1480,7 +1480,7 @@ discard block |
||
1480 | 1480 | GroupManager::get_user_group_name($data['user_id']) |
1481 | 1481 | ), |
1482 | 1482 | 'exe_date' => $data['exe_date'], |
1483 | - 'score' => $data['exe_result'] . ' / ' . $data['exe_weighting'], |
|
1483 | + 'score' => $data['exe_result'].' / '.$data['exe_weighting'], |
|
1484 | 1484 | 'actions' => $actions, |
1485 | 1485 | ); |
1486 | 1486 | } |
@@ -1564,18 +1564,18 @@ discard block |
||
1564 | 1564 | $TBL_TRACK_HOTPOTATOES = Database:: get_main_table(TABLE_STATISTIC_TRACK_E_HOTPOTATOES); |
1565 | 1565 | $TBL_TRACK_ATTEMPT_RECORDING = Database:: get_main_table(TABLE_STATISTIC_TRACK_E_ATTEMPT_RECORDING); |
1566 | 1566 | |
1567 | - $session_id_and = ' AND te.session_id = ' . $sessionId . ' '; |
|
1567 | + $session_id_and = ' AND te.session_id = '.$sessionId.' '; |
|
1568 | 1568 | $exercise_id = intval($exercise_id); |
1569 | 1569 | |
1570 | 1570 | $exercise_where = ''; |
1571 | 1571 | if (!empty($exercise_id)) { |
1572 | - $exercise_where .= ' AND te.exe_exo_id = ' . $exercise_id . ' '; |
|
1572 | + $exercise_where .= ' AND te.exe_exo_id = '.$exercise_id.' '; |
|
1573 | 1573 | } |
1574 | 1574 | |
1575 | 1575 | $hotpotatoe_where = ''; |
1576 | 1576 | if (!empty($_GET['path'])) { |
1577 | 1577 | $hotpotatoe_path = Database::escape_string($_GET['path']); |
1578 | - $hotpotatoe_where .= ' AND exe_name = "' . $hotpotatoe_path . '" '; |
|
1578 | + $hotpotatoe_where .= ' AND exe_name = "'.$hotpotatoe_path.'" '; |
|
1579 | 1579 | } |
1580 | 1580 | |
1581 | 1581 | // sql for chamilo-type tests for teacher / tutor view |
@@ -1587,7 +1587,7 @@ discard block |
||
1587 | 1587 | WHERE |
1588 | 1588 | c_id = $course_id AND |
1589 | 1589 | exe_exo_id = $exercise_id AND |
1590 | - ttte.session_id = " . $sessionId . " |
|
1590 | + ttte.session_id = ".$sessionId." |
|
1591 | 1591 | )"; |
1592 | 1592 | |
1593 | 1593 | if ($is_allowedToEdit) { |
@@ -1610,9 +1610,9 @@ discard block |
||
1610 | 1610 | g.id as group_id |
1611 | 1611 | FROM $TBL_USER u |
1612 | 1612 | INNER JOIN $TBL_GROUP_REL_USER gru |
1613 | - ON (gru.user_id = u.user_id AND gru.c_id=" . $course_id . ") |
|
1613 | + ON (gru.user_id = u.user_id AND gru.c_id=".$course_id.") |
|
1614 | 1614 | INNER JOIN $TBL_GROUP g |
1615 | - ON (gru.group_id = g.id AND g.c_id=" . $course_id . ") |
|
1615 | + ON (gru.group_id = g.id AND g.c_id=".$course_id.") |
|
1616 | 1616 | )"; |
1617 | 1617 | } |
1618 | 1618 | |
@@ -1673,9 +1673,9 @@ discard block |
||
1673 | 1673 | g.id as group_id |
1674 | 1674 | FROM $TBL_USER u |
1675 | 1675 | LEFT OUTER JOIN $TBL_GROUP_REL_USER gru |
1676 | - ON ( gru.user_id = u.user_id AND gru.c_id=" . $course_id . " ) |
|
1676 | + ON ( gru.user_id = u.user_id AND gru.c_id=".$course_id." ) |
|
1677 | 1677 | LEFT OUTER JOIN $TBL_GROUP g |
1678 | - ON (gru.group_id = g.id AND g.c_id = " . $course_id . ") |
|
1678 | + ON (gru.group_id = g.id AND g.c_id = ".$course_id.") |
|
1679 | 1679 | )"; |
1680 | 1680 | } |
1681 | 1681 | |
@@ -1688,12 +1688,12 @@ discard block |
||
1688 | 1688 | ( |
1689 | 1689 | SELECT u.user_id, firstname, lastname, email, username, ' ' as group_name, '' as group_id, official_code |
1690 | 1690 | FROM $TBL_USER u |
1691 | - WHERE u.status NOT IN(" . api_get_users_status_ignored_in_reports('string') . ") |
|
1691 | + WHERE u.status NOT IN(".api_get_users_status_ignored_in_reports('string').") |
|
1692 | 1692 | )"; |
1693 | 1693 | } |
1694 | 1694 | |
1695 | 1695 | $sqlFromOption = " , $TBL_GROUP_REL_USER AS gru "; |
1696 | - $sqlWhereOption = " AND gru.c_id = " . $course_id . " AND gru.user_id = user.user_id "; |
|
1696 | + $sqlWhereOption = " AND gru.c_id = ".$course_id." AND gru.user_id = user.user_id "; |
|
1697 | 1697 | $first_and_last_name = api_is_western_name_order() ? "firstname, lastname" : "lastname, firstname"; |
1698 | 1698 | |
1699 | 1699 | if ($get_count) { |
@@ -1730,9 +1730,9 @@ discard block |
||
1730 | 1730 | ON (user.user_id = exe_user_id) |
1731 | 1731 | WHERE |
1732 | 1732 | te.status != 'incomplete' AND |
1733 | - te.c_id = " . $course_id . " $session_id_and AND |
|
1733 | + te.c_id = ".$course_id." $session_id_and AND |
|
1734 | 1734 | ce.active <>-1 AND |
1735 | - ce.c_id = " . $course_id . " |
|
1735 | + ce.c_id = ".$course_id." |
|
1736 | 1736 | $exercise_where |
1737 | 1737 | $extra_where_conditions |
1738 | 1738 | "; |
@@ -1759,10 +1759,10 @@ discard block |
||
1759 | 1759 | $sqlFromOption |
1760 | 1760 | WHERE |
1761 | 1761 | user.user_id=tth.exe_user_id |
1762 | - AND tth.c_id = " . $course_id . " |
|
1762 | + AND tth.c_id = ".$course_id." |
|
1763 | 1763 | $hotpotatoe_where |
1764 | 1764 | $sqlWhereOption |
1765 | - AND user.status NOT IN(" . api_get_users_status_ignored_in_reports('string') . ") |
|
1765 | + AND user.status NOT IN(".api_get_users_status_ignored_in_reports('string').") |
|
1766 | 1766 | ORDER BY |
1767 | 1767 | tth.c_id ASC, |
1768 | 1768 | tth.exe_date DESC"; |
@@ -1835,12 +1835,12 @@ discard block |
||
1835 | 1835 | |
1836 | 1836 | if ($from_gradebook && ($is_allowedToEdit)) { |
1837 | 1837 | if (in_array( |
1838 | - $results[$i]['username'] . $results[$i]['firstname'] . $results[$i]['lastname'], |
|
1838 | + $results[$i]['username'].$results[$i]['firstname'].$results[$i]['lastname'], |
|
1839 | 1839 | $users_array_id |
1840 | 1840 | )) { |
1841 | 1841 | continue; |
1842 | 1842 | } |
1843 | - $users_array_id[] = $results[$i]['username'] . $results[$i]['firstname'] . $results[$i]['lastname']; |
|
1843 | + $users_array_id[] = $results[$i]['username'].$results[$i]['firstname'].$results[$i]['lastname']; |
|
1844 | 1844 | } |
1845 | 1845 | |
1846 | 1846 | $lp_obj = isset($results[$i]['orig_lp_id']) && isset($lp_list[$results[$i]['orig_lp_id']]) ? $lp_list[$results[$i]['orig_lp_id']] : null; |
@@ -1849,7 +1849,7 @@ discard block |
||
1849 | 1849 | if ($lp_obj) { |
1850 | 1850 | $url = api_get_path( |
1851 | 1851 | WEB_CODE_PATH |
1852 | - ) . 'lp/lp_controller.php?' . api_get_cidreq() . '&action=view&lp_id=' . $results[$i]['orig_lp_id']; |
|
1852 | + ).'lp/lp_controller.php?'.api_get_cidreq().'&action=view&lp_id='.$results[$i]['orig_lp_id']; |
|
1853 | 1853 | $lp_name = Display::url( |
1854 | 1854 | $lp_obj['lp_name'], |
1855 | 1855 | $url, |
@@ -1867,7 +1867,7 @@ discard block |
||
1867 | 1867 | ); |
1868 | 1868 | |
1869 | 1869 | foreach ($group_list as $id) { |
1870 | - $group_name_list .= $clean_group_list[$id] . '<br/>'; |
|
1870 | + $group_name_list .= $clean_group_list[$id].'<br/>'; |
|
1871 | 1871 | } |
1872 | 1872 | $results[$i]['group_name'] = $group_name_list; |
1873 | 1873 | } |
@@ -1923,7 +1923,7 @@ discard block |
||
1923 | 1923 | } |
1924 | 1924 | } |
1925 | 1925 | if ($revised) { |
1926 | - $actions .= "<a href='exercise_show.php?" . api_get_cidreq() . "&action=edit&id=$id'>" . |
|
1926 | + $actions .= "<a href='exercise_show.php?".api_get_cidreq()."&action=edit&id=$id'>". |
|
1927 | 1927 | Display:: return_icon( |
1928 | 1928 | 'edit.png', |
1929 | 1929 | get_lang('Edit'), |
@@ -1932,7 +1932,7 @@ discard block |
||
1932 | 1932 | ); |
1933 | 1933 | $actions .= ' '; |
1934 | 1934 | } else { |
1935 | - $actions .= "<a href='exercise_show.php?" . api_get_cidreq() . "&action=qualify&id=$id'>" . |
|
1935 | + $actions .= "<a href='exercise_show.php?".api_get_cidreq()."&action=qualify&id=$id'>". |
|
1936 | 1936 | Display:: return_icon( |
1937 | 1937 | 'quiz.png', |
1938 | 1938 | get_lang('Qualify') |
@@ -1942,11 +1942,11 @@ discard block |
||
1942 | 1942 | $actions .= "</a>"; |
1943 | 1943 | |
1944 | 1944 | if ($filter == 2) { |
1945 | - $actions .= ' <a href="exercise_history.php?' . api_get_cidreq() . '&exe_id=' . $id . '">' . |
|
1945 | + $actions .= ' <a href="exercise_history.php?'.api_get_cidreq().'&exe_id='.$id.'">'. |
|
1946 | 1946 | Display:: return_icon( |
1947 | 1947 | 'history.png', |
1948 | 1948 | get_lang('ViewHistoryChange') |
1949 | - ) . '</a>'; |
|
1949 | + ).'</a>'; |
|
1950 | 1950 | } |
1951 | 1951 | |
1952 | 1952 | //Admin can always delete the attempt |
@@ -1956,13 +1956,13 @@ discard block |
||
1956 | 1956 | date('Y-m-d h:i:s'), |
1957 | 1957 | false |
1958 | 1958 | ); |
1959 | - $actions .= '<a href="http://www.whatsmyip.org/ip-geo-location/?ip=' . $ip . '" target="_blank"> |
|
1960 | - ' . Display::return_icon('info.png', $ip) . ' |
|
1959 | + $actions .= '<a href="http://www.whatsmyip.org/ip-geo-location/?ip='.$ip.'" target="_blank"> |
|
1960 | + ' . Display::return_icon('info.png', $ip).' |
|
1961 | 1961 | </a>'; |
1962 | 1962 | |
1963 | 1963 | |
1964 | - $recalculateUrl = api_get_path(WEB_CODE_PATH) . 'exercise/recalculate.php?' . |
|
1965 | - api_get_cidreq() . '&' . |
|
1964 | + $recalculateUrl = api_get_path(WEB_CODE_PATH).'exercise/recalculate.php?'. |
|
1965 | + api_get_cidreq().'&'. |
|
1966 | 1966 | http_build_query([ |
1967 | 1967 | 'id' => $id, |
1968 | 1968 | 'exercise' => $exercise_id, |
@@ -1979,27 +1979,27 @@ discard block |
||
1979 | 1979 | ] |
1980 | 1980 | ); |
1981 | 1981 | |
1982 | - $delete_link = '<a href="exercise_report.php?' . api_get_cidreq() . '&filter_by_user=' . intval($_GET['filter_by_user']) . '&filter=' . $filter . '&exerciseId=' . $exercise_id . '&delete=delete&did=' . $id . '" |
|
1982 | + $delete_link = '<a href="exercise_report.php?'.api_get_cidreq().'&filter_by_user='.intval($_GET['filter_by_user']).'&filter='.$filter.'&exerciseId='.$exercise_id.'&delete=delete&did='.$id.'" |
|
1983 | 1983 | onclick="javascript:if(!confirm(\'' . sprintf( |
1984 | 1984 | get_lang('DeleteAttempt'), |
1985 | 1985 | $results[$i]['username'], |
1986 | 1986 | $dt |
1987 | - ) . '\')) return false;">' . Display:: return_icon( |
|
1987 | + ).'\')) return false;">'.Display:: return_icon( |
|
1988 | 1988 | 'delete.png', |
1989 | 1989 | get_lang('Delete') |
1990 | - ) . '</a>'; |
|
1990 | + ).'</a>'; |
|
1991 | 1991 | $delete_link = utf8_encode($delete_link); |
1992 | 1992 | |
1993 | 1993 | if (api_is_drh() && !api_is_platform_admin()) { |
1994 | 1994 | $delete_link = null; |
1995 | 1995 | } |
1996 | - $actions .= $delete_link . ' '; |
|
1996 | + $actions .= $delete_link.' '; |
|
1997 | 1997 | } |
1998 | 1998 | |
1999 | 1999 | } else { |
2000 | 2000 | $attempt_url = api_get_path( |
2001 | 2001 | WEB_CODE_PATH |
2002 | - ) . 'exercise/result.php?' . api_get_cidreq() . '&id=' . $results[$i]['exe_id'] . '&id_session=' . $sessionId; |
|
2002 | + ).'exercise/result.php?'.api_get_cidreq().'&id='.$results[$i]['exe_id'].'&id_session='.$sessionId; |
|
2003 | 2003 | $attempt_link = Display::url( |
2004 | 2004 | get_lang('Show'), |
2005 | 2005 | $attempt_url, |
@@ -2058,7 +2058,7 @@ discard block |
||
2058 | 2058 | $hp_result = round( |
2059 | 2059 | ($hpresults[$i][4] / ($hpresults[$i][5] != 0 ? $hpresults[$i][5] : 1)) * 100, |
2060 | 2060 | 2 |
2061 | - ) . '% (' . $hpresults[$i][4] . ' / ' . $hpresults[$i][5] . ')'; |
|
2061 | + ).'% ('.$hpresults[$i][4].' / '.$hpresults[$i][5].')'; |
|
2062 | 2062 | if ($is_allowedToEdit) { |
2063 | 2063 | $list_info[] = array( |
2064 | 2064 | $hpresults[$i][0], |
@@ -2132,13 +2132,13 @@ discard block |
||
2132 | 2132 | |
2133 | 2133 | $html = null; |
2134 | 2134 | if ($show_percentage) { |
2135 | - $parent = '(' . $score . ' / ' . $weight . ')'; |
|
2136 | - $html = $percentage . "% $parent"; |
|
2135 | + $parent = '('.$score.' / '.$weight.')'; |
|
2136 | + $html = $percentage."% $parent"; |
|
2137 | 2137 | if ($show_only_percentage) { |
2138 | - $html = $percentage . "% "; |
|
2138 | + $html = $percentage."% "; |
|
2139 | 2139 | } |
2140 | 2140 | } else { |
2141 | - $html = $score . ' / ' . $weight; |
|
2141 | + $html = $score.' / '.$weight; |
|
2142 | 2142 | } |
2143 | 2143 | $html = Display::span($html, array('class' => 'score_exercise')); |
2144 | 2144 | |
@@ -2232,7 +2232,7 @@ discard block |
||
2232 | 2232 | { |
2233 | 2233 | $return = '-'; |
2234 | 2234 | if ($value != '') { |
2235 | - $return = float_format($value * 100, 1) . ' %'; |
|
2235 | + $return = float_format($value * 100, 1).' %'; |
|
2236 | 2236 | } |
2237 | 2237 | return $return; |
2238 | 2238 | } |
@@ -2311,7 +2311,7 @@ discard block |
||
2311 | 2311 | } |
2312 | 2312 | |
2313 | 2313 | $needle_where = !empty($search) ? " AND title LIKE '?' " : ''; |
2314 | - $needle = !empty($search) ? "%" . $search . "%" : ''; |
|
2314 | + $needle = !empty($search) ? "%".$search."%" : ''; |
|
2315 | 2315 | |
2316 | 2316 | // Show courses by active status |
2317 | 2317 | $active_sql = ''; |
@@ -2326,7 +2326,7 @@ discard block |
||
2326 | 2326 | if ($search_all_sessions == true) { |
2327 | 2327 | $conditions = array( |
2328 | 2328 | 'where' => array( |
2329 | - $active_sql . ' c_id = ? ' . $needle_where . $time_conditions => array( |
|
2329 | + $active_sql.' c_id = ? '.$needle_where.$time_conditions => array( |
|
2330 | 2330 | $course_id, |
2331 | 2331 | $needle |
2332 | 2332 | ) |
@@ -2337,7 +2337,7 @@ discard block |
||
2337 | 2337 | if ($session_id == 0) { |
2338 | 2338 | $conditions = array( |
2339 | 2339 | 'where' => array( |
2340 | - $active_sql . ' session_id = ? AND c_id = ? ' . $needle_where . $time_conditions => array( |
|
2340 | + $active_sql.' session_id = ? AND c_id = ? '.$needle_where.$time_conditions => array( |
|
2341 | 2341 | $session_id, |
2342 | 2342 | $course_id, |
2343 | 2343 | $needle |
@@ -2348,7 +2348,7 @@ discard block |
||
2348 | 2348 | } else { |
2349 | 2349 | $conditions = array( |
2350 | 2350 | 'where' => array( |
2351 | - $active_sql . ' (session_id = 0 OR session_id = ? ) AND c_id = ? ' . $needle_where . $time_conditions => array( |
|
2351 | + $active_sql.' (session_id = 0 OR session_id = ? ) AND c_id = ? '.$needle_where.$time_conditions => array( |
|
2352 | 2352 | $session_id, |
2353 | 2353 | $course_id, |
2354 | 2354 | $needle |
@@ -2529,7 +2529,7 @@ discard block |
||
2529 | 2529 | |
2530 | 2530 | if ($return_string) { |
2531 | 2531 | if (!empty($position) && !empty($my_ranking)) { |
2532 | - $return_value = $position . '/' . count($my_ranking); |
|
2532 | + $return_value = $position.'/'.count($my_ranking); |
|
2533 | 2533 | } else { |
2534 | 2534 | $return_value = '-'; |
2535 | 2535 | } |
@@ -2610,7 +2610,7 @@ discard block |
||
2610 | 2610 | |
2611 | 2611 | if ($return_string) { |
2612 | 2612 | if (!empty($position) && !empty($my_ranking)) { |
2613 | - return $position . '/' . count($my_ranking); |
|
2613 | + return $position.'/'.count($my_ranking); |
|
2614 | 2614 | } |
2615 | 2615 | } |
2616 | 2616 | return $return_value; |
@@ -3015,7 +3015,7 @@ discard block |
||
3015 | 3015 | $courseCondition = " |
3016 | 3016 | INNER JOIN $courseUser cu |
3017 | 3017 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
3018 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
3018 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
3019 | 3019 | } else { |
3020 | 3020 | $courseCondition = " |
3021 | 3021 | INNER JOIN $courseUserSession cu |
@@ -3091,7 +3091,7 @@ discard block |
||
3091 | 3091 | $courseCondition = " |
3092 | 3092 | INNER JOIN $courseUser cu |
3093 | 3093 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
3094 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
3094 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
3095 | 3095 | } else { |
3096 | 3096 | $courseCondition = " |
3097 | 3097 | INNER JOIN $courseUserSession cu |
@@ -3184,7 +3184,7 @@ discard block |
||
3184 | 3184 | $courseCondition = " |
3185 | 3185 | INNER JOIN $courseUser cu |
3186 | 3186 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
3187 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
3187 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
3188 | 3188 | } else { |
3189 | 3189 | $courseCondition = " |
3190 | 3190 | INNER JOIN $courseUserSession cu |
@@ -3366,7 +3366,7 @@ discard block |
||
3366 | 3366 | } |
3367 | 3367 | } |
3368 | 3368 | // adds the correct word, followed by ] to close the blank |
3369 | - $answer .= ' / <font color="green"><b>' . $real_correct_tags[$i] . '</b></font>]'; |
|
3369 | + $answer .= ' / <font color="green"><b>'.$real_correct_tags[$i].'</b></font>]'; |
|
3370 | 3370 | if (isset ($real_text[$i + 1])) { |
3371 | 3371 | $answer .= $real_text[$i + 1]; |
3372 | 3372 | } |
@@ -3426,13 +3426,13 @@ discard block |
||
3426 | 3426 | // check the default value of option |
3427 | 3427 | $tabSelected = array($in_default => " selected='selected' "); |
3428 | 3428 | $res = ""; |
3429 | - $res .= "<select name='$in_name' id='$in_name' onchange='" . $in_onchange . "' >"; |
|
3430 | - $res .= "<option value='-1'" . $tabSelected["-1"] . ">-- " . get_lang( |
|
3429 | + $res .= "<select name='$in_name' id='$in_name' onchange='".$in_onchange."' >"; |
|
3430 | + $res .= "<option value='-1'".$tabSelected["-1"].">-- ".get_lang( |
|
3431 | 3431 | 'AllGroups' |
3432 | - ) . " --</option>"; |
|
3433 | - $res .= "<option value='0'" . $tabSelected["0"] . ">- " . get_lang( |
|
3432 | + )." --</option>"; |
|
3433 | + $res .= "<option value='0'".$tabSelected["0"].">- ".get_lang( |
|
3434 | 3434 | 'NotInAGroup' |
3435 | - ) . " -</option>"; |
|
3435 | + )." -</option>"; |
|
3436 | 3436 | $tabGroups = GroupManager::get_group_list(); |
3437 | 3437 | $currentCatId = 0; |
3438 | 3438 | for ($i = 0; $i < count($tabGroups); $i++) { |
@@ -3440,10 +3440,10 @@ discard block |
||
3440 | 3440 | $tabGroups[$i]['iid'] |
3441 | 3441 | ); |
3442 | 3442 | if ($tabCategory["id"] != $currentCatId) { |
3443 | - $res .= "<option value='-1' disabled='disabled'>" . $tabCategory["title"] . "</option>"; |
|
3443 | + $res .= "<option value='-1' disabled='disabled'>".$tabCategory["title"]."</option>"; |
|
3444 | 3444 | $currentCatId = $tabCategory["id"]; |
3445 | 3445 | } |
3446 | - $res .= "<option " . $tabSelected[$tabGroups[$i]["id"]] . "style='margin-left:40px' value='" . $tabGroups[$i]["id"] . "'>" . $tabGroups[$i]["name"] . "</option>"; |
|
3446 | + $res .= "<option ".$tabSelected[$tabGroups[$i]["id"]]."style='margin-left:40px' value='".$tabGroups[$i]["id"]."'>".$tabGroups[$i]["name"]."</option>"; |
|
3447 | 3447 | } |
3448 | 3448 | $res .= "</select>"; |
3449 | 3449 | return $res; |
@@ -3678,14 +3678,14 @@ discard block |
||
3678 | 3678 | if ($show_results) { |
3679 | 3679 | $comnt = Event::get_comments($exe_id, $questionId); |
3680 | 3680 | if (!empty($comnt)) { |
3681 | - echo '<b>' . get_lang('Feedback') . '</b>'; |
|
3682 | - echo '<div id="question_feedback">' . $comnt . '</div>'; |
|
3681 | + echo '<b>'.get_lang('Feedback').'</b>'; |
|
3682 | + echo '<div id="question_feedback">'.$comnt.'</div>'; |
|
3683 | 3683 | } |
3684 | 3684 | } |
3685 | 3685 | |
3686 | 3686 | if ($show_results) { |
3687 | 3687 | $score = array( |
3688 | - 'result' => get_lang('Score') . " : " . self::show_score( |
|
3688 | + 'result' => get_lang('Score')." : ".self::show_score( |
|
3689 | 3689 | $my_total_score, |
3690 | 3690 | $my_total_weight, |
3691 | 3691 | false, |
@@ -3753,9 +3753,9 @@ discard block |
||
3753 | 3753 | } |
3754 | 3754 | |
3755 | 3755 | if ($show_all_but_expected_answer) { |
3756 | - $exercise_content .= "<div class='normal-message'>" . get_lang( |
|
3756 | + $exercise_content .= "<div class='normal-message'>".get_lang( |
|
3757 | 3757 | "ExerciseWithFeedbackWithoutCorrectionComment" |
3758 | - ) . "</div>"; |
|
3758 | + )."</div>"; |
|
3759 | 3759 | } |
3760 | 3760 | // Remove audio auto play from questions on results page - refs BT#7939 |
3761 | 3761 | $exercise_content = preg_replace( |
@@ -3855,11 +3855,11 @@ discard block |
||
3855 | 3855 | $ribbon_total_success_or_error = ' ribbon-total-error'; |
3856 | 3856 | } |
3857 | 3857 | } |
3858 | - $ribbon .= '<div class="total ' . $ribbon_total_success_or_error . '">'; |
|
3858 | + $ribbon .= '<div class="total '.$ribbon_total_success_or_error.'">'; |
|
3859 | 3859 | } else { |
3860 | 3860 | $ribbon .= '<div class="total">'; |
3861 | 3861 | } |
3862 | - $ribbon .= '<h3>' . get_lang('YourTotalScore') . ": "; |
|
3862 | + $ribbon .= '<h3>'.get_lang('YourTotalScore').": "; |
|
3863 | 3863 | $ribbon .= self::show_score($score, $weight, false, true); |
3864 | 3864 | $ribbon .= '</h3>'; |
3865 | 3865 | $ribbon .= '</div>'; |
@@ -9,7 +9,6 @@ |
||
9 | 9 | { |
10 | 10 | /** |
11 | 11 | * @param $value array Uploaded file info (from $_FILES) |
12 | - * @param null $options |
|
13 | 12 | * @return bool |
14 | 13 | */ |
15 | 14 | public function validate($elementValue, $maxSize) |
@@ -7,22 +7,22 @@ |
||
7 | 7 | */ |
8 | 8 | class HTML_QuickForm_Rule_MaxFileSize extends HTML_QuickForm_Rule |
9 | 9 | { |
10 | - /** |
|
11 | - * @param $value array Uploaded file info (from $_FILES) |
|
12 | - * @param null $options |
|
13 | - * @return bool |
|
14 | - */ |
|
15 | - public function validate($elementValue, $maxSize) |
|
16 | - { |
|
17 | - if (!empty($elementValue['error']) && |
|
18 | - (UPLOAD_ERR_FORM_SIZE == $elementValue['error'] || UPLOAD_ERR_INI_SIZE == $elementValue['error']) |
|
19 | - ) { |
|
20 | - return false; |
|
21 | - } |
|
22 | - if (!HTML_QuickForm_file::_ruleIsUploadedFile($elementValue)) { |
|
23 | - return true; |
|
24 | - } |
|
10 | + /** |
|
11 | + * @param $value array Uploaded file info (from $_FILES) |
|
12 | + * @param null $options |
|
13 | + * @return bool |
|
14 | + */ |
|
15 | + public function validate($elementValue, $maxSize) |
|
16 | + { |
|
17 | + if (!empty($elementValue['error']) && |
|
18 | + (UPLOAD_ERR_FORM_SIZE == $elementValue['error'] || UPLOAD_ERR_INI_SIZE == $elementValue['error']) |
|
19 | + ) { |
|
20 | + return false; |
|
21 | + } |
|
22 | + if (!HTML_QuickForm_file::_ruleIsUploadedFile($elementValue)) { |
|
23 | + return true; |
|
24 | + } |
|
25 | 25 | |
26 | - return ($maxSize >= @filesize($elementValue['tmp_name'])); |
|
27 | - } |
|
26 | + return ($maxSize >= @filesize($elementValue['tmp_name'])); |
|
27 | + } |
|
28 | 28 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * |
17 | 17 | * @param string Mobile phone number to be validated |
18 | 18 | * @param string Not using it. Just to respect the declaration |
19 | - * @return boolean Returns true if valid, false otherwise. |
|
19 | + * @return integer Returns true if valid, false otherwise. |
|
20 | 20 | */ |
21 | 21 | function validate($mobilePhoneNumber, $options = null) |
22 | 22 | { |
@@ -138,7 +138,7 @@ |
||
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Return a list an associative array where keys are the active hook observer class name |
141 | - * @param $eventName |
|
141 | + * @param string $eventName |
|
142 | 142 | * |
143 | 143 | * @return array |
144 | 144 | */ |
@@ -145,10 +145,10 @@ discard block |
||
145 | 145 | public function listHookObservers($eventName) |
146 | 146 | { |
147 | 147 | $array = array(); |
148 | - $joinTable = $this->tables[TABLE_HOOK_CALL] . ' hc' . |
|
149 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_EVENT] . ' he' . |
|
150 | - ' ON hc.hook_event_id = he.id ' . |
|
151 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_OBSERVER] . ' ho ' . |
|
148 | + $joinTable = $this->tables[TABLE_HOOK_CALL].' hc'. |
|
149 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_EVENT].' he'. |
|
150 | + ' ON hc.hook_event_id = he.id '. |
|
151 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_OBSERVER].' ho '. |
|
152 | 152 | ' ON hc.hook_observer_id = ho.id '; |
153 | 153 | $columns = 'ho.class_name, ho.path, ho.plugin_name, hc.enabled'; |
154 | 154 | $where = array('where' => array('he.class_name = ? ' => $eventName, 'AND hc.enabled = ? ' => 1)); |
@@ -202,10 +202,10 @@ discard block |
||
202 | 202 | public function listAllHookCalls() |
203 | 203 | { |
204 | 204 | $array = array(); |
205 | - $joinTable = $this->tables[TABLE_HOOK_CALL] . ' hc' . |
|
206 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_EVENT] . ' he' . |
|
207 | - ' ON hc.hook_event_id = he.id ' . |
|
208 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_OBSERVER] . ' ho ' . |
|
205 | + $joinTable = $this->tables[TABLE_HOOK_CALL].' hc'. |
|
206 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_EVENT].' he'. |
|
207 | + ' ON hc.hook_event_id = he.id '. |
|
208 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_OBSERVER].' ho '. |
|
209 | 209 | ' ON hc.hook_observer_id = ho.id '; |
210 | 210 | $columns = 'he.class_name AS event_class_name, ho.class_name AS observer_class_name, hc.id AS id, hc.type AS type'; |
211 | 211 | $rows = Database::select($columns, $joinTable); |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | if (isset($eventName) && !isset($this->hookEvents[$eventName])) { |
232 | 232 | $attributes = array( |
233 | 233 | 'class_name' => $eventName, |
234 | - 'description' => get_lang('HookDescription' . $eventName), |
|
234 | + 'description' => get_lang('HookDescription'.$eventName), |
|
235 | 235 | ); |
236 | 236 | $id = Database::insert($this->tables[TABLE_HOOK_EVENT], $attributes); |
237 | 237 | $this->hookEvents[$eventName] = $id; |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | // Check if exists hook observer |
241 | 241 | if (isset($observerClassName) && |
242 | 242 | !isset($this->hookObservers[$observerClassName]) |
243 | - ){ |
|
243 | + ) { |
|
244 | 244 | $object = $observerClassName::create(); |
245 | 245 | $attributes = array( |
246 | 246 | 'class_name' => $observerClassName, |
@@ -338,10 +338,10 @@ discard block |
||
338 | 338 | $eventName = Database::escape_string($eventName); |
339 | 339 | $observerClassName($observerClassName); |
340 | 340 | $type = Database::escape_string($type); |
341 | - $joinTable = $this->tables[TABLE_HOOK_CALL] . ' hc' . |
|
342 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_EVENT] . ' he' . |
|
343 | - ' ON hc.hook_event_id = he.id ' . |
|
344 | - ' INNER JOIN ' . $this->tables[TABLE_HOOK_OBSERVER] . ' ho ' . |
|
341 | + $joinTable = $this->tables[TABLE_HOOK_CALL].' hc'. |
|
342 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_EVENT].' he'. |
|
343 | + ' ON hc.hook_event_id = he.id '. |
|
344 | + ' INNER JOIN '.$this->tables[TABLE_HOOK_OBSERVER].' ho '. |
|
345 | 345 | ' ON hc.hook_observer_id = ho.id '; |
346 | 346 | $row = Database::select( |
347 | 347 | 'id', |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Useful finder - experimental akelos like only use in notification.lib.php send function |
28 | + * @param string $type |
|
28 | 29 | */ |
29 | 30 | public function find($type, $options = null) |
30 | 31 | { |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * gets the current debug data for this instance |
308 | 308 | * |
309 | - * @return debug data |
|
309 | + * @return string data |
|
310 | 310 | * @access public |
311 | 311 | */ |
312 | 312 | function &getDebug() { |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * gets the current debug data for this instance as an XML comment |
320 | 320 | * this may change the contents of the debug data |
321 | 321 | * |
322 | - * @return debug data as an XML comment |
|
322 | + * @return string data as an XML comment |
|
323 | 323 | * @access public |
324 | 324 | */ |
325 | 325 | function &getDebugAsXMLComment() { |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | /** |
353 | 353 | * returns error string if present |
354 | 354 | * |
355 | - * @return mixed error string or false |
|
355 | + * @return string|false error string or false |
|
356 | 356 | * @access public |
357 | 357 | */ |
358 | 358 | function getError(){ |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | /** |
366 | 366 | * sets error string |
367 | 367 | * |
368 | - * @return boolean $string error string |
|
368 | + * @return boolean|null $string error string |
|
369 | 369 | * @access private |
370 | 370 | */ |
371 | 371 | function setError($str){ |
@@ -801,7 +801,7 @@ discard block |
||
801 | 801 | * returns false, if not prefixed |
802 | 802 | * |
803 | 803 | * @param string $str The prefixed string |
804 | - * @return mixed The prefix or false if there is no prefix |
|
804 | + * @return string|false The prefix or false if there is no prefix |
|
805 | 805 | * @access public |
806 | 806 | */ |
807 | 807 | function getPrefix($str){ |
@@ -832,7 +832,7 @@ discard block |
||
832 | 832 | * or false if no prefixes registered for the given namespace |
833 | 833 | * |
834 | 834 | * @param string $ns The namespace |
835 | - * @return mixed The prefix, false if the namespace has no prefixes |
|
835 | + * @return string The prefix, false if the namespace has no prefixes |
|
836 | 836 | * @access public |
837 | 837 | */ |
838 | 838 | function getPrefixFromNamespace($ns) { |
@@ -898,7 +898,7 @@ discard block |
||
898 | 898 | * |
899 | 899 | * @param int $timestamp Unix time stamp |
900 | 900 | * @param boolean $utc Whether the time stamp is UTC or local |
901 | -* @return mixed ISO 8601 date string or false |
|
901 | +* @return string|false ISO 8601 date string or false |
|
902 | 902 | * @access public |
903 | 903 | */ |
904 | 904 | function timestamp_to_iso8601($timestamp,$utc=true){ |
@@ -183,26 +183,26 @@ discard block |
||
183 | 183 | */ |
184 | 184 | var $typemap = array( |
185 | 185 | 'http://www.w3.org/2001/XMLSchema' => array( |
186 | - 'string'=>'string','boolean'=>'boolean','float'=>'double','double'=>'double','decimal'=>'double', |
|
187 | - 'duration'=>'','dateTime'=>'string','time'=>'string','date'=>'string','gYearMonth'=>'', |
|
188 | - 'gYear'=>'','gMonthDay'=>'','gDay'=>'','gMonth'=>'','hexBinary'=>'string','base64Binary'=>'string', |
|
186 | + 'string'=>'string', 'boolean'=>'boolean', 'float'=>'double', 'double'=>'double', 'decimal'=>'double', |
|
187 | + 'duration'=>'', 'dateTime'=>'string', 'time'=>'string', 'date'=>'string', 'gYearMonth'=>'', |
|
188 | + 'gYear'=>'', 'gMonthDay'=>'', 'gDay'=>'', 'gMonth'=>'', 'hexBinary'=>'string', 'base64Binary'=>'string', |
|
189 | 189 | // abstract "any" types |
190 | - 'anyType'=>'string','anySimpleType'=>'string', |
|
190 | + 'anyType'=>'string', 'anySimpleType'=>'string', |
|
191 | 191 | // derived datatypes |
192 | - 'normalizedString'=>'string','token'=>'string','language'=>'','NMTOKEN'=>'','NMTOKENS'=>'','Name'=>'','NCName'=>'','ID'=>'', |
|
193 | - 'IDREF'=>'','IDREFS'=>'','ENTITY'=>'','ENTITIES'=>'','integer'=>'integer','nonPositiveInteger'=>'integer', |
|
194 | - 'negativeInteger'=>'integer','long'=>'integer','int'=>'integer','short'=>'integer','byte'=>'integer','nonNegativeInteger'=>'integer', |
|
195 | - 'unsignedLong'=>'','unsignedInt'=>'','unsignedShort'=>'','unsignedByte'=>'','positiveInteger'=>''), |
|
192 | + 'normalizedString'=>'string', 'token'=>'string', 'language'=>'', 'NMTOKEN'=>'', 'NMTOKENS'=>'', 'Name'=>'', 'NCName'=>'', 'ID'=>'', |
|
193 | + 'IDREF'=>'', 'IDREFS'=>'', 'ENTITY'=>'', 'ENTITIES'=>'', 'integer'=>'integer', 'nonPositiveInteger'=>'integer', |
|
194 | + 'negativeInteger'=>'integer', 'long'=>'integer', 'int'=>'integer', 'short'=>'integer', 'byte'=>'integer', 'nonNegativeInteger'=>'integer', |
|
195 | + 'unsignedLong'=>'', 'unsignedInt'=>'', 'unsignedShort'=>'', 'unsignedByte'=>'', 'positiveInteger'=>''), |
|
196 | 196 | 'http://www.w3.org/2000/10/XMLSchema' => array( |
197 | - 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
198 | - 'float'=>'double','dateTime'=>'string', |
|
199 | - 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
197 | + 'i4'=>'', 'int'=>'integer', 'boolean'=>'boolean', 'string'=>'string', 'double'=>'double', |
|
198 | + 'float'=>'double', 'dateTime'=>'string', |
|
199 | + 'timeInstant'=>'string', 'base64Binary'=>'string', 'base64'=>'string', 'ur-type'=>'array'), |
|
200 | 200 | 'http://www.w3.org/1999/XMLSchema' => array( |
201 | - 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
202 | - 'float'=>'double','dateTime'=>'string', |
|
203 | - 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
201 | + 'i4'=>'', 'int'=>'integer', 'boolean'=>'boolean', 'string'=>'string', 'double'=>'double', |
|
202 | + 'float'=>'double', 'dateTime'=>'string', |
|
203 | + 'timeInstant'=>'string', 'base64Binary'=>'string', 'base64'=>'string', 'ur-type'=>'array'), |
|
204 | 204 | 'http://soapinterop.org/xsd' => array('SOAPStruct'=>'struct'), |
205 | - 'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>'array'), |
|
205 | + 'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string', 'array'=>'array', 'Array'=>'array'), |
|
206 | 206 | 'http://xml.apache.org/xml-soap' => array('Map') |
207 | 207 | ); |
208 | 208 | |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | * @deprecated |
215 | 215 | * @see expandEntities |
216 | 216 | */ |
217 | - var $xmlEntities = array('quot' => '"','amp' => '&', |
|
218 | - 'lt' => '<','gt' => '>','apos' => "'"); |
|
217 | + var $xmlEntities = array('quot' => '"', 'amp' => '&', |
|
218 | + 'lt' => '<', 'gt' => '>', 'apos' => "'"); |
|
219 | 219 | |
220 | 220 | /** |
221 | 221 | * constructor |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * @param string $string debug data |
273 | 273 | * @access private |
274 | 274 | */ |
275 | - function debug($string){ |
|
275 | + function debug($string) { |
|
276 | 276 | if ($this->debugLevel > 0) { |
277 | 277 | $this->appendDebug($this->getmicrotime().' '.get_class($this).": $string\n"); |
278 | 278 | } |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | * @param string $string debug data |
285 | 285 | * @access public |
286 | 286 | */ |
287 | - function appendDebug($string){ |
|
287 | + function appendDebug($string) { |
|
288 | 288 | if ($this->debugLevel > 0) { |
289 | 289 | // it would be nice to use a memory stream here to use |
290 | 290 | // memory more efficiently |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | while (strpos($this->debug_str, '--')) { |
329 | 329 | $this->debug_str = str_replace('--', '- -', $this->debug_str); |
330 | 330 | } |
331 | - $ret = "<!--\n" . $this->debug_str . "\n-->"; |
|
331 | + $ret = "<!--\n".$this->debug_str."\n-->"; |
|
332 | 332 | return $ret; |
333 | 333 | } |
334 | 334 | |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | * @return mixed error string or false |
356 | 356 | * @access public |
357 | 357 | */ |
358 | - function getError(){ |
|
359 | - if($this->error_str != ''){ |
|
358 | + function getError() { |
|
359 | + if ($this->error_str != '') { |
|
360 | 360 | return $this->error_str; |
361 | 361 | } |
362 | 362 | return false; |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | * @return boolean $string error string |
369 | 369 | * @access private |
370 | 370 | */ |
371 | - function setError($str){ |
|
371 | + function setError($str) { |
|
372 | 372 | $this->error_str = $str; |
373 | 373 | } |
374 | 374 | |
@@ -404,12 +404,12 @@ discard block |
||
404 | 404 | * @return string The serialized element, possibly with child elements |
405 | 405 | * @access public |
406 | 406 | */ |
407 | - function serialize_val($val,$name=false,$type=false,$name_ns=false,$type_ns=false,$attributes=false,$use='encoded',$soapval=false) { |
|
407 | + function serialize_val($val, $name = false, $type = false, $name_ns = false, $type_ns = false, $attributes = false, $use = 'encoded', $soapval = false) { |
|
408 | 408 | $this->debug("in serialize_val: name=$name, type=$type, name_ns=$name_ns, type_ns=$type_ns, use=$use, soapval=$soapval"); |
409 | - $this->appendDebug('value=' . $this->varDump($val)); |
|
410 | - $this->appendDebug('attributes=' . $this->varDump($attributes)); |
|
409 | + $this->appendDebug('value='.$this->varDump($val)); |
|
410 | + $this->appendDebug('attributes='.$this->varDump($attributes)); |
|
411 | 411 | |
412 | - if (is_object($val) && get_class($val) == 'soapval' && (! $soapval)) { |
|
412 | + if (is_object($val) && get_class($val) == 'soapval' && (!$soapval)) { |
|
413 | 413 | $this->debug("serialize_val: serialize soapval"); |
414 | 414 | $xml = $val->serialize($use); |
415 | 415 | $this->appendDebug($val->getDebug()); |
@@ -419,30 +419,30 @@ discard block |
||
419 | 419 | } |
420 | 420 | // force valid name if necessary |
421 | 421 | if (is_numeric($name)) { |
422 | - $name = '__numeric_' . $name; |
|
423 | - } elseif (! $name) { |
|
422 | + $name = '__numeric_'.$name; |
|
423 | + } elseif (!$name) { |
|
424 | 424 | $name = 'noname'; |
425 | 425 | } |
426 | 426 | // if name has ns, add ns prefix to name |
427 | 427 | $xmlns = ''; |
428 | - if($name_ns){ |
|
429 | - $prefix = 'nu'.rand(1000,9999); |
|
428 | + if ($name_ns) { |
|
429 | + $prefix = 'nu'.rand(1000, 9999); |
|
430 | 430 | $name = $prefix.':'.$name; |
431 | 431 | $xmlns .= " xmlns:$prefix=\"$name_ns\""; |
432 | 432 | } |
433 | 433 | // if type is prefixed, create type prefix |
434 | - if($type_ns != '' && $type_ns == $this->namespaces['xsd']){ |
|
434 | + if ($type_ns != '' && $type_ns == $this->namespaces['xsd']) { |
|
435 | 435 | // need to fix this. shouldn't default to xsd if no ns specified |
436 | 436 | // w/o checking against typemap |
437 | 437 | $type_prefix = 'xsd'; |
438 | - } elseif($type_ns){ |
|
439 | - $type_prefix = 'ns'.rand(1000,9999); |
|
438 | + } elseif ($type_ns) { |
|
439 | + $type_prefix = 'ns'.rand(1000, 9999); |
|
440 | 440 | $xmlns .= " xmlns:$type_prefix=\"$type_ns\""; |
441 | 441 | } |
442 | 442 | // serialize attributes if present |
443 | 443 | $atts = ''; |
444 | - if($attributes){ |
|
445 | - foreach($attributes as $k => $v){ |
|
444 | + if ($attributes) { |
|
445 | + foreach ($attributes as $k => $v) { |
|
446 | 446 | $atts .= " $k=\"".$this->expandEntities($v).'"'; |
447 | 447 | } |
448 | 448 | } |
@@ -466,12 +466,12 @@ discard block |
||
466 | 466 | } |
467 | 467 | } |
468 | 468 | // serialize if an xsd built-in primitive type |
469 | - if($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])){ |
|
469 | + if ($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])) { |
|
470 | 470 | $this->debug("serialize_val: serialize xsd built-in primitive type"); |
471 | 471 | if (is_bool($val)) { |
472 | 472 | if ($type == 'boolean') { |
473 | 473 | $val = $val ? 'true' : 'false'; |
474 | - } elseif (! $val) { |
|
474 | + } elseif (!$val) { |
|
475 | 475 | $val = 0; |
476 | 476 | } |
477 | 477 | } else if (is_string($val)) { |
@@ -489,12 +489,12 @@ discard block |
||
489 | 489 | } |
490 | 490 | // detect type and serialize |
491 | 491 | $xml = ''; |
492 | - switch(true) { |
|
492 | + switch (true) { |
|
493 | 493 | case (is_bool($val) || $type == 'boolean'): |
494 | 494 | $this->debug("serialize_val: serialize boolean"); |
495 | 495 | if ($type == 'boolean') { |
496 | 496 | $val = $val ? 'true' : 'false'; |
497 | - } elseif (! $val) { |
|
497 | + } elseif (!$val) { |
|
498 | 498 | $val = 0; |
499 | 499 | } |
500 | 500 | if ($use == 'literal') { |
@@ -511,7 +511,7 @@ discard block |
||
511 | 511 | $xml .= "<$name$xmlns xsi:type=\"xsd:int\"$atts>$val</$name>"; |
512 | 512 | } |
513 | 513 | break; |
514 | - case (is_float($val)|| is_double($val) || $type == 'float'): |
|
514 | + case (is_float($val) || is_double($val) || $type == 'float'): |
|
515 | 515 | $this->debug("serialize_val: serialize float"); |
516 | 516 | if ($use == 'literal') { |
517 | 517 | $xml .= "<$name$xmlns$atts>$val</$name>"; |
@@ -536,17 +536,17 @@ discard block |
||
536 | 536 | $this->appendDebug($val->getDebug()); |
537 | 537 | $val->clearDebug(); |
538 | 538 | } else { |
539 | - if (! $name) { |
|
539 | + if (!$name) { |
|
540 | 540 | $name = get_class($val); |
541 | 541 | $this->debug("In serialize_val, used class name $name as element name"); |
542 | 542 | } else { |
543 | - $this->debug("In serialize_val, do not override name $name for element name for class " . get_class($val)); |
|
543 | + $this->debug("In serialize_val, do not override name $name for element name for class ".get_class($val)); |
|
544 | 544 | } |
545 | - foreach(get_object_vars($val) as $k => $v){ |
|
546 | - $pXml = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,false,false,false,false,$use); |
|
545 | + foreach (get_object_vars($val) as $k => $v) { |
|
546 | + $pXml = isset($pXml) ? $pXml.$this->serialize_val($v, $k, false, false, false, false, $use) : $this->serialize_val($v, $k, false, false, false, false, $use); |
|
547 | 547 | } |
548 | 548 | } |
549 | - if(isset($type) && isset($type_prefix)){ |
|
549 | + if (isset($type) && isset($type_prefix)) { |
|
550 | 550 | $type_str = " xsi:type=\"$type_prefix:$type\""; |
551 | 551 | } else { |
552 | 552 | $type_str = ''; |
@@ -561,12 +561,12 @@ discard block |
||
561 | 561 | case (is_array($val) || $type): |
562 | 562 | // detect if struct or array |
563 | 563 | $valueType = $this->isArraySimpleOrStruct($val); |
564 | - if($valueType=='arraySimple' || preg_match('/^ArrayOf/',$type)){ |
|
564 | + if ($valueType == 'arraySimple' || preg_match('/^ArrayOf/', $type)) { |
|
565 | 565 | $this->debug("serialize_val: serialize array"); |
566 | 566 | $i = 0; |
567 | - if(is_array($val) && count($val)> 0){ |
|
568 | - foreach($val as $v){ |
|
569 | - if(is_object($v) && get_class($v) == 'soapval'){ |
|
567 | + if (is_array($val) && count($val) > 0) { |
|
568 | + foreach ($val as $v) { |
|
569 | + if (is_object($v) && get_class($v) == 'soapval') { |
|
570 | 570 | $tt_ns = $v->type_ns; |
571 | 571 | $tt = $v->type; |
572 | 572 | } elseif (is_array($v)) { |
@@ -576,26 +576,26 @@ discard block |
||
576 | 576 | } |
577 | 577 | $array_types[$tt] = 1; |
578 | 578 | // TODO: for literal, the name should be $name |
579 | - $xml .= $this->serialize_val($v,'item',false,false,false,false,$use); |
|
579 | + $xml .= $this->serialize_val($v, 'item', false, false, false, false, $use); |
|
580 | 580 | ++$i; |
581 | 581 | } |
582 | - if(count($array_types) > 1){ |
|
582 | + if (count($array_types) > 1) { |
|
583 | 583 | $array_typename = 'xsd:anyType'; |
584 | - } elseif(isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) { |
|
584 | + } elseif (isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) { |
|
585 | 585 | if ($tt == 'integer') { |
586 | 586 | $tt = 'int'; |
587 | 587 | } |
588 | 588 | $array_typename = 'xsd:'.$tt; |
589 | - } elseif(isset($tt) && $tt == 'arraySimple'){ |
|
589 | + } elseif (isset($tt) && $tt == 'arraySimple') { |
|
590 | 590 | $array_typename = 'SOAP-ENC:Array'; |
591 | - } elseif(isset($tt) && $tt == 'arrayStruct'){ |
|
591 | + } elseif (isset($tt) && $tt == 'arrayStruct') { |
|
592 | 592 | $array_typename = 'unnamed_struct_use_soapval'; |
593 | 593 | } else { |
594 | 594 | // if type is prefixed, create type prefix |
595 | - if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']){ |
|
596 | - $array_typename = 'xsd:' . $tt; |
|
595 | + if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']) { |
|
596 | + $array_typename = 'xsd:'.$tt; |
|
597 | 597 | } elseif ($tt_ns) { |
598 | - $tt_prefix = 'ns' . rand(1000, 9999); |
|
598 | + $tt_prefix = 'ns'.rand(1000, 9999); |
|
599 | 599 | $array_typename = "$tt_prefix:$tt"; |
600 | 600 | $xmlns .= " xmlns:$tt_prefix=\"$tt_ns\""; |
601 | 601 | } else { |
@@ -625,7 +625,7 @@ discard block |
||
625 | 625 | } else { |
626 | 626 | // got a struct |
627 | 627 | $this->debug("serialize_val: serialize struct"); |
628 | - if(isset($type) && isset($type_prefix)){ |
|
628 | + if (isset($type) && isset($type_prefix)) { |
|
629 | 629 | $type_str = " xsi:type=\"$type_prefix:$type\""; |
630 | 630 | } else { |
631 | 631 | $type_str = ''; |
@@ -635,15 +635,15 @@ discard block |
||
635 | 635 | } else { |
636 | 636 | $xml .= "<$name$xmlns$type_str$atts>"; |
637 | 637 | } |
638 | - foreach($val as $k => $v){ |
|
638 | + foreach ($val as $k => $v) { |
|
639 | 639 | // Apache Map |
640 | 640 | if ($type == 'Map' && $type_ns == 'http://xml.apache.org/xml-soap') { |
641 | 641 | $xml .= '<item>'; |
642 | - $xml .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
643 | - $xml .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
642 | + $xml .= $this->serialize_val($k, 'key', false, false, false, false, $use); |
|
643 | + $xml .= $this->serialize_val($v, 'value', false, false, false, false, $use); |
|
644 | 644 | $xml .= '</item>'; |
645 | 645 | } else { |
646 | - $xml .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
646 | + $xml .= $this->serialize_val($v, $k, false, false, false, false, $use); |
|
647 | 647 | } |
648 | 648 | } |
649 | 649 | $xml .= "</$name>"; |
@@ -670,12 +670,12 @@ discard block |
||
670 | 670 | * @return string the message |
671 | 671 | * @access public |
672 | 672 | */ |
673 | - function serializeEnvelope($body,$headers=false,$namespaces=array(),$style='rpc',$use='encoded',$encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'){ |
|
673 | + function serializeEnvelope($body, $headers = false, $namespaces = array(), $style = 'rpc', $use = 'encoded', $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/') { |
|
674 | 674 | // TODO: add an option to automatically run utf8_encode on $body and $headers |
675 | 675 | // if $this->soap_defencoding is UTF-8. Not doing this automatically allows |
676 | 676 | // one to send arbitrary UTF-8 characters, not just characters that map to ISO-8859-1 |
677 | 677 | |
678 | - $this->debug("In serializeEnvelope length=" . strlen($body) . " body (max 1000 characters)=" . substr($body, 0, 1000) . " style=$style use=$use encodingStyle=$encodingStyle"); |
|
678 | + $this->debug("In serializeEnvelope length=".strlen($body)." body (max 1000 characters)=".substr($body, 0, 1000)." style=$style use=$use encodingStyle=$encodingStyle"); |
|
679 | 679 | $this->debug("headers:"); |
680 | 680 | $this->appendDebug($this->varDump($headers)); |
681 | 681 | $this->debug("namespaces:"); |
@@ -683,15 +683,15 @@ discard block |
||
683 | 683 | |
684 | 684 | // serialize namespaces |
685 | 685 | $ns_string = ''; |
686 | - foreach(array_merge($this->namespaces,$namespaces) as $k => $v){ |
|
686 | + foreach (array_merge($this->namespaces, $namespaces) as $k => $v) { |
|
687 | 687 | $ns_string .= " xmlns:$k=\"$v\""; |
688 | 688 | } |
689 | - if($encodingStyle) { |
|
689 | + if ($encodingStyle) { |
|
690 | 690 | $ns_string = " SOAP-ENV:encodingStyle=\"$encodingStyle\"$ns_string"; |
691 | 691 | } |
692 | 692 | |
693 | 693 | // serialize headers |
694 | - if($headers){ |
|
694 | + if ($headers) { |
|
695 | 695 | if (is_array($headers)) { |
696 | 696 | $xml = ''; |
697 | 697 | foreach ($headers as $k => $v) { |
@@ -708,7 +708,7 @@ discard block |
||
708 | 708 | } |
709 | 709 | // serialize envelope |
710 | 710 | return |
711 | - '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">". |
|
711 | + '<?xml version="1.0" encoding="'.$this->soap_defencoding.'"?'.">". |
|
712 | 712 | '<SOAP-ENV:Envelope'.$ns_string.">". |
713 | 713 | $headers. |
714 | 714 | "<SOAP-ENV:Body>". |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | * @access public |
726 | 726 | * @deprecated |
727 | 727 | */ |
728 | - function formatDump($str){ |
|
728 | + function formatDump($str) { |
|
729 | 729 | $str = htmlspecialchars($str); |
730 | 730 | return nl2br($str); |
731 | 731 | } |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | * @return string contracted qname |
738 | 738 | * @access private |
739 | 739 | */ |
740 | - function contractQname($qname){ |
|
740 | + function contractQname($qname) { |
|
741 | 741 | // get element namespace |
742 | 742 | //$this->xdebug("Contract $qname"); |
743 | 743 | if (strrpos($qname, ':')) { |
@@ -747,7 +747,7 @@ discard block |
||
747 | 747 | $ns = substr($qname, 0, strrpos($qname, ':')); |
748 | 748 | $p = $this->getPrefixFromNamespace($ns); |
749 | 749 | if ($p) { |
750 | - return $p . ':' . $name; |
|
750 | + return $p.':'.$name; |
|
751 | 751 | } |
752 | 752 | return $qname; |
753 | 753 | } else { |
@@ -762,14 +762,14 @@ discard block |
||
762 | 762 | * @return string expanded qname |
763 | 763 | * @access private |
764 | 764 | */ |
765 | - function expandQname($qname){ |
|
765 | + function expandQname($qname) { |
|
766 | 766 | // get element prefix |
767 | - if(strpos($qname,':') && !preg_match('/^http:\/\//',$qname)){ |
|
767 | + if (strpos($qname, ':') && !preg_match('/^http:\/\//', $qname)) { |
|
768 | 768 | // get unqualified name |
769 | - $name = substr(strstr($qname,':'),1); |
|
769 | + $name = substr(strstr($qname, ':'), 1); |
|
770 | 770 | // get ns prefix |
771 | - $prefix = substr($qname,0,strpos($qname,':')); |
|
772 | - if(isset($this->namespaces[$prefix])){ |
|
771 | + $prefix = substr($qname, 0, strpos($qname, ':')); |
|
772 | + if (isset($this->namespaces[$prefix])) { |
|
773 | 773 | return $this->namespaces[$prefix].':'.$name; |
774 | 774 | } else { |
775 | 775 | return $qname; |
@@ -787,10 +787,10 @@ discard block |
||
787 | 787 | * @return string The local part |
788 | 788 | * @access public |
789 | 789 | */ |
790 | - function getLocalPart($str){ |
|
791 | - if($sstr = strrchr($str,':')){ |
|
790 | + function getLocalPart($str) { |
|
791 | + if ($sstr = strrchr($str, ':')) { |
|
792 | 792 | // get unqualified name |
793 | - return substr( $sstr, 1 ); |
|
793 | + return substr($sstr, 1); |
|
794 | 794 | } else { |
795 | 795 | return $str; |
796 | 796 | } |
@@ -804,10 +804,10 @@ discard block |
||
804 | 804 | * @return mixed The prefix or false if there is no prefix |
805 | 805 | * @access public |
806 | 806 | */ |
807 | - function getPrefix($str){ |
|
808 | - if($pos = strrpos($str,':')){ |
|
807 | + function getPrefix($str) { |
|
808 | + if ($pos = strrpos($str, ':')) { |
|
809 | 809 | // get prefix |
810 | - return substr($str,0,$pos); |
|
810 | + return substr($str, 0, $pos); |
|
811 | 811 | } |
812 | 812 | return false; |
813 | 813 | } |
@@ -819,7 +819,7 @@ discard block |
||
819 | 819 | * @return mixed The namespace, false if no namespace has the specified prefix |
820 | 820 | * @access public |
821 | 821 | */ |
822 | - function getNamespaceFromPrefix($prefix){ |
|
822 | + function getNamespaceFromPrefix($prefix) { |
|
823 | 823 | if (isset($this->namespaces[$prefix])) { |
824 | 824 | return $this->namespaces[$prefix]; |
825 | 825 | } |
@@ -860,7 +860,7 @@ discard block |
||
860 | 860 | $sec = time(); |
861 | 861 | $usec = 0; |
862 | 862 | } |
863 | - return strftime('%Y-%m-%d %H:%M:%S', $sec) . '.' . sprintf('%06d', $usec); |
|
863 | + return strftime('%Y-%m-%d %H:%M:%S', $sec).'.'.sprintf('%06d', $usec); |
|
864 | 864 | } |
865 | 865 | |
866 | 866 | /** |
@@ -901,31 +901,31 @@ discard block |
||
901 | 901 | * @return mixed ISO 8601 date string or false |
902 | 902 | * @access public |
903 | 903 | */ |
904 | -function timestamp_to_iso8601($timestamp,$utc=true){ |
|
905 | - $datestr = date('Y-m-d\TH:i:sO',$timestamp); |
|
904 | +function timestamp_to_iso8601($timestamp, $utc = true) { |
|
905 | + $datestr = date('Y-m-d\TH:i:sO', $timestamp); |
|
906 | 906 | $pos = strrpos($datestr, "+"); |
907 | 907 | if ($pos === FALSE) { |
908 | 908 | $pos = strrpos($datestr, "-"); |
909 | 909 | } |
910 | 910 | if ($pos !== FALSE) { |
911 | 911 | if (strlen($datestr) == $pos + 5) { |
912 | - $datestr = substr($datestr, 0, $pos + 3) . ':' . substr($datestr, -2); |
|
912 | + $datestr = substr($datestr, 0, $pos + 3).':'.substr($datestr, -2); |
|
913 | 913 | } |
914 | 914 | } |
915 | - if($utc){ |
|
915 | + if ($utc) { |
|
916 | 916 | $pattern = '/'. |
917 | - '([0-9]{4})-'. // centuries & years CCYY- |
|
918 | - '([0-9]{2})-'. // months MM- |
|
919 | - '([0-9]{2})'. // days DD |
|
920 | - 'T'. // separator T |
|
921 | - '([0-9]{2}):'. // hours hh: |
|
922 | - '([0-9]{2}):'. // minutes mm: |
|
923 | - '([0-9]{2})(\.[0-9]*)?'. // seconds ss.ss... |
|
924 | - '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
917 | + '([0-9]{4})-'.// centuries & years CCYY- |
|
918 | + '([0-9]{2})-'.// months MM- |
|
919 | + '([0-9]{2})'.// days DD |
|
920 | + 'T'.// separator T |
|
921 | + '([0-9]{2}):'.// hours hh: |
|
922 | + '([0-9]{2}):'.// minutes mm: |
|
923 | + '([0-9]{2})(\.[0-9]*)?'.// seconds ss.ss... |
|
924 | + '(Z|[+\-][0-9]{2}:?[0-9]{2})?'.// Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
925 | 925 | '/'; |
926 | 926 | |
927 | - if(preg_match($pattern,$datestr,$regs)){ |
|
928 | - return sprintf('%04d-%02d-%02dT%02d:%02d:%02dZ',$regs[1],$regs[2],$regs[3],$regs[4],$regs[5],$regs[6]); |
|
927 | + if (preg_match($pattern, $datestr, $regs)) { |
|
928 | + return sprintf('%04d-%02d-%02dT%02d:%02d:%02dZ', $regs[1], $regs[2], $regs[3], $regs[4], $regs[5], $regs[6]); |
|
929 | 929 | } |
930 | 930 | return false; |
931 | 931 | } else { |
@@ -940,27 +940,27 @@ discard block |
||
940 | 940 | * @return mixed Unix timestamp (int) or false |
941 | 941 | * @access public |
942 | 942 | */ |
943 | -function iso8601_to_timestamp($datestr){ |
|
943 | +function iso8601_to_timestamp($datestr) { |
|
944 | 944 | $pattern = '/'. |
945 | - '([0-9]{4})-'. // centuries & years CCYY- |
|
946 | - '([0-9]{2})-'. // months MM- |
|
947 | - '([0-9]{2})'. // days DD |
|
948 | - 'T'. // separator T |
|
949 | - '([0-9]{2}):'. // hours hh: |
|
950 | - '([0-9]{2}):'. // minutes mm: |
|
951 | - '([0-9]{2})(\.[0-9]+)?'. // seconds ss.ss... |
|
952 | - '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
945 | + '([0-9]{4})-'.// centuries & years CCYY- |
|
946 | + '([0-9]{2})-'.// months MM- |
|
947 | + '([0-9]{2})'.// days DD |
|
948 | + 'T'.// separator T |
|
949 | + '([0-9]{2}):'.// hours hh: |
|
950 | + '([0-9]{2}):'.// minutes mm: |
|
951 | + '([0-9]{2})(\.[0-9]+)?'.// seconds ss.ss... |
|
952 | + '(Z|[+\-][0-9]{2}:?[0-9]{2})?'.// Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
953 | 953 | '/'; |
954 | - if(preg_match($pattern,$datestr,$regs)){ |
|
954 | + if (preg_match($pattern, $datestr, $regs)) { |
|
955 | 955 | // not utc |
956 | - if($regs[8] != 'Z'){ |
|
957 | - $op = substr($regs[8],0,1); |
|
958 | - $h = substr($regs[8],1,2); |
|
959 | - $m = substr($regs[8],strlen($regs[8])-2,2); |
|
960 | - if($op == '-'){ |
|
956 | + if ($regs[8] != 'Z') { |
|
957 | + $op = substr($regs[8], 0, 1); |
|
958 | + $h = substr($regs[8], 1, 2); |
|
959 | + $m = substr($regs[8], strlen($regs[8]) - 2, 2); |
|
960 | + if ($op == '-') { |
|
961 | 961 | $regs[4] = $regs[4] + $h; |
962 | 962 | $regs[5] = $regs[5] + $m; |
963 | - } elseif($op == '+'){ |
|
963 | + } elseif ($op == '+') { |
|
964 | 964 | $regs[4] = $regs[4] - $h; |
965 | 965 | $regs[5] = $regs[5] - $m; |
966 | 966 | } |
@@ -84,810 +84,810 @@ discard block |
||
84 | 84 | */ |
85 | 85 | class nusoap_base |
86 | 86 | { |
87 | - /** |
|
88 | - * Identification for HTTP headers. |
|
89 | - * |
|
90 | - * @var string |
|
91 | - * @access private |
|
92 | - */ |
|
93 | - var $title = 'NuSOAP'; |
|
94 | - /** |
|
95 | - * Version for HTTP headers. |
|
96 | - * |
|
97 | - * @var string |
|
98 | - * @access private |
|
99 | - */ |
|
100 | - var $version = '0.9.5'; |
|
101 | - /** |
|
102 | - * CVS revision for HTTP headers. |
|
103 | - * |
|
104 | - * @var string |
|
105 | - * @access private |
|
106 | - */ |
|
107 | - var $revision = '$Revision: 1.56 $'; |
|
87 | + /** |
|
88 | + * Identification for HTTP headers. |
|
89 | + * |
|
90 | + * @var string |
|
91 | + * @access private |
|
92 | + */ |
|
93 | + var $title = 'NuSOAP'; |
|
94 | + /** |
|
95 | + * Version for HTTP headers. |
|
96 | + * |
|
97 | + * @var string |
|
98 | + * @access private |
|
99 | + */ |
|
100 | + var $version = '0.9.5'; |
|
101 | + /** |
|
102 | + * CVS revision for HTTP headers. |
|
103 | + * |
|
104 | + * @var string |
|
105 | + * @access private |
|
106 | + */ |
|
107 | + var $revision = '$Revision: 1.56 $'; |
|
108 | 108 | /** |
109 | 109 | * Current error string (manipulated by getError/setError) |
110 | - * |
|
111 | - * @var string |
|
112 | - * @access private |
|
113 | - */ |
|
114 | - var $error_str = ''; |
|
110 | + * |
|
111 | + * @var string |
|
112 | + * @access private |
|
113 | + */ |
|
114 | + var $error_str = ''; |
|
115 | 115 | /** |
116 | 116 | * Current debug string (manipulated by debug/appendDebug/clearDebug/getDebug/getDebugAsXMLComment) |
117 | - * |
|
118 | - * @var string |
|
119 | - * @access private |
|
120 | - */ |
|
117 | + * |
|
118 | + * @var string |
|
119 | + * @access private |
|
120 | + */ |
|
121 | 121 | var $debug_str = ''; |
122 | 122 | /** |
123 | - * toggles automatic encoding of special characters as entities |
|
124 | - * (should always be true, I think) |
|
125 | - * |
|
126 | - * @var boolean |
|
127 | - * @access private |
|
128 | - */ |
|
129 | - var $charencoding = true; |
|
130 | - /** |
|
131 | - * the debug level for this instance |
|
132 | - * |
|
133 | - * @var integer |
|
134 | - * @access private |
|
135 | - */ |
|
136 | - var $debugLevel; |
|
137 | - |
|
138 | - /** |
|
139 | - * set schema version |
|
140 | - * |
|
141 | - * @var string |
|
142 | - * @access public |
|
143 | - */ |
|
144 | - var $XMLSchemaVersion = 'http://www.w3.org/2001/XMLSchema'; |
|
145 | - |
|
146 | - /** |
|
147 | - * charset encoding for outgoing messages |
|
148 | - * |
|
149 | - * @var string |
|
150 | - * @access public |
|
151 | - */ |
|
123 | + * toggles automatic encoding of special characters as entities |
|
124 | + * (should always be true, I think) |
|
125 | + * |
|
126 | + * @var boolean |
|
127 | + * @access private |
|
128 | + */ |
|
129 | + var $charencoding = true; |
|
130 | + /** |
|
131 | + * the debug level for this instance |
|
132 | + * |
|
133 | + * @var integer |
|
134 | + * @access private |
|
135 | + */ |
|
136 | + var $debugLevel; |
|
137 | + |
|
138 | + /** |
|
139 | + * set schema version |
|
140 | + * |
|
141 | + * @var string |
|
142 | + * @access public |
|
143 | + */ |
|
144 | + var $XMLSchemaVersion = 'http://www.w3.org/2001/XMLSchema'; |
|
145 | + |
|
146 | + /** |
|
147 | + * charset encoding for outgoing messages |
|
148 | + * |
|
149 | + * @var string |
|
150 | + * @access public |
|
151 | + */ |
|
152 | 152 | var $soap_defencoding = 'ISO-8859-1'; |
153 | - //var $soap_defencoding = 'UTF-8'; |
|
154 | - |
|
155 | - /** |
|
156 | - * namespaces in an array of prefix => uri |
|
157 | - * |
|
158 | - * this is "seeded" by a set of constants, but it may be altered by code |
|
159 | - * |
|
160 | - * @var array |
|
161 | - * @access public |
|
162 | - */ |
|
163 | - var $namespaces = array( |
|
164 | - 'SOAP-ENV' => 'http://schemas.xmlsoap.org/soap/envelope/', |
|
165 | - 'xsd' => 'http://www.w3.org/2001/XMLSchema', |
|
166 | - 'xsi' => 'http://www.w3.org/2001/XMLSchema-instance', |
|
167 | - 'SOAP-ENC' => 'http://schemas.xmlsoap.org/soap/encoding/' |
|
168 | - ); |
|
169 | - |
|
170 | - /** |
|
171 | - * namespaces used in the current context, e.g. during serialization |
|
172 | - * |
|
173 | - * @var array |
|
174 | - * @access private |
|
175 | - */ |
|
176 | - var $usedNamespaces = array(); |
|
177 | - |
|
178 | - /** |
|
179 | - * XML Schema types in an array of uri => (array of xml type => php type) |
|
180 | - * is this legacy yet? |
|
181 | - * no, this is used by the nusoap_xmlschema class to verify type => namespace mappings. |
|
182 | - * @var array |
|
183 | - * @access public |
|
184 | - */ |
|
185 | - var $typemap = array( |
|
186 | - 'http://www.w3.org/2001/XMLSchema' => array( |
|
187 | - 'string'=>'string','boolean'=>'boolean','float'=>'double','double'=>'double','decimal'=>'double', |
|
188 | - 'duration'=>'','dateTime'=>'string','time'=>'string','date'=>'string','gYearMonth'=>'', |
|
189 | - 'gYear'=>'','gMonthDay'=>'','gDay'=>'','gMonth'=>'','hexBinary'=>'string','base64Binary'=>'string', |
|
190 | - // abstract "any" types |
|
191 | - 'anyType'=>'string','anySimpleType'=>'string', |
|
192 | - // derived datatypes |
|
193 | - 'normalizedString'=>'string','token'=>'string','language'=>'','NMTOKEN'=>'','NMTOKENS'=>'','Name'=>'','NCName'=>'','ID'=>'', |
|
194 | - 'IDREF'=>'','IDREFS'=>'','ENTITY'=>'','ENTITIES'=>'','integer'=>'integer','nonPositiveInteger'=>'integer', |
|
195 | - 'negativeInteger'=>'integer','long'=>'integer','int'=>'integer','short'=>'integer','byte'=>'integer','nonNegativeInteger'=>'integer', |
|
196 | - 'unsignedLong'=>'','unsignedInt'=>'','unsignedShort'=>'','unsignedByte'=>'','positiveInteger'=>''), |
|
197 | - 'http://www.w3.org/2000/10/XMLSchema' => array( |
|
198 | - 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
199 | - 'float'=>'double','dateTime'=>'string', |
|
200 | - 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
201 | - 'http://www.w3.org/1999/XMLSchema' => array( |
|
202 | - 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
203 | - 'float'=>'double','dateTime'=>'string', |
|
204 | - 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
205 | - 'http://soapinterop.org/xsd' => array('SOAPStruct'=>'struct'), |
|
206 | - 'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>'array'), |
|
153 | + //var $soap_defencoding = 'UTF-8'; |
|
154 | + |
|
155 | + /** |
|
156 | + * namespaces in an array of prefix => uri |
|
157 | + * |
|
158 | + * this is "seeded" by a set of constants, but it may be altered by code |
|
159 | + * |
|
160 | + * @var array |
|
161 | + * @access public |
|
162 | + */ |
|
163 | + var $namespaces = array( |
|
164 | + 'SOAP-ENV' => 'http://schemas.xmlsoap.org/soap/envelope/', |
|
165 | + 'xsd' => 'http://www.w3.org/2001/XMLSchema', |
|
166 | + 'xsi' => 'http://www.w3.org/2001/XMLSchema-instance', |
|
167 | + 'SOAP-ENC' => 'http://schemas.xmlsoap.org/soap/encoding/' |
|
168 | + ); |
|
169 | + |
|
170 | + /** |
|
171 | + * namespaces used in the current context, e.g. during serialization |
|
172 | + * |
|
173 | + * @var array |
|
174 | + * @access private |
|
175 | + */ |
|
176 | + var $usedNamespaces = array(); |
|
177 | + |
|
178 | + /** |
|
179 | + * XML Schema types in an array of uri => (array of xml type => php type) |
|
180 | + * is this legacy yet? |
|
181 | + * no, this is used by the nusoap_xmlschema class to verify type => namespace mappings. |
|
182 | + * @var array |
|
183 | + * @access public |
|
184 | + */ |
|
185 | + var $typemap = array( |
|
186 | + 'http://www.w3.org/2001/XMLSchema' => array( |
|
187 | + 'string'=>'string','boolean'=>'boolean','float'=>'double','double'=>'double','decimal'=>'double', |
|
188 | + 'duration'=>'','dateTime'=>'string','time'=>'string','date'=>'string','gYearMonth'=>'', |
|
189 | + 'gYear'=>'','gMonthDay'=>'','gDay'=>'','gMonth'=>'','hexBinary'=>'string','base64Binary'=>'string', |
|
190 | + // abstract "any" types |
|
191 | + 'anyType'=>'string','anySimpleType'=>'string', |
|
192 | + // derived datatypes |
|
193 | + 'normalizedString'=>'string','token'=>'string','language'=>'','NMTOKEN'=>'','NMTOKENS'=>'','Name'=>'','NCName'=>'','ID'=>'', |
|
194 | + 'IDREF'=>'','IDREFS'=>'','ENTITY'=>'','ENTITIES'=>'','integer'=>'integer','nonPositiveInteger'=>'integer', |
|
195 | + 'negativeInteger'=>'integer','long'=>'integer','int'=>'integer','short'=>'integer','byte'=>'integer','nonNegativeInteger'=>'integer', |
|
196 | + 'unsignedLong'=>'','unsignedInt'=>'','unsignedShort'=>'','unsignedByte'=>'','positiveInteger'=>''), |
|
197 | + 'http://www.w3.org/2000/10/XMLSchema' => array( |
|
198 | + 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
199 | + 'float'=>'double','dateTime'=>'string', |
|
200 | + 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
201 | + 'http://www.w3.org/1999/XMLSchema' => array( |
|
202 | + 'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double', |
|
203 | + 'float'=>'double','dateTime'=>'string', |
|
204 | + 'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'), |
|
205 | + 'http://soapinterop.org/xsd' => array('SOAPStruct'=>'struct'), |
|
206 | + 'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>'array'), |
|
207 | 207 | 'http://xml.apache.org/xml-soap' => array('Map') |
208 | - ); |
|
209 | - |
|
210 | - /** |
|
211 | - * XML entities to convert |
|
212 | - * |
|
213 | - * @var array |
|
214 | - * @access public |
|
215 | - * @deprecated |
|
216 | - * @see expandEntities |
|
217 | - */ |
|
218 | - var $xmlEntities = array('quot' => '"','amp' => '&', |
|
219 | - 'lt' => '<','gt' => '>','apos' => "'"); |
|
220 | - |
|
221 | - /** |
|
222 | - * constructor |
|
223 | - * |
|
224 | - * @access public |
|
225 | - */ |
|
226 | - public function __construct() |
|
208 | + ); |
|
209 | + |
|
210 | + /** |
|
211 | + * XML entities to convert |
|
212 | + * |
|
213 | + * @var array |
|
214 | + * @access public |
|
215 | + * @deprecated |
|
216 | + * @see expandEntities |
|
217 | + */ |
|
218 | + var $xmlEntities = array('quot' => '"','amp' => '&', |
|
219 | + 'lt' => '<','gt' => '>','apos' => "'"); |
|
220 | + |
|
221 | + /** |
|
222 | + * constructor |
|
223 | + * |
|
224 | + * @access public |
|
225 | + */ |
|
226 | + public function __construct() |
|
227 | 227 | { |
228 | - $this->debugLevel = $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel']; |
|
229 | - } |
|
230 | - |
|
231 | - /** |
|
232 | - * gets the global debug level, which applies to future instances |
|
233 | - * |
|
234 | - * @return integer Debug level 0-9, where 0 turns off |
|
235 | - * @access public |
|
236 | - */ |
|
237 | - function getGlobalDebugLevel() { |
|
238 | - return $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel']; |
|
239 | - } |
|
240 | - |
|
241 | - /** |
|
242 | - * sets the global debug level, which applies to future instances |
|
243 | - * |
|
244 | - * @param int $level Debug level 0-9, where 0 turns off |
|
245 | - * @access public |
|
246 | - */ |
|
247 | - function setGlobalDebugLevel($level) { |
|
248 | - $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel'] = $level; |
|
249 | - } |
|
250 | - |
|
251 | - /** |
|
252 | - * gets the debug level for this instance |
|
253 | - * |
|
254 | - * @return int Debug level 0-9, where 0 turns off |
|
255 | - * @access public |
|
256 | - */ |
|
257 | - function getDebugLevel() { |
|
258 | - return $this->debugLevel; |
|
259 | - } |
|
260 | - |
|
261 | - /** |
|
262 | - * sets the debug level for this instance |
|
263 | - * |
|
264 | - * @param int $level Debug level 0-9, where 0 turns off |
|
265 | - * @access public |
|
266 | - */ |
|
267 | - function setDebugLevel($level) { |
|
268 | - $this->debugLevel = $level; |
|
269 | - } |
|
270 | - |
|
271 | - /** |
|
272 | - * adds debug data to the instance debug string with formatting |
|
273 | - * |
|
274 | - * @param string $string debug data |
|
275 | - * @access private |
|
276 | - */ |
|
277 | - function debug($string){ |
|
278 | - if ($this->debugLevel > 0) { |
|
279 | - $this->appendDebug($this->getmicrotime().' '.get_class($this).": $string\n"); |
|
280 | - } |
|
281 | - } |
|
282 | - |
|
283 | - /** |
|
284 | - * adds debug data to the instance debug string without formatting |
|
285 | - * |
|
286 | - * @param string $string debug data |
|
287 | - * @access public |
|
288 | - */ |
|
289 | - function appendDebug($string){ |
|
290 | - if ($this->debugLevel > 0) { |
|
291 | - // it would be nice to use a memory stream here to use |
|
292 | - // memory more efficiently |
|
293 | - $this->debug_str .= $string; |
|
294 | - } |
|
295 | - } |
|
296 | - |
|
297 | - /** |
|
298 | - * clears the current debug data for this instance |
|
299 | - * |
|
300 | - * @access public |
|
301 | - */ |
|
302 | - function clearDebug() { |
|
303 | - // it would be nice to use a memory stream here to use |
|
304 | - // memory more efficiently |
|
305 | - $this->debug_str = ''; |
|
306 | - } |
|
307 | - |
|
308 | - /** |
|
309 | - * gets the current debug data for this instance |
|
310 | - * |
|
311 | - * @return debug data |
|
312 | - * @access public |
|
313 | - */ |
|
314 | - function &getDebug() { |
|
315 | - // it would be nice to use a memory stream here to use |
|
316 | - // memory more efficiently |
|
317 | - return $this->debug_str; |
|
318 | - } |
|
319 | - |
|
320 | - /** |
|
321 | - * gets the current debug data for this instance as an XML comment |
|
322 | - * this may change the contents of the debug data |
|
323 | - * |
|
324 | - * @return debug data as an XML comment |
|
325 | - * @access public |
|
326 | - */ |
|
327 | - function &getDebugAsXMLComment() { |
|
328 | - // it would be nice to use a memory stream here to use |
|
329 | - // memory more efficiently |
|
330 | - while (strpos($this->debug_str, '--')) { |
|
331 | - $this->debug_str = str_replace('--', '- -', $this->debug_str); |
|
332 | - } |
|
333 | - $ret = "<!--\n" . $this->debug_str . "\n-->"; |
|
334 | - return $ret; |
|
335 | - } |
|
336 | - |
|
337 | - /** |
|
338 | - * expands entities, e.g. changes '<' to '<'. |
|
339 | - * |
|
340 | - * @param string $val The string in which to expand entities. |
|
341 | - * @access private |
|
342 | - */ |
|
343 | - function expandEntities($val) { |
|
344 | - if ($this->charencoding) { |
|
345 | - $val = str_replace('&', '&', $val); |
|
346 | - $val = str_replace("'", ''', $val); |
|
347 | - $val = str_replace('"', '"', $val); |
|
348 | - $val = str_replace('<', '<', $val); |
|
349 | - $val = str_replace('>', '>', $val); |
|
350 | - } |
|
351 | - return $val; |
|
352 | - } |
|
353 | - |
|
354 | - /** |
|
355 | - * returns error string if present |
|
356 | - * |
|
357 | - * @return mixed error string or false |
|
358 | - * @access public |
|
359 | - */ |
|
360 | - function getError(){ |
|
361 | - if($this->error_str != ''){ |
|
362 | - return $this->error_str; |
|
363 | - } |
|
364 | - return false; |
|
365 | - } |
|
366 | - |
|
367 | - /** |
|
368 | - * sets error string |
|
369 | - * |
|
370 | - * @return boolean $string error string |
|
371 | - * @access private |
|
372 | - */ |
|
373 | - function setError($str){ |
|
374 | - $this->error_str = $str; |
|
375 | - } |
|
376 | - |
|
377 | - /** |
|
378 | - * detect if array is a simple array or a struct (associative array) |
|
379 | - * |
|
380 | - * @param mixed $val The PHP array |
|
381 | - * @return string (arraySimple|arrayStruct) |
|
382 | - * @access private |
|
383 | - */ |
|
384 | - function isArraySimpleOrStruct($val) { |
|
228 | + $this->debugLevel = $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel']; |
|
229 | + } |
|
230 | + |
|
231 | + /** |
|
232 | + * gets the global debug level, which applies to future instances |
|
233 | + * |
|
234 | + * @return integer Debug level 0-9, where 0 turns off |
|
235 | + * @access public |
|
236 | + */ |
|
237 | + function getGlobalDebugLevel() { |
|
238 | + return $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel']; |
|
239 | + } |
|
240 | + |
|
241 | + /** |
|
242 | + * sets the global debug level, which applies to future instances |
|
243 | + * |
|
244 | + * @param int $level Debug level 0-9, where 0 turns off |
|
245 | + * @access public |
|
246 | + */ |
|
247 | + function setGlobalDebugLevel($level) { |
|
248 | + $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel'] = $level; |
|
249 | + } |
|
250 | + |
|
251 | + /** |
|
252 | + * gets the debug level for this instance |
|
253 | + * |
|
254 | + * @return int Debug level 0-9, where 0 turns off |
|
255 | + * @access public |
|
256 | + */ |
|
257 | + function getDebugLevel() { |
|
258 | + return $this->debugLevel; |
|
259 | + } |
|
260 | + |
|
261 | + /** |
|
262 | + * sets the debug level for this instance |
|
263 | + * |
|
264 | + * @param int $level Debug level 0-9, where 0 turns off |
|
265 | + * @access public |
|
266 | + */ |
|
267 | + function setDebugLevel($level) { |
|
268 | + $this->debugLevel = $level; |
|
269 | + } |
|
270 | + |
|
271 | + /** |
|
272 | + * adds debug data to the instance debug string with formatting |
|
273 | + * |
|
274 | + * @param string $string debug data |
|
275 | + * @access private |
|
276 | + */ |
|
277 | + function debug($string){ |
|
278 | + if ($this->debugLevel > 0) { |
|
279 | + $this->appendDebug($this->getmicrotime().' '.get_class($this).": $string\n"); |
|
280 | + } |
|
281 | + } |
|
282 | + |
|
283 | + /** |
|
284 | + * adds debug data to the instance debug string without formatting |
|
285 | + * |
|
286 | + * @param string $string debug data |
|
287 | + * @access public |
|
288 | + */ |
|
289 | + function appendDebug($string){ |
|
290 | + if ($this->debugLevel > 0) { |
|
291 | + // it would be nice to use a memory stream here to use |
|
292 | + // memory more efficiently |
|
293 | + $this->debug_str .= $string; |
|
294 | + } |
|
295 | + } |
|
296 | + |
|
297 | + /** |
|
298 | + * clears the current debug data for this instance |
|
299 | + * |
|
300 | + * @access public |
|
301 | + */ |
|
302 | + function clearDebug() { |
|
303 | + // it would be nice to use a memory stream here to use |
|
304 | + // memory more efficiently |
|
305 | + $this->debug_str = ''; |
|
306 | + } |
|
307 | + |
|
308 | + /** |
|
309 | + * gets the current debug data for this instance |
|
310 | + * |
|
311 | + * @return debug data |
|
312 | + * @access public |
|
313 | + */ |
|
314 | + function &getDebug() { |
|
315 | + // it would be nice to use a memory stream here to use |
|
316 | + // memory more efficiently |
|
317 | + return $this->debug_str; |
|
318 | + } |
|
319 | + |
|
320 | + /** |
|
321 | + * gets the current debug data for this instance as an XML comment |
|
322 | + * this may change the contents of the debug data |
|
323 | + * |
|
324 | + * @return debug data as an XML comment |
|
325 | + * @access public |
|
326 | + */ |
|
327 | + function &getDebugAsXMLComment() { |
|
328 | + // it would be nice to use a memory stream here to use |
|
329 | + // memory more efficiently |
|
330 | + while (strpos($this->debug_str, '--')) { |
|
331 | + $this->debug_str = str_replace('--', '- -', $this->debug_str); |
|
332 | + } |
|
333 | + $ret = "<!--\n" . $this->debug_str . "\n-->"; |
|
334 | + return $ret; |
|
335 | + } |
|
336 | + |
|
337 | + /** |
|
338 | + * expands entities, e.g. changes '<' to '<'. |
|
339 | + * |
|
340 | + * @param string $val The string in which to expand entities. |
|
341 | + * @access private |
|
342 | + */ |
|
343 | + function expandEntities($val) { |
|
344 | + if ($this->charencoding) { |
|
345 | + $val = str_replace('&', '&', $val); |
|
346 | + $val = str_replace("'", ''', $val); |
|
347 | + $val = str_replace('"', '"', $val); |
|
348 | + $val = str_replace('<', '<', $val); |
|
349 | + $val = str_replace('>', '>', $val); |
|
350 | + } |
|
351 | + return $val; |
|
352 | + } |
|
353 | + |
|
354 | + /** |
|
355 | + * returns error string if present |
|
356 | + * |
|
357 | + * @return mixed error string or false |
|
358 | + * @access public |
|
359 | + */ |
|
360 | + function getError(){ |
|
361 | + if($this->error_str != ''){ |
|
362 | + return $this->error_str; |
|
363 | + } |
|
364 | + return false; |
|
365 | + } |
|
366 | + |
|
367 | + /** |
|
368 | + * sets error string |
|
369 | + * |
|
370 | + * @return boolean $string error string |
|
371 | + * @access private |
|
372 | + */ |
|
373 | + function setError($str){ |
|
374 | + $this->error_str = $str; |
|
375 | + } |
|
376 | + |
|
377 | + /** |
|
378 | + * detect if array is a simple array or a struct (associative array) |
|
379 | + * |
|
380 | + * @param mixed $val The PHP array |
|
381 | + * @return string (arraySimple|arrayStruct) |
|
382 | + * @access private |
|
383 | + */ |
|
384 | + function isArraySimpleOrStruct($val) { |
|
385 | 385 | $keyList = array_keys($val); |
386 | - foreach ($keyList as $keyListValue) { |
|
387 | - if (!is_int($keyListValue)) { |
|
388 | - return 'arrayStruct'; |
|
389 | - } |
|
390 | - } |
|
391 | - return 'arraySimple'; |
|
392 | - } |
|
393 | - |
|
394 | - /** |
|
395 | - * serializes PHP values in accordance w/ section 5. Type information is |
|
396 | - * not serialized if $use == 'literal'. |
|
397 | - * |
|
398 | - * @param mixed $val The value to serialize |
|
399 | - * @param string $name The name (local part) of the XML element |
|
400 | - * @param string $type The XML schema type (local part) for the element |
|
401 | - * @param string $name_ns The namespace for the name of the XML element |
|
402 | - * @param string $type_ns The namespace for the type of the element |
|
403 | - * @param array $attributes The attributes to serialize as name=>value pairs |
|
404 | - * @param string $use The WSDL "use" (encoded|literal) |
|
405 | - * @param boolean $soapval Whether this is called from soapval. |
|
406 | - * @return string The serialized element, possibly with child elements |
|
407 | - * @access public |
|
408 | - */ |
|
409 | - function serialize_val($val,$name=false,$type=false,$name_ns=false,$type_ns=false,$attributes=false,$use='encoded',$soapval=false) { |
|
410 | - $this->debug("in serialize_val: name=$name, type=$type, name_ns=$name_ns, type_ns=$type_ns, use=$use, soapval=$soapval"); |
|
411 | - $this->appendDebug('value=' . $this->varDump($val)); |
|
412 | - $this->appendDebug('attributes=' . $this->varDump($attributes)); |
|
413 | - |
|
414 | - if (is_object($val) && get_class($val) == 'soapval' && (! $soapval)) { |
|
415 | - $this->debug("serialize_val: serialize soapval"); |
|
416 | - $xml = $val->serialize($use); |
|
417 | - $this->appendDebug($val->getDebug()); |
|
418 | - $val->clearDebug(); |
|
419 | - $this->debug("serialize_val of soapval returning $xml"); |
|
420 | - return $xml; |
|
386 | + foreach ($keyList as $keyListValue) { |
|
387 | + if (!is_int($keyListValue)) { |
|
388 | + return 'arrayStruct'; |
|
389 | + } |
|
390 | + } |
|
391 | + return 'arraySimple'; |
|
392 | + } |
|
393 | + |
|
394 | + /** |
|
395 | + * serializes PHP values in accordance w/ section 5. Type information is |
|
396 | + * not serialized if $use == 'literal'. |
|
397 | + * |
|
398 | + * @param mixed $val The value to serialize |
|
399 | + * @param string $name The name (local part) of the XML element |
|
400 | + * @param string $type The XML schema type (local part) for the element |
|
401 | + * @param string $name_ns The namespace for the name of the XML element |
|
402 | + * @param string $type_ns The namespace for the type of the element |
|
403 | + * @param array $attributes The attributes to serialize as name=>value pairs |
|
404 | + * @param string $use The WSDL "use" (encoded|literal) |
|
405 | + * @param boolean $soapval Whether this is called from soapval. |
|
406 | + * @return string The serialized element, possibly with child elements |
|
407 | + * @access public |
|
408 | + */ |
|
409 | + function serialize_val($val,$name=false,$type=false,$name_ns=false,$type_ns=false,$attributes=false,$use='encoded',$soapval=false) { |
|
410 | + $this->debug("in serialize_val: name=$name, type=$type, name_ns=$name_ns, type_ns=$type_ns, use=$use, soapval=$soapval"); |
|
411 | + $this->appendDebug('value=' . $this->varDump($val)); |
|
412 | + $this->appendDebug('attributes=' . $this->varDump($attributes)); |
|
413 | + |
|
414 | + if (is_object($val) && get_class($val) == 'soapval' && (! $soapval)) { |
|
415 | + $this->debug("serialize_val: serialize soapval"); |
|
416 | + $xml = $val->serialize($use); |
|
417 | + $this->appendDebug($val->getDebug()); |
|
418 | + $val->clearDebug(); |
|
419 | + $this->debug("serialize_val of soapval returning $xml"); |
|
420 | + return $xml; |
|
421 | 421 | } |
422 | - // force valid name if necessary |
|
423 | - if (is_numeric($name)) { |
|
424 | - $name = '__numeric_' . $name; |
|
425 | - } elseif (! $name) { |
|
426 | - $name = 'noname'; |
|
427 | - } |
|
428 | - // if name has ns, add ns prefix to name |
|
429 | - $xmlns = ''; |
|
422 | + // force valid name if necessary |
|
423 | + if (is_numeric($name)) { |
|
424 | + $name = '__numeric_' . $name; |
|
425 | + } elseif (! $name) { |
|
426 | + $name = 'noname'; |
|
427 | + } |
|
428 | + // if name has ns, add ns prefix to name |
|
429 | + $xmlns = ''; |
|
430 | 430 | if($name_ns){ |
431 | - $prefix = 'nu'.rand(1000,9999); |
|
432 | - $name = $prefix.':'.$name; |
|
433 | - $xmlns .= " xmlns:$prefix=\"$name_ns\""; |
|
434 | - } |
|
435 | - // if type is prefixed, create type prefix |
|
436 | - if($type_ns != '' && $type_ns == $this->namespaces['xsd']){ |
|
437 | - // need to fix this. shouldn't default to xsd if no ns specified |
|
438 | - // w/o checking against typemap |
|
439 | - $type_prefix = 'xsd'; |
|
440 | - } elseif($type_ns){ |
|
441 | - $type_prefix = 'ns'.rand(1000,9999); |
|
442 | - $xmlns .= " xmlns:$type_prefix=\"$type_ns\""; |
|
443 | - } |
|
444 | - // serialize attributes if present |
|
445 | - $atts = ''; |
|
446 | - if($attributes){ |
|
447 | - foreach($attributes as $k => $v){ |
|
448 | - $atts .= " $k=\"".$this->expandEntities($v).'"'; |
|
449 | - } |
|
450 | - } |
|
451 | - // serialize null value |
|
452 | - if (is_null($val)) { |
|
453 | - $this->debug("serialize_val: serialize null"); |
|
454 | - if ($use == 'literal') { |
|
455 | - // TODO: depends on minOccurs |
|
456 | - $xml = "<$name$xmlns$atts/>"; |
|
457 | - $this->debug("serialize_val returning $xml"); |
|
458 | - return $xml; |
|
459 | - } else { |
|
460 | - if (isset($type) && isset($type_prefix)) { |
|
461 | - $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
462 | - } else { |
|
463 | - $type_str = ''; |
|
464 | - } |
|
465 | - $xml = "<$name$xmlns$type_str$atts xsi:nil=\"true\"/>"; |
|
466 | - $this->debug("serialize_val returning $xml"); |
|
467 | - return $xml; |
|
468 | - } |
|
469 | - } |
|
431 | + $prefix = 'nu'.rand(1000,9999); |
|
432 | + $name = $prefix.':'.$name; |
|
433 | + $xmlns .= " xmlns:$prefix=\"$name_ns\""; |
|
434 | + } |
|
435 | + // if type is prefixed, create type prefix |
|
436 | + if($type_ns != '' && $type_ns == $this->namespaces['xsd']){ |
|
437 | + // need to fix this. shouldn't default to xsd if no ns specified |
|
438 | + // w/o checking against typemap |
|
439 | + $type_prefix = 'xsd'; |
|
440 | + } elseif($type_ns){ |
|
441 | + $type_prefix = 'ns'.rand(1000,9999); |
|
442 | + $xmlns .= " xmlns:$type_prefix=\"$type_ns\""; |
|
443 | + } |
|
444 | + // serialize attributes if present |
|
445 | + $atts = ''; |
|
446 | + if($attributes){ |
|
447 | + foreach($attributes as $k => $v){ |
|
448 | + $atts .= " $k=\"".$this->expandEntities($v).'"'; |
|
449 | + } |
|
450 | + } |
|
451 | + // serialize null value |
|
452 | + if (is_null($val)) { |
|
453 | + $this->debug("serialize_val: serialize null"); |
|
454 | + if ($use == 'literal') { |
|
455 | + // TODO: depends on minOccurs |
|
456 | + $xml = "<$name$xmlns$atts/>"; |
|
457 | + $this->debug("serialize_val returning $xml"); |
|
458 | + return $xml; |
|
459 | + } else { |
|
460 | + if (isset($type) && isset($type_prefix)) { |
|
461 | + $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
462 | + } else { |
|
463 | + $type_str = ''; |
|
464 | + } |
|
465 | + $xml = "<$name$xmlns$type_str$atts xsi:nil=\"true\"/>"; |
|
466 | + $this->debug("serialize_val returning $xml"); |
|
467 | + return $xml; |
|
468 | + } |
|
469 | + } |
|
470 | 470 | // serialize if an xsd built-in primitive type |
471 | 471 | if($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])){ |
472 | - $this->debug("serialize_val: serialize xsd built-in primitive type"); |
|
473 | - if (is_bool($val)) { |
|
474 | - if ($type == 'boolean') { |
|
475 | - $val = $val ? 'true' : 'false'; |
|
476 | - } elseif (! $val) { |
|
477 | - $val = 0; |
|
478 | - } |
|
479 | - } else if (is_string($val)) { |
|
480 | - $val = $this->expandEntities($val); |
|
481 | - } |
|
482 | - if ($use == 'literal') { |
|
483 | - $xml = "<$name$xmlns$atts>$val</$name>"; |
|
484 | - $this->debug("serialize_val returning $xml"); |
|
485 | - return $xml; |
|
486 | - } else { |
|
487 | - $xml = "<$name$xmlns xsi:type=\"xsd:$type\"$atts>$val</$name>"; |
|
488 | - $this->debug("serialize_val returning $xml"); |
|
489 | - return $xml; |
|
490 | - } |
|
472 | + $this->debug("serialize_val: serialize xsd built-in primitive type"); |
|
473 | + if (is_bool($val)) { |
|
474 | + if ($type == 'boolean') { |
|
475 | + $val = $val ? 'true' : 'false'; |
|
476 | + } elseif (! $val) { |
|
477 | + $val = 0; |
|
478 | + } |
|
479 | + } else if (is_string($val)) { |
|
480 | + $val = $this->expandEntities($val); |
|
481 | + } |
|
482 | + if ($use == 'literal') { |
|
483 | + $xml = "<$name$xmlns$atts>$val</$name>"; |
|
484 | + $this->debug("serialize_val returning $xml"); |
|
485 | + return $xml; |
|
486 | + } else { |
|
487 | + $xml = "<$name$xmlns xsi:type=\"xsd:$type\"$atts>$val</$name>"; |
|
488 | + $this->debug("serialize_val returning $xml"); |
|
489 | + return $xml; |
|
490 | + } |
|
491 | 491 | } |
492 | - // detect type and serialize |
|
493 | - $xml = ''; |
|
494 | - switch(true) { |
|
495 | - case (is_bool($val) || $type == 'boolean'): |
|
496 | - $this->debug("serialize_val: serialize boolean"); |
|
497 | - if ($type == 'boolean') { |
|
498 | - $val = $val ? 'true' : 'false'; |
|
499 | - } elseif (! $val) { |
|
500 | - $val = 0; |
|
501 | - } |
|
502 | - if ($use == 'literal') { |
|
503 | - $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
504 | - } else { |
|
505 | - $xml .= "<$name$xmlns xsi:type=\"xsd:boolean\"$atts>$val</$name>"; |
|
506 | - } |
|
507 | - break; |
|
508 | - case (is_int($val) || is_long($val) || $type == 'int'): |
|
509 | - $this->debug("serialize_val: serialize int"); |
|
510 | - if ($use == 'literal') { |
|
511 | - $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
512 | - } else { |
|
513 | - $xml .= "<$name$xmlns xsi:type=\"xsd:int\"$atts>$val</$name>"; |
|
514 | - } |
|
515 | - break; |
|
516 | - case (is_float($val)|| is_double($val) || $type == 'float'): |
|
517 | - $this->debug("serialize_val: serialize float"); |
|
518 | - if ($use == 'literal') { |
|
519 | - $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
520 | - } else { |
|
521 | - $xml .= "<$name$xmlns xsi:type=\"xsd:float\"$atts>$val</$name>"; |
|
522 | - } |
|
523 | - break; |
|
524 | - case (is_string($val) || $type == 'string'): |
|
525 | - $this->debug("serialize_val: serialize string"); |
|
526 | - $val = $this->expandEntities($val); |
|
527 | - if ($use == 'literal') { |
|
528 | - $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
529 | - } else { |
|
530 | - $xml .= "<$name$xmlns xsi:type=\"xsd:string\"$atts>$val</$name>"; |
|
531 | - } |
|
532 | - break; |
|
533 | - case is_object($val): |
|
534 | - $this->debug("serialize_val: serialize object"); |
|
535 | - if (get_class($val) == 'soapval') { |
|
536 | - $this->debug("serialize_val: serialize soapval object"); |
|
537 | - $pXml = $val->serialize($use); |
|
538 | - $this->appendDebug($val->getDebug()); |
|
539 | - $val->clearDebug(); |
|
540 | - } else { |
|
541 | - if (! $name) { |
|
542 | - $name = get_class($val); |
|
543 | - $this->debug("In serialize_val, used class name $name as element name"); |
|
544 | - } else { |
|
545 | - $this->debug("In serialize_val, do not override name $name for element name for class " . get_class($val)); |
|
546 | - } |
|
547 | - foreach(get_object_vars($val) as $k => $v){ |
|
548 | - $pXml = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,false,false,false,false,$use); |
|
549 | - } |
|
550 | - } |
|
551 | - if(isset($type) && isset($type_prefix)){ |
|
552 | - $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
553 | - } else { |
|
554 | - $type_str = ''; |
|
555 | - } |
|
556 | - if ($use == 'literal') { |
|
557 | - $xml .= "<$name$xmlns$atts>$pXml</$name>"; |
|
558 | - } else { |
|
559 | - $xml .= "<$name$xmlns$type_str$atts>$pXml</$name>"; |
|
560 | - } |
|
561 | - break; |
|
562 | - case (is_array($val) || $type): |
|
563 | - // detect if struct or array |
|
564 | - $valueType = $this->isArraySimpleOrStruct($val); |
|
492 | + // detect type and serialize |
|
493 | + $xml = ''; |
|
494 | + switch(true) { |
|
495 | + case (is_bool($val) || $type == 'boolean'): |
|
496 | + $this->debug("serialize_val: serialize boolean"); |
|
497 | + if ($type == 'boolean') { |
|
498 | + $val = $val ? 'true' : 'false'; |
|
499 | + } elseif (! $val) { |
|
500 | + $val = 0; |
|
501 | + } |
|
502 | + if ($use == 'literal') { |
|
503 | + $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
504 | + } else { |
|
505 | + $xml .= "<$name$xmlns xsi:type=\"xsd:boolean\"$atts>$val</$name>"; |
|
506 | + } |
|
507 | + break; |
|
508 | + case (is_int($val) || is_long($val) || $type == 'int'): |
|
509 | + $this->debug("serialize_val: serialize int"); |
|
510 | + if ($use == 'literal') { |
|
511 | + $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
512 | + } else { |
|
513 | + $xml .= "<$name$xmlns xsi:type=\"xsd:int\"$atts>$val</$name>"; |
|
514 | + } |
|
515 | + break; |
|
516 | + case (is_float($val)|| is_double($val) || $type == 'float'): |
|
517 | + $this->debug("serialize_val: serialize float"); |
|
518 | + if ($use == 'literal') { |
|
519 | + $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
520 | + } else { |
|
521 | + $xml .= "<$name$xmlns xsi:type=\"xsd:float\"$atts>$val</$name>"; |
|
522 | + } |
|
523 | + break; |
|
524 | + case (is_string($val) || $type == 'string'): |
|
525 | + $this->debug("serialize_val: serialize string"); |
|
526 | + $val = $this->expandEntities($val); |
|
527 | + if ($use == 'literal') { |
|
528 | + $xml .= "<$name$xmlns$atts>$val</$name>"; |
|
529 | + } else { |
|
530 | + $xml .= "<$name$xmlns xsi:type=\"xsd:string\"$atts>$val</$name>"; |
|
531 | + } |
|
532 | + break; |
|
533 | + case is_object($val): |
|
534 | + $this->debug("serialize_val: serialize object"); |
|
535 | + if (get_class($val) == 'soapval') { |
|
536 | + $this->debug("serialize_val: serialize soapval object"); |
|
537 | + $pXml = $val->serialize($use); |
|
538 | + $this->appendDebug($val->getDebug()); |
|
539 | + $val->clearDebug(); |
|
540 | + } else { |
|
541 | + if (! $name) { |
|
542 | + $name = get_class($val); |
|
543 | + $this->debug("In serialize_val, used class name $name as element name"); |
|
544 | + } else { |
|
545 | + $this->debug("In serialize_val, do not override name $name for element name for class " . get_class($val)); |
|
546 | + } |
|
547 | + foreach(get_object_vars($val) as $k => $v){ |
|
548 | + $pXml = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,false,false,false,false,$use); |
|
549 | + } |
|
550 | + } |
|
551 | + if(isset($type) && isset($type_prefix)){ |
|
552 | + $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
553 | + } else { |
|
554 | + $type_str = ''; |
|
555 | + } |
|
556 | + if ($use == 'literal') { |
|
557 | + $xml .= "<$name$xmlns$atts>$pXml</$name>"; |
|
558 | + } else { |
|
559 | + $xml .= "<$name$xmlns$type_str$atts>$pXml</$name>"; |
|
560 | + } |
|
561 | + break; |
|
562 | + case (is_array($val) || $type): |
|
563 | + // detect if struct or array |
|
564 | + $valueType = $this->isArraySimpleOrStruct($val); |
|
565 | 565 | if($valueType=='arraySimple' || preg_match('/^ArrayOf/',$type)){ |
566 | - $this->debug("serialize_val: serialize array"); |
|
567 | - $i = 0; |
|
568 | - if(is_array($val) && count($val)> 0){ |
|
569 | - foreach($val as $v){ |
|
570 | - if(is_object($v) && get_class($v) == 'soapval'){ |
|
571 | - $tt_ns = $v->type_ns; |
|
572 | - $tt = $v->type; |
|
573 | - } elseif (is_array($v)) { |
|
574 | - $tt = $this->isArraySimpleOrStruct($v); |
|
575 | - } else { |
|
576 | - $tt = gettype($v); |
|
577 | - } |
|
578 | - $array_types[$tt] = 1; |
|
579 | - // TODO: for literal, the name should be $name |
|
580 | - $xml .= $this->serialize_val($v,'item',false,false,false,false,$use); |
|
581 | - ++$i; |
|
582 | - } |
|
583 | - if(count($array_types) > 1){ |
|
584 | - $array_typename = 'xsd:anyType'; |
|
585 | - } elseif(isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) { |
|
586 | - if ($tt == 'integer') { |
|
587 | - $tt = 'int'; |
|
588 | - } |
|
589 | - $array_typename = 'xsd:'.$tt; |
|
590 | - } elseif(isset($tt) && $tt == 'arraySimple'){ |
|
591 | - $array_typename = 'SOAP-ENC:Array'; |
|
592 | - } elseif(isset($tt) && $tt == 'arrayStruct'){ |
|
593 | - $array_typename = 'unnamed_struct_use_soapval'; |
|
594 | - } else { |
|
595 | - // if type is prefixed, create type prefix |
|
596 | - if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']){ |
|
597 | - $array_typename = 'xsd:' . $tt; |
|
598 | - } elseif ($tt_ns) { |
|
599 | - $tt_prefix = 'ns' . rand(1000, 9999); |
|
600 | - $array_typename = "$tt_prefix:$tt"; |
|
601 | - $xmlns .= " xmlns:$tt_prefix=\"$tt_ns\""; |
|
602 | - } else { |
|
603 | - $array_typename = $tt; |
|
604 | - } |
|
605 | - } |
|
606 | - $array_type = $i; |
|
607 | - if ($use == 'literal') { |
|
608 | - $type_str = ''; |
|
609 | - } else if (isset($type) && isset($type_prefix)) { |
|
610 | - $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
611 | - } else { |
|
612 | - $type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"".$array_typename."[$array_type]\""; |
|
613 | - } |
|
614 | - // empty array |
|
615 | - } else { |
|
616 | - if ($use == 'literal') { |
|
617 | - $type_str = ''; |
|
618 | - } else if (isset($type) && isset($type_prefix)) { |
|
619 | - $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
620 | - } else { |
|
621 | - $type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"xsd:anyType[0]\""; |
|
622 | - } |
|
623 | - } |
|
624 | - // TODO: for array in literal, there is no wrapper here |
|
625 | - $xml = "<$name$xmlns$type_str$atts>".$xml."</$name>"; |
|
626 | - } else { |
|
627 | - // got a struct |
|
628 | - $this->debug("serialize_val: serialize struct"); |
|
629 | - if(isset($type) && isset($type_prefix)){ |
|
630 | - $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
631 | - } else { |
|
632 | - $type_str = ''; |
|
633 | - } |
|
634 | - if ($use == 'literal') { |
|
635 | - $xml .= "<$name$xmlns$atts>"; |
|
636 | - } else { |
|
637 | - $xml .= "<$name$xmlns$type_str$atts>"; |
|
638 | - } |
|
639 | - foreach($val as $k => $v){ |
|
640 | - // Apache Map |
|
641 | - if ($type == 'Map' && $type_ns == 'http://xml.apache.org/xml-soap') { |
|
642 | - $xml .= '<item>'; |
|
643 | - $xml .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
644 | - $xml .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
645 | - $xml .= '</item>'; |
|
646 | - } else { |
|
647 | - $xml .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
648 | - } |
|
649 | - } |
|
650 | - $xml .= "</$name>"; |
|
651 | - } |
|
652 | - break; |
|
653 | - default: |
|
654 | - $this->debug("serialize_val: serialize unknown"); |
|
655 | - $xml .= 'not detected, got '.gettype($val).' for '.$val; |
|
656 | - break; |
|
657 | - } |
|
658 | - $this->debug("serialize_val returning $xml"); |
|
659 | - return $xml; |
|
660 | - } |
|
661 | - |
|
662 | - /** |
|
663 | - * serializes a message |
|
664 | - * |
|
665 | - * @param string $body the XML of the SOAP body |
|
666 | - * @param mixed $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array |
|
667 | - * @param array $namespaces optional the namespaces used in generating the body and headers |
|
668 | - * @param string $style optional (rpc|document) |
|
669 | - * @param string $use optional (encoded|literal) |
|
670 | - * @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
|
671 | - * @return string the message |
|
672 | - * @access public |
|
673 | - */ |
|
566 | + $this->debug("serialize_val: serialize array"); |
|
567 | + $i = 0; |
|
568 | + if(is_array($val) && count($val)> 0){ |
|
569 | + foreach($val as $v){ |
|
570 | + if(is_object($v) && get_class($v) == 'soapval'){ |
|
571 | + $tt_ns = $v->type_ns; |
|
572 | + $tt = $v->type; |
|
573 | + } elseif (is_array($v)) { |
|
574 | + $tt = $this->isArraySimpleOrStruct($v); |
|
575 | + } else { |
|
576 | + $tt = gettype($v); |
|
577 | + } |
|
578 | + $array_types[$tt] = 1; |
|
579 | + // TODO: for literal, the name should be $name |
|
580 | + $xml .= $this->serialize_val($v,'item',false,false,false,false,$use); |
|
581 | + ++$i; |
|
582 | + } |
|
583 | + if(count($array_types) > 1){ |
|
584 | + $array_typename = 'xsd:anyType'; |
|
585 | + } elseif(isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) { |
|
586 | + if ($tt == 'integer') { |
|
587 | + $tt = 'int'; |
|
588 | + } |
|
589 | + $array_typename = 'xsd:'.$tt; |
|
590 | + } elseif(isset($tt) && $tt == 'arraySimple'){ |
|
591 | + $array_typename = 'SOAP-ENC:Array'; |
|
592 | + } elseif(isset($tt) && $tt == 'arrayStruct'){ |
|
593 | + $array_typename = 'unnamed_struct_use_soapval'; |
|
594 | + } else { |
|
595 | + // if type is prefixed, create type prefix |
|
596 | + if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']){ |
|
597 | + $array_typename = 'xsd:' . $tt; |
|
598 | + } elseif ($tt_ns) { |
|
599 | + $tt_prefix = 'ns' . rand(1000, 9999); |
|
600 | + $array_typename = "$tt_prefix:$tt"; |
|
601 | + $xmlns .= " xmlns:$tt_prefix=\"$tt_ns\""; |
|
602 | + } else { |
|
603 | + $array_typename = $tt; |
|
604 | + } |
|
605 | + } |
|
606 | + $array_type = $i; |
|
607 | + if ($use == 'literal') { |
|
608 | + $type_str = ''; |
|
609 | + } else if (isset($type) && isset($type_prefix)) { |
|
610 | + $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
611 | + } else { |
|
612 | + $type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"".$array_typename."[$array_type]\""; |
|
613 | + } |
|
614 | + // empty array |
|
615 | + } else { |
|
616 | + if ($use == 'literal') { |
|
617 | + $type_str = ''; |
|
618 | + } else if (isset($type) && isset($type_prefix)) { |
|
619 | + $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
620 | + } else { |
|
621 | + $type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"xsd:anyType[0]\""; |
|
622 | + } |
|
623 | + } |
|
624 | + // TODO: for array in literal, there is no wrapper here |
|
625 | + $xml = "<$name$xmlns$type_str$atts>".$xml."</$name>"; |
|
626 | + } else { |
|
627 | + // got a struct |
|
628 | + $this->debug("serialize_val: serialize struct"); |
|
629 | + if(isset($type) && isset($type_prefix)){ |
|
630 | + $type_str = " xsi:type=\"$type_prefix:$type\""; |
|
631 | + } else { |
|
632 | + $type_str = ''; |
|
633 | + } |
|
634 | + if ($use == 'literal') { |
|
635 | + $xml .= "<$name$xmlns$atts>"; |
|
636 | + } else { |
|
637 | + $xml .= "<$name$xmlns$type_str$atts>"; |
|
638 | + } |
|
639 | + foreach($val as $k => $v){ |
|
640 | + // Apache Map |
|
641 | + if ($type == 'Map' && $type_ns == 'http://xml.apache.org/xml-soap') { |
|
642 | + $xml .= '<item>'; |
|
643 | + $xml .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
644 | + $xml .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
645 | + $xml .= '</item>'; |
|
646 | + } else { |
|
647 | + $xml .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
648 | + } |
|
649 | + } |
|
650 | + $xml .= "</$name>"; |
|
651 | + } |
|
652 | + break; |
|
653 | + default: |
|
654 | + $this->debug("serialize_val: serialize unknown"); |
|
655 | + $xml .= 'not detected, got '.gettype($val).' for '.$val; |
|
656 | + break; |
|
657 | + } |
|
658 | + $this->debug("serialize_val returning $xml"); |
|
659 | + return $xml; |
|
660 | + } |
|
661 | + |
|
662 | + /** |
|
663 | + * serializes a message |
|
664 | + * |
|
665 | + * @param string $body the XML of the SOAP body |
|
666 | + * @param mixed $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array |
|
667 | + * @param array $namespaces optional the namespaces used in generating the body and headers |
|
668 | + * @param string $style optional (rpc|document) |
|
669 | + * @param string $use optional (encoded|literal) |
|
670 | + * @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
|
671 | + * @return string the message |
|
672 | + * @access public |
|
673 | + */ |
|
674 | 674 | function serializeEnvelope($body,$headers=false,$namespaces=array(),$style='rpc',$use='encoded',$encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'){ |
675 | 675 | // TODO: add an option to automatically run utf8_encode on $body and $headers |
676 | 676 | // if $this->soap_defencoding is UTF-8. Not doing this automatically allows |
677 | 677 | // one to send arbitrary UTF-8 characters, not just characters that map to ISO-8859-1 |
678 | 678 | |
679 | - $this->debug("In serializeEnvelope length=" . strlen($body) . " body (max 1000 characters)=" . substr($body, 0, 1000) . " style=$style use=$use encodingStyle=$encodingStyle"); |
|
680 | - $this->debug("headers:"); |
|
681 | - $this->appendDebug($this->varDump($headers)); |
|
682 | - $this->debug("namespaces:"); |
|
683 | - $this->appendDebug($this->varDump($namespaces)); |
|
679 | + $this->debug("In serializeEnvelope length=" . strlen($body) . " body (max 1000 characters)=" . substr($body, 0, 1000) . " style=$style use=$use encodingStyle=$encodingStyle"); |
|
680 | + $this->debug("headers:"); |
|
681 | + $this->appendDebug($this->varDump($headers)); |
|
682 | + $this->debug("namespaces:"); |
|
683 | + $this->appendDebug($this->varDump($namespaces)); |
|
684 | 684 | |
685 | - // serialize namespaces |
|
685 | + // serialize namespaces |
|
686 | 686 | $ns_string = ''; |
687 | - foreach(array_merge($this->namespaces,$namespaces) as $k => $v){ |
|
688 | - $ns_string .= " xmlns:$k=\"$v\""; |
|
689 | - } |
|
690 | - if($encodingStyle) { |
|
691 | - $ns_string = " SOAP-ENV:encodingStyle=\"$encodingStyle\"$ns_string"; |
|
692 | - } |
|
693 | - |
|
694 | - // serialize headers |
|
695 | - if($headers){ |
|
696 | - if (is_array($headers)) { |
|
697 | - $xml = ''; |
|
698 | - foreach ($headers as $k => $v) { |
|
699 | - if (is_object($v) && get_class($v) == 'soapval') { |
|
700 | - $xml .= $this->serialize_val($v, false, false, false, false, false, $use); |
|
701 | - } else { |
|
702 | - $xml .= $this->serialize_val($v, $k, false, false, false, false, $use); |
|
703 | - } |
|
704 | - } |
|
705 | - $headers = $xml; |
|
706 | - $this->debug("In serializeEnvelope, serialized array of headers to $headers"); |
|
707 | - } |
|
708 | - $headers = "<SOAP-ENV:Header>".$headers."</SOAP-ENV:Header>"; |
|
709 | - } |
|
710 | - // serialize envelope |
|
711 | - return |
|
712 | - '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">". |
|
713 | - '<SOAP-ENV:Envelope'.$ns_string.">". |
|
714 | - $headers. |
|
715 | - "<SOAP-ENV:Body>". |
|
716 | - $body. |
|
717 | - "</SOAP-ENV:Body>". |
|
718 | - "</SOAP-ENV:Envelope>"; |
|
719 | - } |
|
720 | - |
|
721 | - /** |
|
722 | - * formats a string to be inserted into an HTML stream |
|
723 | - * |
|
724 | - * @param string $str The string to format |
|
725 | - * @return string The formatted string |
|
726 | - * @access public |
|
727 | - * @deprecated |
|
728 | - */ |
|
687 | + foreach(array_merge($this->namespaces,$namespaces) as $k => $v){ |
|
688 | + $ns_string .= " xmlns:$k=\"$v\""; |
|
689 | + } |
|
690 | + if($encodingStyle) { |
|
691 | + $ns_string = " SOAP-ENV:encodingStyle=\"$encodingStyle\"$ns_string"; |
|
692 | + } |
|
693 | + |
|
694 | + // serialize headers |
|
695 | + if($headers){ |
|
696 | + if (is_array($headers)) { |
|
697 | + $xml = ''; |
|
698 | + foreach ($headers as $k => $v) { |
|
699 | + if (is_object($v) && get_class($v) == 'soapval') { |
|
700 | + $xml .= $this->serialize_val($v, false, false, false, false, false, $use); |
|
701 | + } else { |
|
702 | + $xml .= $this->serialize_val($v, $k, false, false, false, false, $use); |
|
703 | + } |
|
704 | + } |
|
705 | + $headers = $xml; |
|
706 | + $this->debug("In serializeEnvelope, serialized array of headers to $headers"); |
|
707 | + } |
|
708 | + $headers = "<SOAP-ENV:Header>".$headers."</SOAP-ENV:Header>"; |
|
709 | + } |
|
710 | + // serialize envelope |
|
711 | + return |
|
712 | + '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">". |
|
713 | + '<SOAP-ENV:Envelope'.$ns_string.">". |
|
714 | + $headers. |
|
715 | + "<SOAP-ENV:Body>". |
|
716 | + $body. |
|
717 | + "</SOAP-ENV:Body>". |
|
718 | + "</SOAP-ENV:Envelope>"; |
|
719 | + } |
|
720 | + |
|
721 | + /** |
|
722 | + * formats a string to be inserted into an HTML stream |
|
723 | + * |
|
724 | + * @param string $str The string to format |
|
725 | + * @return string The formatted string |
|
726 | + * @access public |
|
727 | + * @deprecated |
|
728 | + */ |
|
729 | 729 | function formatDump($str){ |
730 | - $str = htmlspecialchars($str); |
|
731 | - return nl2br($str); |
|
732 | - } |
|
733 | - |
|
734 | - /** |
|
735 | - * contracts (changes namespace to prefix) a qualified name |
|
736 | - * |
|
737 | - * @param string $qname qname |
|
738 | - * @return string contracted qname |
|
739 | - * @access private |
|
740 | - */ |
|
741 | - function contractQname($qname){ |
|
742 | - // get element namespace |
|
743 | - //$this->xdebug("Contract $qname"); |
|
744 | - if (strrpos($qname, ':')) { |
|
745 | - // get unqualified name |
|
746 | - $name = substr($qname, strrpos($qname, ':') + 1); |
|
747 | - // get ns |
|
748 | - $ns = substr($qname, 0, strrpos($qname, ':')); |
|
749 | - $p = $this->getPrefixFromNamespace($ns); |
|
750 | - if ($p) { |
|
751 | - return $p . ':' . $name; |
|
752 | - } |
|
753 | - return $qname; |
|
754 | - } else { |
|
755 | - return $qname; |
|
756 | - } |
|
757 | - } |
|
758 | - |
|
759 | - /** |
|
760 | - * expands (changes prefix to namespace) a qualified name |
|
761 | - * |
|
762 | - * @param string $qname qname |
|
763 | - * @return string expanded qname |
|
764 | - * @access private |
|
765 | - */ |
|
766 | - function expandQname($qname){ |
|
767 | - // get element prefix |
|
768 | - if(strpos($qname,':') && !preg_match('/^http:\/\//',$qname)){ |
|
769 | - // get unqualified name |
|
770 | - $name = substr(strstr($qname,':'),1); |
|
771 | - // get ns prefix |
|
772 | - $prefix = substr($qname,0,strpos($qname,':')); |
|
773 | - if(isset($this->namespaces[$prefix])){ |
|
774 | - return $this->namespaces[$prefix].':'.$name; |
|
775 | - } else { |
|
776 | - return $qname; |
|
777 | - } |
|
778 | - } else { |
|
779 | - return $qname; |
|
780 | - } |
|
781 | - } |
|
782 | - |
|
783 | - /** |
|
784 | - * returns the local part of a prefixed string |
|
785 | - * returns the original string, if not prefixed |
|
786 | - * |
|
787 | - * @param string $str The prefixed string |
|
788 | - * @return string The local part |
|
789 | - * @access public |
|
790 | - */ |
|
791 | - function getLocalPart($str){ |
|
792 | - if($sstr = strrchr($str,':')){ |
|
793 | - // get unqualified name |
|
794 | - return substr( $sstr, 1 ); |
|
795 | - } else { |
|
796 | - return $str; |
|
797 | - } |
|
798 | - } |
|
799 | - |
|
800 | - /** |
|
801 | - * returns the prefix part of a prefixed string |
|
802 | - * returns false, if not prefixed |
|
803 | - * |
|
804 | - * @param string $str The prefixed string |
|
805 | - * @return mixed The prefix or false if there is no prefix |
|
806 | - * @access public |
|
807 | - */ |
|
808 | - function getPrefix($str){ |
|
809 | - if($pos = strrpos($str,':')){ |
|
810 | - // get prefix |
|
811 | - return substr($str,0,$pos); |
|
812 | - } |
|
813 | - return false; |
|
814 | - } |
|
815 | - |
|
816 | - /** |
|
817 | - * pass it a prefix, it returns a namespace |
|
818 | - * |
|
819 | - * @param string $prefix The prefix |
|
820 | - * @return mixed The namespace, false if no namespace has the specified prefix |
|
821 | - * @access public |
|
822 | - */ |
|
823 | - function getNamespaceFromPrefix($prefix){ |
|
824 | - if (isset($this->namespaces[$prefix])) { |
|
825 | - return $this->namespaces[$prefix]; |
|
826 | - } |
|
827 | - //$this->setError("No namespace registered for prefix '$prefix'"); |
|
828 | - return false; |
|
829 | - } |
|
830 | - |
|
831 | - /** |
|
832 | - * returns the prefix for a given namespace (or prefix) |
|
833 | - * or false if no prefixes registered for the given namespace |
|
834 | - * |
|
835 | - * @param string $ns The namespace |
|
836 | - * @return mixed The prefix, false if the namespace has no prefixes |
|
837 | - * @access public |
|
838 | - */ |
|
839 | - function getPrefixFromNamespace($ns) { |
|
840 | - foreach ($this->namespaces as $p => $n) { |
|
841 | - if ($ns == $n || $ns == $p) { |
|
842 | - $this->usedNamespaces[$p] = $n; |
|
843 | - return $p; |
|
844 | - } |
|
845 | - } |
|
846 | - return false; |
|
847 | - } |
|
848 | - |
|
849 | - /** |
|
850 | - * returns the time in ODBC canonical form with microseconds |
|
851 | - * |
|
852 | - * @return string The time in ODBC canonical form with microseconds |
|
853 | - * @access public |
|
854 | - */ |
|
855 | - function getmicrotime() { |
|
856 | - if (function_exists('gettimeofday')) { |
|
857 | - $tod = gettimeofday(); |
|
858 | - $sec = $tod['sec']; |
|
859 | - $usec = $tod['usec']; |
|
860 | - } else { |
|
861 | - $sec = time(); |
|
862 | - $usec = 0; |
|
863 | - } |
|
864 | - return strftime('%Y-%m-%d %H:%M:%S', $sec) . '.' . sprintf('%06d', $usec); |
|
865 | - } |
|
866 | - |
|
867 | - /** |
|
868 | - * Returns a string with the output of var_dump |
|
869 | - * |
|
870 | - * @param mixed $data The variable to var_dump |
|
871 | - * @return string The output of var_dump |
|
872 | - * @access public |
|
873 | - */ |
|
730 | + $str = htmlspecialchars($str); |
|
731 | + return nl2br($str); |
|
732 | + } |
|
733 | + |
|
734 | + /** |
|
735 | + * contracts (changes namespace to prefix) a qualified name |
|
736 | + * |
|
737 | + * @param string $qname qname |
|
738 | + * @return string contracted qname |
|
739 | + * @access private |
|
740 | + */ |
|
741 | + function contractQname($qname){ |
|
742 | + // get element namespace |
|
743 | + //$this->xdebug("Contract $qname"); |
|
744 | + if (strrpos($qname, ':')) { |
|
745 | + // get unqualified name |
|
746 | + $name = substr($qname, strrpos($qname, ':') + 1); |
|
747 | + // get ns |
|
748 | + $ns = substr($qname, 0, strrpos($qname, ':')); |
|
749 | + $p = $this->getPrefixFromNamespace($ns); |
|
750 | + if ($p) { |
|
751 | + return $p . ':' . $name; |
|
752 | + } |
|
753 | + return $qname; |
|
754 | + } else { |
|
755 | + return $qname; |
|
756 | + } |
|
757 | + } |
|
758 | + |
|
759 | + /** |
|
760 | + * expands (changes prefix to namespace) a qualified name |
|
761 | + * |
|
762 | + * @param string $qname qname |
|
763 | + * @return string expanded qname |
|
764 | + * @access private |
|
765 | + */ |
|
766 | + function expandQname($qname){ |
|
767 | + // get element prefix |
|
768 | + if(strpos($qname,':') && !preg_match('/^http:\/\//',$qname)){ |
|
769 | + // get unqualified name |
|
770 | + $name = substr(strstr($qname,':'),1); |
|
771 | + // get ns prefix |
|
772 | + $prefix = substr($qname,0,strpos($qname,':')); |
|
773 | + if(isset($this->namespaces[$prefix])){ |
|
774 | + return $this->namespaces[$prefix].':'.$name; |
|
775 | + } else { |
|
776 | + return $qname; |
|
777 | + } |
|
778 | + } else { |
|
779 | + return $qname; |
|
780 | + } |
|
781 | + } |
|
782 | + |
|
783 | + /** |
|
784 | + * returns the local part of a prefixed string |
|
785 | + * returns the original string, if not prefixed |
|
786 | + * |
|
787 | + * @param string $str The prefixed string |
|
788 | + * @return string The local part |
|
789 | + * @access public |
|
790 | + */ |
|
791 | + function getLocalPart($str){ |
|
792 | + if($sstr = strrchr($str,':')){ |
|
793 | + // get unqualified name |
|
794 | + return substr( $sstr, 1 ); |
|
795 | + } else { |
|
796 | + return $str; |
|
797 | + } |
|
798 | + } |
|
799 | + |
|
800 | + /** |
|
801 | + * returns the prefix part of a prefixed string |
|
802 | + * returns false, if not prefixed |
|
803 | + * |
|
804 | + * @param string $str The prefixed string |
|
805 | + * @return mixed The prefix or false if there is no prefix |
|
806 | + * @access public |
|
807 | + */ |
|
808 | + function getPrefix($str){ |
|
809 | + if($pos = strrpos($str,':')){ |
|
810 | + // get prefix |
|
811 | + return substr($str,0,$pos); |
|
812 | + } |
|
813 | + return false; |
|
814 | + } |
|
815 | + |
|
816 | + /** |
|
817 | + * pass it a prefix, it returns a namespace |
|
818 | + * |
|
819 | + * @param string $prefix The prefix |
|
820 | + * @return mixed The namespace, false if no namespace has the specified prefix |
|
821 | + * @access public |
|
822 | + */ |
|
823 | + function getNamespaceFromPrefix($prefix){ |
|
824 | + if (isset($this->namespaces[$prefix])) { |
|
825 | + return $this->namespaces[$prefix]; |
|
826 | + } |
|
827 | + //$this->setError("No namespace registered for prefix '$prefix'"); |
|
828 | + return false; |
|
829 | + } |
|
830 | + |
|
831 | + /** |
|
832 | + * returns the prefix for a given namespace (or prefix) |
|
833 | + * or false if no prefixes registered for the given namespace |
|
834 | + * |
|
835 | + * @param string $ns The namespace |
|
836 | + * @return mixed The prefix, false if the namespace has no prefixes |
|
837 | + * @access public |
|
838 | + */ |
|
839 | + function getPrefixFromNamespace($ns) { |
|
840 | + foreach ($this->namespaces as $p => $n) { |
|
841 | + if ($ns == $n || $ns == $p) { |
|
842 | + $this->usedNamespaces[$p] = $n; |
|
843 | + return $p; |
|
844 | + } |
|
845 | + } |
|
846 | + return false; |
|
847 | + } |
|
848 | + |
|
849 | + /** |
|
850 | + * returns the time in ODBC canonical form with microseconds |
|
851 | + * |
|
852 | + * @return string The time in ODBC canonical form with microseconds |
|
853 | + * @access public |
|
854 | + */ |
|
855 | + function getmicrotime() { |
|
856 | + if (function_exists('gettimeofday')) { |
|
857 | + $tod = gettimeofday(); |
|
858 | + $sec = $tod['sec']; |
|
859 | + $usec = $tod['usec']; |
|
860 | + } else { |
|
861 | + $sec = time(); |
|
862 | + $usec = 0; |
|
863 | + } |
|
864 | + return strftime('%Y-%m-%d %H:%M:%S', $sec) . '.' . sprintf('%06d', $usec); |
|
865 | + } |
|
866 | + |
|
867 | + /** |
|
868 | + * Returns a string with the output of var_dump |
|
869 | + * |
|
870 | + * @param mixed $data The variable to var_dump |
|
871 | + * @return string The output of var_dump |
|
872 | + * @access public |
|
873 | + */ |
|
874 | 874 | function varDump($data) { |
875 | - ob_start(); |
|
876 | - var_dump($data); |
|
877 | - $ret_val = ob_get_contents(); |
|
878 | - ob_end_clean(); |
|
879 | - return $ret_val; |
|
880 | - } |
|
881 | - |
|
882 | - /** |
|
883 | - * represents the object as a string |
|
884 | - * |
|
885 | - * @return string |
|
886 | - * @access public |
|
887 | - */ |
|
888 | - function __toString() { |
|
889 | - return $this->varDump($this); |
|
890 | - } |
|
875 | + ob_start(); |
|
876 | + var_dump($data); |
|
877 | + $ret_val = ob_get_contents(); |
|
878 | + ob_end_clean(); |
|
879 | + return $ret_val; |
|
880 | + } |
|
881 | + |
|
882 | + /** |
|
883 | + * represents the object as a string |
|
884 | + * |
|
885 | + * @return string |
|
886 | + * @access public |
|
887 | + */ |
|
888 | + function __toString() { |
|
889 | + return $this->varDump($this); |
|
890 | + } |
|
891 | 891 | } |
892 | 892 | |
893 | 893 | // XML Schema Datatype Helper Functions |
@@ -903,35 +903,35 @@ discard block |
||
903 | 903 | * @access public |
904 | 904 | */ |
905 | 905 | function timestamp_to_iso8601($timestamp,$utc=true){ |
906 | - $datestr = date('Y-m-d\TH:i:sO',$timestamp); |
|
907 | - $pos = strrpos($datestr, "+"); |
|
908 | - if ($pos === FALSE) { |
|
909 | - $pos = strrpos($datestr, "-"); |
|
910 | - } |
|
911 | - if ($pos !== FALSE) { |
|
912 | - if (strlen($datestr) == $pos + 5) { |
|
913 | - $datestr = substr($datestr, 0, $pos + 3) . ':' . substr($datestr, -2); |
|
914 | - } |
|
915 | - } |
|
916 | - if($utc){ |
|
917 | - $pattern = '/'. |
|
918 | - '([0-9]{4})-'. // centuries & years CCYY- |
|
919 | - '([0-9]{2})-'. // months MM- |
|
920 | - '([0-9]{2})'. // days DD |
|
921 | - 'T'. // separator T |
|
922 | - '([0-9]{2}):'. // hours hh: |
|
923 | - '([0-9]{2}):'. // minutes mm: |
|
924 | - '([0-9]{2})(\.[0-9]*)?'. // seconds ss.ss... |
|
925 | - '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
926 | - '/'; |
|
927 | - |
|
928 | - if(preg_match($pattern,$datestr,$regs)){ |
|
929 | - return sprintf('%04d-%02d-%02dT%02d:%02d:%02dZ',$regs[1],$regs[2],$regs[3],$regs[4],$regs[5],$regs[6]); |
|
930 | - } |
|
931 | - return false; |
|
932 | - } else { |
|
933 | - return $datestr; |
|
934 | - } |
|
906 | + $datestr = date('Y-m-d\TH:i:sO',$timestamp); |
|
907 | + $pos = strrpos($datestr, "+"); |
|
908 | + if ($pos === FALSE) { |
|
909 | + $pos = strrpos($datestr, "-"); |
|
910 | + } |
|
911 | + if ($pos !== FALSE) { |
|
912 | + if (strlen($datestr) == $pos + 5) { |
|
913 | + $datestr = substr($datestr, 0, $pos + 3) . ':' . substr($datestr, -2); |
|
914 | + } |
|
915 | + } |
|
916 | + if($utc){ |
|
917 | + $pattern = '/'. |
|
918 | + '([0-9]{4})-'. // centuries & years CCYY- |
|
919 | + '([0-9]{2})-'. // months MM- |
|
920 | + '([0-9]{2})'. // days DD |
|
921 | + 'T'. // separator T |
|
922 | + '([0-9]{2}):'. // hours hh: |
|
923 | + '([0-9]{2}):'. // minutes mm: |
|
924 | + '([0-9]{2})(\.[0-9]*)?'. // seconds ss.ss... |
|
925 | + '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
926 | + '/'; |
|
927 | + |
|
928 | + if(preg_match($pattern,$datestr,$regs)){ |
|
929 | + return sprintf('%04d-%02d-%02dT%02d:%02d:%02dZ',$regs[1],$regs[2],$regs[3],$regs[4],$regs[5],$regs[6]); |
|
930 | + } |
|
931 | + return false; |
|
932 | + } else { |
|
933 | + return $datestr; |
|
934 | + } |
|
935 | 935 | } |
936 | 936 | |
937 | 937 | /** |
@@ -942,35 +942,35 @@ discard block |
||
942 | 942 | * @access public |
943 | 943 | */ |
944 | 944 | function iso8601_to_timestamp($datestr){ |
945 | - $pattern = '/'. |
|
946 | - '([0-9]{4})-'. // centuries & years CCYY- |
|
947 | - '([0-9]{2})-'. // months MM- |
|
948 | - '([0-9]{2})'. // days DD |
|
949 | - 'T'. // separator T |
|
950 | - '([0-9]{2}):'. // hours hh: |
|
951 | - '([0-9]{2}):'. // minutes mm: |
|
952 | - '([0-9]{2})(\.[0-9]+)?'. // seconds ss.ss... |
|
953 | - '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
954 | - '/'; |
|
955 | - if(preg_match($pattern,$datestr,$regs)){ |
|
956 | - // not utc |
|
957 | - if($regs[8] != 'Z'){ |
|
958 | - $op = substr($regs[8],0,1); |
|
959 | - $h = substr($regs[8],1,2); |
|
960 | - $m = substr($regs[8],strlen($regs[8])-2,2); |
|
961 | - if($op == '-'){ |
|
962 | - $regs[4] = $regs[4] + $h; |
|
963 | - $regs[5] = $regs[5] + $m; |
|
964 | - } elseif($op == '+'){ |
|
965 | - $regs[4] = $regs[4] - $h; |
|
966 | - $regs[5] = $regs[5] - $m; |
|
967 | - } |
|
968 | - } |
|
969 | - return gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
945 | + $pattern = '/'. |
|
946 | + '([0-9]{4})-'. // centuries & years CCYY- |
|
947 | + '([0-9]{2})-'. // months MM- |
|
948 | + '([0-9]{2})'. // days DD |
|
949 | + 'T'. // separator T |
|
950 | + '([0-9]{2}):'. // hours hh: |
|
951 | + '([0-9]{2}):'. // minutes mm: |
|
952 | + '([0-9]{2})(\.[0-9]+)?'. // seconds ss.ss... |
|
953 | + '(Z|[+\-][0-9]{2}:?[0-9]{2})?'. // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's |
|
954 | + '/'; |
|
955 | + if(preg_match($pattern,$datestr,$regs)){ |
|
956 | + // not utc |
|
957 | + if($regs[8] != 'Z'){ |
|
958 | + $op = substr($regs[8],0,1); |
|
959 | + $h = substr($regs[8],1,2); |
|
960 | + $m = substr($regs[8],strlen($regs[8])-2,2); |
|
961 | + if($op == '-'){ |
|
962 | + $regs[4] = $regs[4] + $h; |
|
963 | + $regs[5] = $regs[5] + $m; |
|
964 | + } elseif($op == '+'){ |
|
965 | + $regs[4] = $regs[4] - $h; |
|
966 | + $regs[5] = $regs[5] - $m; |
|
967 | + } |
|
968 | + } |
|
969 | + return gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
970 | 970 | // return strtotime("$regs[1]-$regs[2]-$regs[3] $regs[4]:$regs[5]:$regs[6]Z"); |
971 | - } else { |
|
972 | - return false; |
|
973 | - } |
|
971 | + } else { |
|
972 | + return false; |
|
973 | + } |
|
974 | 974 | } |
975 | 975 | |
976 | 976 | /** |
@@ -982,13 +982,13 @@ discard block |
||
982 | 982 | */ |
983 | 983 | function usleepWindows($usec) |
984 | 984 | { |
985 | - $start = gettimeofday(); |
|
986 | - |
|
987 | - do |
|
988 | - { |
|
989 | - $stop = gettimeofday(); |
|
990 | - $timePassed = 1000000 * ($stop['sec'] - $start['sec']) |
|
991 | - + $stop['usec'] - $start['usec']; |
|
992 | - } |
|
993 | - while ($timePassed < $usec); |
|
985 | + $start = gettimeofday(); |
|
986 | + |
|
987 | + do |
|
988 | + { |
|
989 | + $stop = gettimeofday(); |
|
990 | + $timePassed = 1000000 * ($stop['sec'] - $start['sec']) |
|
991 | + + $stop['usec'] - $start['usec']; |
|
992 | + } |
|
993 | + while ($timePassed < $usec); |
|
994 | 994 | } |