@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @param string Name of common tag to place each line in |
158 | 158 | * @param string Name of the root element. A root element should always be given. |
159 | 159 | * @param string Encoding in which the data is provided |
160 | - * @return void Prompts the user for a file download |
|
160 | + * @return boolean Prompts the user for a file download |
|
161 | 161 | */ |
162 | 162 | public static function export_complex_table_xml( |
163 | 163 | $data, |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @param string $name |
284 | 284 | * @param string $format |
285 | 285 | * |
286 | - * @return bool |
|
286 | + * @return false|null |
|
287 | 287 | */ |
288 | 288 | public static function htmlToOdt($html, $name, $format = 'odt') |
289 | 289 | { |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | DocumentManager::file_send_for_download($filePath, true, $filename.'.csv'); |
58 | 58 | exit; |
59 | - } |
|
59 | + } |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * Export tabular data to XLS-file |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | DocumentManager::file_send_for_download($filePath, true, $filename.'.xlsx'); |
81 | 81 | exit; |
82 | - } |
|
82 | + } |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Export tabular data to XLS-file (as html table) |
@@ -112,13 +112,13 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
115 | - * Export tabular data to XML-file |
|
116 | - * @param array Simple array of data to put in XML |
|
117 | - * @param string Name of file to be given to the user |
|
118 | - * @param string Name of common tag to place each line in |
|
119 | - * @param string Name of the root element. A root element should always be given. |
|
120 | - * @param string Encoding in which the data is provided |
|
121 | - */ |
|
115 | + * Export tabular data to XML-file |
|
116 | + * @param array Simple array of data to put in XML |
|
117 | + * @param string Name of file to be given to the user |
|
118 | + * @param string Name of common tag to place each line in |
|
119 | + * @param string Name of the root element. A root element should always be given. |
|
120 | + * @param string Encoding in which the data is provided |
|
121 | + */ |
|
122 | 122 | public static function arrayToXml( |
123 | 123 | $data, |
124 | 124 | $filename = 'export', |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | fclose($handle); |
149 | 149 | DocumentManager :: file_send_for_download($file, true, $filename.'.xml'); |
150 | 150 | exit; |
151 | - } |
|
151 | + } |
|
152 | 152 | |
153 | 153 | /** |
154 | 154 | * Export hierarchical tabular data to XML-file |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | foreach ($data as $row) { |
198 | 198 | $string .= "\n".str_repeat("\t",$level).'<'.$row['name'].'>'; |
199 | 199 | if (is_array($row['value'])) { |
200 | - $string .= self::_export_complex_table_xml_helper($row['value'],$level+1)."\n"; |
|
200 | + $string .= self::_export_complex_table_xml_helper($row['value'],$level+1)."\n"; |
|
201 | 201 | $string .= str_repeat("\t",$level).'</'.$row['name'].'>'; |
202 | 202 | } else { |
203 | 203 | $string .= $row['value']; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | } |
100 | 100 | foreach ($data as $row) { |
101 | 101 | $string = implode("</td><td>", $row); |
102 | - $string = '<tr><td>' . $string . '</td></tr>'; |
|
102 | + $string = '<tr><td>'.$string.'</td></tr>'; |
|
103 | 103 | if ($encoding != 'utf-8') { |
104 | 104 | $string = api_convert_encoding($string, $encoding, $systemEncoding); |
105 | 105 | } |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | fwrite($handle, '<'.$wrapper_tagname.'>'); |
174 | 174 | } |
175 | 175 | $s = self::_export_complex_table_xml_helper($data); |
176 | - fwrite($handle,$s); |
|
176 | + fwrite($handle, $s); |
|
177 | 177 | if (!is_null($wrapper_tagname)) { |
178 | 178 | fwrite($handle, '</'.$wrapper_tagname.'>'."\n"); |
179 | 179 | } |
@@ -195,10 +195,10 @@ discard block |
||
195 | 195 | } |
196 | 196 | $string = ''; |
197 | 197 | foreach ($data as $row) { |
198 | - $string .= "\n".str_repeat("\t",$level).'<'.$row['name'].'>'; |
|
198 | + $string .= "\n".str_repeat("\t", $level).'<'.$row['name'].'>'; |
|
199 | 199 | if (is_array($row['value'])) { |
200 | - $string .= self::_export_complex_table_xml_helper($row['value'],$level+1)."\n"; |
|
201 | - $string .= str_repeat("\t",$level).'</'.$row['name'].'>'; |
|
200 | + $string .= self::_export_complex_table_xml_helper($row['value'], $level + 1)."\n"; |
|
201 | + $string .= str_repeat("\t", $level).'</'.$row['name'].'>'; |
|
202 | 202 | } else { |
203 | 203 | $string .= $row['value']; |
204 | 204 | $string .= '</'.$row['name'].'>'; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | - * @return array |
|
126 | + * @return string[] |
|
127 | 127 | */ |
128 | 128 | public static function getValidExtraFieldTypes() |
129 | 129 | { |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | |
200 | 200 | /** |
201 | 201 | * @param array $conditions |
202 | - * @param null $order_field_options_by |
|
202 | + * @param string $order_field_options_by |
|
203 | 203 | * |
204 | 204 | * @return array |
205 | 205 | */ |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * @param string $variable |
239 | 239 | * |
240 | - * @return array|bool |
|
240 | + * @return integer |
|
241 | 241 | */ |
242 | 242 | public function get_handler_field_info_by_field_variable($variable) |
243 | 243 | { |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | /** |
320 | 320 | * @param string $handler |
321 | 321 | * |
322 | - * @return array |
|
322 | + * @return string[] |
|
323 | 323 | */ |
324 | 324 | public static function get_extra_fields_by_handler($handler) |
325 | 325 | { |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | } |
497 | 497 | |
498 | 498 | /** |
499 | - * @return array |
|
499 | + * @return string[] |
|
500 | 500 | */ |
501 | 501 | public function get_field_types() |
502 | 502 | { |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | /** |
507 | 507 | * @param int $id |
508 | 508 | * |
509 | - * @return null |
|
509 | + * @return string|null |
|
510 | 510 | */ |
511 | 511 | public function get_field_type_by_id($id) |
512 | 512 | { |
@@ -691,7 +691,6 @@ discard block |
||
691 | 691 | * @param FormValidator $form |
692 | 692 | * @param array $extraData |
693 | 693 | * @param bool $admin_permissions |
694 | - * @param int $user_id |
|
695 | 694 | * @param array $extra |
696 | 695 | * @param int $itemId |
697 | 696 | * @param array $exclude variables of extra field to exclude |
@@ -1592,7 +1591,7 @@ discard block |
||
1592 | 1591 | } |
1593 | 1592 | |
1594 | 1593 | /** |
1595 | - * @return array |
|
1594 | + * @return string[] |
|
1596 | 1595 | */ |
1597 | 1596 | public function getJqgridColumnNames() |
1598 | 1597 | { |
@@ -1832,7 +1831,7 @@ discard block |
||
1832 | 1831 | } |
1833 | 1832 | |
1834 | 1833 | /** |
1835 | - * @param array $columns |
|
1834 | + * @param string[] $columns |
|
1836 | 1835 | * @param array $column_model |
1837 | 1836 | * @param array $extraFields |
1838 | 1837 | * @return array |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | 'changeable', |
20 | 20 | 'filter', |
21 | 21 | 'extra_field_type', |
22 | - /* Enable this when field_loggeable is introduced as a table field (2.0) |
|
22 | + /* Enable this when field_loggeable is introduced as a table field (2.0) |
|
23 | 23 | 'field_loggeable', |
24 | 24 | */ |
25 | 25 | 'created_at' |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | * France:Paris;Bretagne;Marseilles;Lyon|Belgique:Bruxelles;Namur;Liège;Bruges|Peru:Lima;Piura; |
524 | 524 | * into |
525 | 525 | * array( |
526 | - * 'France' => |
|
526 | + * 'France' => |
|
527 | 527 | * array('Paris', 'Bregtane', 'Marseilles'), |
528 | 528 | * 'Belgique' => |
529 | 529 | * array('Namur', 'Liège') |
@@ -1184,7 +1184,7 @@ discard block |
||
1184 | 1184 | |
1185 | 1185 | if ($this->type == 'user') { |
1186 | 1186 | |
1187 | - /* //the magic should be here |
|
1187 | + /* //the magic should be here |
|
1188 | 1188 | $user_tags = UserManager::get_user_tags($user_id, $field_details[0]); |
1189 | 1189 | |
1190 | 1190 | $tag_list = ''; |
@@ -26,19 +26,19 @@ discard block |
||
26 | 26 | ); |
27 | 27 | |
28 | 28 | public $ops = array( |
29 | - 'eq' => '=', //equal |
|
30 | - 'ne' => '<>', //not equal |
|
31 | - 'lt' => '<', //less than |
|
32 | - 'le' => '<=', //less than or equal |
|
33 | - 'gt' => '>', //greater than |
|
34 | - 'ge' => '>=', //greater than or equal |
|
35 | - 'bw' => 'LIKE', //begins with |
|
29 | + 'eq' => '=', //equal |
|
30 | + 'ne' => '<>', //not equal |
|
31 | + 'lt' => '<', //less than |
|
32 | + 'le' => '<=', //less than or equal |
|
33 | + 'gt' => '>', //greater than |
|
34 | + 'ge' => '>=', //greater than or equal |
|
35 | + 'bw' => 'LIKE', //begins with |
|
36 | 36 | 'bn' => 'NOT LIKE', //doesn't begin with |
37 | - 'in' => 'LIKE', //is in |
|
37 | + 'in' => 'LIKE', //is in |
|
38 | 38 | 'ni' => 'NOT LIKE', //is not in |
39 | - 'ew' => 'LIKE', //ends with |
|
39 | + 'ew' => 'LIKE', //ends with |
|
40 | 40 | 'en' => 'NOT LIKE', //doesn't end with |
41 | - 'cn' => 'LIKE', //contains |
|
41 | + 'cn' => 'LIKE', //contains |
|
42 | 42 | 'nc' => 'NOT LIKE' //doesn't contain |
43 | 43 | ); |
44 | 44 | |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | */ |
324 | 324 | public static function get_extra_fields_by_handler($handler) |
325 | 325 | { |
326 | - $types= array(); |
|
326 | + $types = array(); |
|
327 | 327 | $types[self::FIELD_TYPE_TEXT] = get_lang('FieldTypeText'); |
328 | 328 | $types[self::FIELD_TYPE_TEXTAREA] = get_lang('FieldTypeTextarea'); |
329 | 329 | $types[self::FIELD_TYPE_RADIO] = get_lang('FieldTypeRadio'); |
@@ -967,7 +967,7 @@ discard block |
||
967 | 967 | // chzn-select doesn't work for sessions?? |
968 | 968 | $form->addElement( |
969 | 969 | 'select', |
970 | - 'extra_' . $field_details['variable'], |
|
970 | + 'extra_'.$field_details['variable'], |
|
971 | 971 | $field_details['display_text'], |
972 | 972 | $options, |
973 | 973 | array('id' => 'extra_'.$field_details['variable']) |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | |
1027 | 1027 | if (!$admin_permissions) { |
1028 | 1028 | if ($field_details['visible'] == 0) { |
1029 | - $form->freeze('extra_' . $field_details['variable']); |
|
1029 | + $form->freeze('extra_'.$field_details['variable']); |
|
1030 | 1030 | } |
1031 | 1031 | } |
1032 | 1032 | break; |
@@ -1374,9 +1374,9 @@ discard block |
||
1374 | 1374 | |
1375 | 1375 | if (is_array($extraData) && array_key_exists($fieldVariable, $extraData)) { |
1376 | 1376 | |
1377 | - if (file_exists(api_get_path(SYS_UPLOAD_PATH) . $extraData[$fieldVariable])) { |
|
1377 | + if (file_exists(api_get_path(SYS_UPLOAD_PATH).$extraData[$fieldVariable])) { |
|
1378 | 1378 | $fieldTexts[] = Display::img( |
1379 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
1379 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
1380 | 1380 | $field_details['display_text'], |
1381 | 1381 | ['width' => '300'] |
1382 | 1382 | ); |
@@ -1400,7 +1400,7 @@ discard block |
||
1400 | 1400 | $allowed_picture_types = ['jpg', 'jpeg', 'png', 'gif']; |
1401 | 1401 | $form->addRule( |
1402 | 1402 | 'extra_'.$field_details['variable'], |
1403 | - get_lang('OnlyImagesAllowed') . ' ('.implode(',', $allowed_picture_types).')', |
|
1403 | + get_lang('OnlyImagesAllowed').' ('.implode(',', $allowed_picture_types).')', |
|
1404 | 1404 | 'filetype', |
1405 | 1405 | $allowed_picture_types |
1406 | 1406 | ); |
@@ -1442,10 +1442,10 @@ discard block |
||
1442 | 1442 | if (is_array($extraData) && |
1443 | 1443 | array_key_exists($fieldVariable, $extraData) |
1444 | 1444 | ) { |
1445 | - if (file_exists(api_get_path(SYS_UPLOAD_PATH) . $extraData[$fieldVariable])) { |
|
1445 | + if (file_exists(api_get_path(SYS_UPLOAD_PATH).$extraData[$fieldVariable])) { |
|
1446 | 1446 | $fieldTexts[] = Display::url( |
1447 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
1448 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
1447 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
1448 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
1449 | 1449 | array( |
1450 | 1450 | 'title' => $field_details['display_text'], |
1451 | 1451 | 'target' => '_blank' |
@@ -1495,12 +1495,12 @@ discard block |
||
1495 | 1495 | "extra_{$field_details['variable']}", |
1496 | 1496 | $field_details['display_text'] |
1497 | 1497 | ); |
1498 | - $form->applyFilter('extra_' . $field_details['variable'], 'stripslashes'); |
|
1498 | + $form->applyFilter('extra_'.$field_details['variable'], 'stripslashes'); |
|
1499 | 1499 | |
1500 | 1500 | if (!$admin_permissions) { |
1501 | 1501 | if ($field_details['visible'] == 0) { |
1502 | 1502 | $form->freeze( |
1503 | - 'extra_' . $field_details['variable'] |
|
1503 | + 'extra_'.$field_details['variable'] |
|
1504 | 1504 | ); |
1505 | 1505 | } |
1506 | 1506 | } |
@@ -1511,13 +1511,13 @@ discard block |
||
1511 | 1511 | $field_details['display_text'] |
1512 | 1512 | ); |
1513 | 1513 | $form->applyFilter( |
1514 | - 'extra_' . $field_details['variable'], |
|
1514 | + 'extra_'.$field_details['variable'], |
|
1515 | 1515 | 'stripslashes' |
1516 | 1516 | ); |
1517 | 1517 | if (!$admin_permissions) { |
1518 | 1518 | if ($field_details['visible'] == 0) { |
1519 | 1519 | $form->freeze( |
1520 | - 'extra_' . $field_details['variable'] |
|
1520 | + 'extra_'.$field_details['variable'] |
|
1521 | 1521 | ); |
1522 | 1522 | } |
1523 | 1523 | } |
@@ -1527,12 +1527,12 @@ discard block |
||
1527 | 1527 | "extra_{$field_details['variable']}", |
1528 | 1528 | $field_details['display_text'] |
1529 | 1529 | ); |
1530 | - $form->applyFilter('extra_' . $field_details['variable'], 'stripslashes'); |
|
1530 | + $form->applyFilter('extra_'.$field_details['variable'], 'stripslashes'); |
|
1531 | 1531 | |
1532 | 1532 | if (!$admin_permissions) { |
1533 | 1533 | if ($field_details['visible'] == 0) { |
1534 | 1534 | $form->freeze( |
1535 | - 'extra_' . $field_details['variable'] |
|
1535 | + 'extra_'.$field_details['variable'] |
|
1536 | 1536 | ); |
1537 | 1537 | } |
1538 | 1538 | } |
@@ -1543,13 +1543,13 @@ discard block |
||
1543 | 1543 | $field_details['display_text'] |
1544 | 1544 | ); |
1545 | 1545 | $form->applyFilter( |
1546 | - 'extra_' . $field_details['variable'], |
|
1546 | + 'extra_'.$field_details['variable'], |
|
1547 | 1547 | 'stripslashes' |
1548 | 1548 | ); |
1549 | 1549 | if (!$admin_permissions) { |
1550 | 1550 | if ($field_details['visible'] == 0) { |
1551 | 1551 | $form->freeze( |
1552 | - 'extra_' . $field_details['variable'] |
|
1552 | + 'extra_'.$field_details['variable'] |
|
1553 | 1553 | ); |
1554 | 1554 | } |
1555 | 1555 | } |
@@ -2230,19 +2230,19 @@ discard block |
||
2230 | 2230 | break; |
2231 | 2231 | } |
2232 | 2232 | |
2233 | - if (!file_exists(api_get_path(SYS_UPLOAD_PATH) . $valueData['value'])) { |
|
2233 | + if (!file_exists(api_get_path(SYS_UPLOAD_PATH).$valueData['value'])) { |
|
2234 | 2234 | break; |
2235 | 2235 | } |
2236 | 2236 | |
2237 | 2237 | $image = Display::img( |
2238 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
2238 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
2239 | 2239 | $field['display_text'], |
2240 | 2240 | array('width' => '300') |
2241 | 2241 | ); |
2242 | 2242 | |
2243 | 2243 | $displayedValue = Display::url( |
2244 | 2244 | $image, |
2245 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
2245 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
2246 | 2246 | array('target' => '_blank') |
2247 | 2247 | ); |
2248 | 2248 | break; |
@@ -2251,13 +2251,13 @@ discard block |
||
2251 | 2251 | break; |
2252 | 2252 | } |
2253 | 2253 | |
2254 | - if (!file_exists(api_get_path(SYS_UPLOAD_PATH) . $valueData['value'])) { |
|
2254 | + if (!file_exists(api_get_path(SYS_UPLOAD_PATH).$valueData['value'])) { |
|
2255 | 2255 | break; |
2256 | 2256 | } |
2257 | 2257 | |
2258 | 2258 | $displayedValue = Display::url( |
2259 | 2259 | get_lang('Download'), |
2260 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
2260 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
2261 | 2261 | array( |
2262 | 2262 | 'title' => $field['display_text'], |
2263 | 2263 | 'target' => '_blank' |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
46 | - * @return ExtraField |
|
46 | + * @return string |
|
47 | 47 | */ |
48 | 48 | public function getExtraField() |
49 | 49 | { |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * This function is used with $extraField->addElements() |
73 | 73 | * @param array $params array for the insertion into the *_field_values table |
74 | 74 | * |
75 | - * @return mixed false on empty params, void otherwise |
|
75 | + * @return false|null false on empty params, void otherwise |
|
76 | 76 | * @assert (array()) === false |
77 | 77 | */ |
78 | 78 | public function saveFieldValues($params) |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | * @param int $item_id Item ID (It could be a session_id, course_id or user_id) |
501 | 501 | * @param int $field_id Field ID (the ID from the *_field table) |
502 | 502 | * @param bool $transform Whether to transform the result to a human readable strings |
503 | - * @return mixed A structured array with the field_id and field_value, or false on error |
|
503 | + * @return string A structured array with the field_id and field_value, or false on error |
|
504 | 504 | * @assert (-1,-1) === false |
505 | 505 | */ |
506 | 506 | public function get_values_by_handler_and_field_id($item_id, $field_id, $transform = false) |
@@ -593,7 +593,7 @@ discard block |
||
593 | 593 | * @param int $item_id Item ID from the original table |
594 | 594 | * @param string $field_variable The name of the field we are looking for |
595 | 595 | * @param bool $transform |
596 | - * @param bool $allVisibility |
|
596 | + * @param bool $visibility |
|
597 | 597 | * |
598 | 598 | * @return mixed Array of results, or false on error or not found |
599 | 599 | * @assert (-1,'') === false |
@@ -720,11 +720,11 @@ discard block |
||
720 | 720 | return false; |
721 | 721 | } |
722 | 722 | |
723 | - /** |
|
724 | - * @param int $itemId |
|
725 | - * @param int $fieldId |
|
726 | - * @return array |
|
727 | - */ |
|
723 | + /** |
|
724 | + * @param int $itemId |
|
725 | + * @param int $fieldId |
|
726 | + * @return array |
|
727 | + */ |
|
728 | 728 | public function getAllValuesByItemAndField($itemId, $fieldId) |
729 | 729 | { |
730 | 730 | $fieldId = intval($fieldId); |
@@ -847,7 +847,6 @@ discard block |
||
847 | 847 | /** |
848 | 848 | * Deletes all values from an item |
849 | 849 | * @param int $itemId (session id, course id, etc) |
850 | - |
|
851 | 850 | * @assert (-1,-1) == null |
852 | 851 | */ |
853 | 852 | public function deleteValuesByItem($itemId) |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | break; |
210 | 210 | } |
211 | 211 | |
212 | - $fileName = ExtraField::FIELD_TYPE_FILE_IMAGE . "_{$params['item_id']}.png"; |
|
212 | + $fileName = ExtraField::FIELD_TYPE_FILE_IMAGE."_{$params['item_id']}.png"; |
|
213 | 213 | |
214 | 214 | if (!file_exists($fileDir)) { |
215 | 215 | mkdir($fileDir, $dirPermissions, true); |
@@ -217,11 +217,11 @@ discard block |
||
217 | 217 | |
218 | 218 | if ($value['error'] == 0) { |
219 | 219 | $imageExtraField = new Image($value['tmp_name']); |
220 | - $imageExtraField->send_image($fileDir . $fileName, -1, 'png'); |
|
220 | + $imageExtraField->send_image($fileDir.$fileName, -1, 'png'); |
|
221 | 221 | $newParams = array( |
222 | 222 | 'item_id' => $params['item_id'], |
223 | 223 | 'field_id' => $extraFieldInfo['id'], |
224 | - 'value' => $fileDirStored . $fileName, |
|
224 | + 'value' => $fileDirStored.$fileName, |
|
225 | 225 | 'comment' => $comment |
226 | 226 | ); |
227 | 227 | |
@@ -247,18 +247,18 @@ discard block |
||
247 | 247 | } |
248 | 248 | |
249 | 249 | $cleanedName = api_replace_dangerous_char($value['name']); |
250 | - $fileName = ExtraField::FIELD_TYPE_FILE . "_{$params['item_id']}_$cleanedName"; |
|
250 | + $fileName = ExtraField::FIELD_TYPE_FILE."_{$params['item_id']}_$cleanedName"; |
|
251 | 251 | if (!file_exists($fileDir)) { |
252 | 252 | mkdir($fileDir, $dirPermissions, true); |
253 | 253 | } |
254 | 254 | |
255 | 255 | if ($value['error'] == 0) { |
256 | - moveUploadedFile($value, $fileDir . $fileName); |
|
256 | + moveUploadedFile($value, $fileDir.$fileName); |
|
257 | 257 | |
258 | 258 | $new_params = array( |
259 | 259 | 'item_id' => $params['item_id'], |
260 | 260 | 'field_id' => $extraFieldInfo['id'], |
261 | - 'value' => $fileDirStored . $fileName |
|
261 | + 'value' => $fileDirStored.$fileName |
|
262 | 262 | ); |
263 | 263 | |
264 | 264 | if ($this->type !== 'session' && $this->type !== 'course') { |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | */ |
381 | 381 | if (false) { |
382 | 382 | global $app; |
383 | - switch($this->type) { |
|
383 | + switch ($this->type) { |
|
384 | 384 | case 'question': |
385 | 385 | $extraFieldValue = new ChamiloLMS\Entity\QuestionFieldValues(); |
386 | 386 | $extraFieldValue->setUserId(api_get_user_id()); |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | */ |
443 | 443 | if (false) { |
444 | 444 | global $app; |
445 | - switch($this->type) { |
|
445 | + switch ($this->type) { |
|
446 | 446 | case 'question': |
447 | 447 | $extraFieldValue = $app['orm.ems']['db_write']->getRepository('ChamiloLMS\Entity\QuestionFieldValues')->find($field_values['id']); |
448 | 448 | $extraFieldValue->setUserId(api_get_user_id()); |
@@ -13,6 +13,8 @@ discard block |
||
13 | 13 | * @param - action (string) - action type require : 'delete' or 'update' |
14 | 14 | * @param - old_path (string) - old path info stored to change |
15 | 15 | * @param - new_path (string) - new path info to substitute |
16 | + * @param string $action |
|
17 | + * @param string $old_path |
|
16 | 18 | * @desc Update the file or directory path in the document db document table |
17 | 19 | * |
18 | 20 | */ |
@@ -76,8 +78,8 @@ discard block |
||
76 | 78 | * Deletes a file or a directory |
77 | 79 | * |
78 | 80 | * @author - Hugues Peeters |
79 | - * @param $file (String) - the path of file or directory to delete |
|
80 | - * @return boolean - true if the delete succeed, false otherwise. |
|
81 | + * @param string $file (String) - the path of file or directory to delete |
|
82 | + * @return boolean|null - true if the delete succeed, false otherwise. |
|
81 | 83 | * @see - delete() uses check_name_exist() and removeDir() functions |
82 | 84 | */ |
83 | 85 | function my_delete($file) |
@@ -162,9 +164,9 @@ discard block |
||
162 | 164 | * Renames a file or a directory |
163 | 165 | * |
164 | 166 | * @author - Hugues Peeters <[email protected]> |
165 | - * @param - $file_path (string) - complete path of the file or the directory |
|
166 | - * @param - $new_file_name (string) - new name for the file or the directory |
|
167 | - * @return - boolean - true if succeed |
|
167 | + * @param string $file_path (string) - complete path of the file or the directory |
|
168 | + * @param string $new_file_name (string) - new name for the file or the directory |
|
169 | + * @return string boolean - true if succeed |
|
168 | 170 | * - boolean - false otherwise |
169 | 171 | * @see - rename() uses the check_name_exist() and php2phps() functions |
170 | 172 | */ |
@@ -327,7 +329,6 @@ discard block |
||
327 | 329 | * Calculation size of a directory |
328 | 330 | * |
329 | 331 | * @returns integer size |
330 | - * @param string $path path to size |
|
331 | 332 | * @param boolean $recursive if true , include subdir in total |
332 | 333 | */ |
333 | 334 | function dirsize($root, $recursive = true) { |
@@ -33,7 +33,9 @@ discard block |
||
33 | 33 | Database::query($query); |
34 | 34 | break; |
35 | 35 | case 'update': |
36 | - if ($new_path[0] == '.') $new_path = substr($new_path, 1); |
|
36 | + if ($new_path[0] == '.') { |
|
37 | + $new_path = substr($new_path, 1); |
|
38 | + } |
|
37 | 39 | $new_path = str_replace('//', '/', $new_path); |
38 | 40 | |
39 | 41 | // Attempt to update - tested & working for root dir |
@@ -379,7 +381,9 @@ discard block |
||
379 | 381 | chdir($path); |
380 | 382 | $handle = opendir($path); |
381 | 383 | while ($element = readdir($handle)) { |
382 | - if ($element == '.' || $element == '..') continue; |
|
384 | + if ($element == '.' || $element == '..') { |
|
385 | + continue; |
|
386 | + } |
|
383 | 387 | // Skip the current and parent directories |
384 | 388 | if (is_dir($element)) { |
385 | 389 | $dir_array[] = $path.'/'.$element; |
@@ -419,7 +423,9 @@ discard block |
||
419 | 423 | chdir($directory); |
420 | 424 | $handle = opendir($directory); |
421 | 425 | while ($element = readdir($handle)) { |
422 | - if ($element == '.' || $element == '..' || $element == '.htaccess') continue; |
|
426 | + if ($element == '.' || $element == '..' || $element == '.htaccess') { |
|
427 | + continue; |
|
428 | + } |
|
423 | 429 | // Skip the current and parent directories |
424 | 430 | if (!is_dir($element)) { |
425 | 431 | $element_array[] = $directory.'/'.$element; |
@@ -469,7 +475,9 @@ discard block |
||
469 | 475 | */ |
470 | 476 | function set_default_settings($upload_path, $filename, $filetype = 'file', $glued_table, $default_visibility = 'v') |
471 | 477 | { |
472 | - if (!$default_visibility) $default_visibility = 'v'; |
|
478 | + if (!$default_visibility) { |
|
479 | + $default_visibility = 'v'; |
|
480 | + } |
|
473 | 481 | |
474 | 482 | // Make sure path is not wrongly formed |
475 | 483 | $upload_path = !empty($upload_path) ? "/$upload_path" : ''; |
@@ -170,37 +170,37 @@ discard block |
||
170 | 170 | */ |
171 | 171 | function my_rename($file_path, $new_file_name) { |
172 | 172 | |
173 | - $save_dir = getcwd(); |
|
174 | - $path = dirname($file_path); |
|
175 | - $old_file_name = basename($file_path); |
|
176 | - $new_file_name = api_replace_dangerous_char($new_file_name); |
|
177 | - |
|
178 | - // If no extension, take the old one |
|
179 | - if ((strpos($new_file_name, '.') === false) && ($dotpos = strrpos($old_file_name, '.'))) { |
|
180 | - $new_file_name .= substr($old_file_name, $dotpos); |
|
181 | - } |
|
182 | - |
|
183 | - // Note: still possible: 'xx.yy' -rename-> '.yy' -rename-> 'zz' |
|
184 | - // This is useful for folder names, where otherwise '.' would be sticky |
|
185 | - |
|
186 | - // Extension PHP is not allowed, change to PHPS |
|
187 | - $new_file_name = php2phps($new_file_name); |
|
188 | - |
|
189 | - if ($new_file_name == $old_file_name) { |
|
190 | - return $old_file_name; |
|
191 | - } |
|
192 | - |
|
193 | - if (strtolower($new_file_name) != strtolower($old_file_name) && check_name_exist($path.'/'.$new_file_name)) { |
|
194 | - return false; |
|
195 | - } |
|
196 | - // On a Windows server, it would be better not to do the above check |
|
197 | - // because it succeeds for some new names resembling the old name. |
|
198 | - // But on Unix/Linux the check must be done because rename overwrites. |
|
199 | - |
|
200 | - chdir($path); |
|
201 | - $res = rename($old_file_name, $new_file_name) ? $new_file_name : false; |
|
202 | - chdir($save_dir); |
|
203 | - return $res; |
|
173 | + $save_dir = getcwd(); |
|
174 | + $path = dirname($file_path); |
|
175 | + $old_file_name = basename($file_path); |
|
176 | + $new_file_name = api_replace_dangerous_char($new_file_name); |
|
177 | + |
|
178 | + // If no extension, take the old one |
|
179 | + if ((strpos($new_file_name, '.') === false) && ($dotpos = strrpos($old_file_name, '.'))) { |
|
180 | + $new_file_name .= substr($old_file_name, $dotpos); |
|
181 | + } |
|
182 | + |
|
183 | + // Note: still possible: 'xx.yy' -rename-> '.yy' -rename-> 'zz' |
|
184 | + // This is useful for folder names, where otherwise '.' would be sticky |
|
185 | + |
|
186 | + // Extension PHP is not allowed, change to PHPS |
|
187 | + $new_file_name = php2phps($new_file_name); |
|
188 | + |
|
189 | + if ($new_file_name == $old_file_name) { |
|
190 | + return $old_file_name; |
|
191 | + } |
|
192 | + |
|
193 | + if (strtolower($new_file_name) != strtolower($old_file_name) && check_name_exist($path.'/'.$new_file_name)) { |
|
194 | + return false; |
|
195 | + } |
|
196 | + // On a Windows server, it would be better not to do the above check |
|
197 | + // because it succeeds for some new names resembling the old name. |
|
198 | + // But on Unix/Linux the check must be done because rename overwrites. |
|
199 | + |
|
200 | + chdir($path); |
|
201 | + $res = rename($old_file_name, $new_file_name) ? $new_file_name : false; |
|
202 | + chdir($save_dir); |
|
203 | + return $res; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -217,38 +217,38 @@ discard block |
||
217 | 217 | */ |
218 | 218 | function move($source, $target, $forceMove = false, $moveContent = false) |
219 | 219 | { |
220 | - if (check_name_exist($source)) { |
|
221 | - $file_name = basename($source); |
|
220 | + if (check_name_exist($source)) { |
|
221 | + $file_name = basename($source); |
|
222 | 222 | $isWindowsOS = api_is_windows_os(); |
223 | 223 | $canExec = function_exists('exec'); |
224 | 224 | |
225 | - /* File case */ |
|
226 | - if (is_file($source)) { |
|
227 | - if ($forceMove && !$isWindowsOS && $canExec) { |
|
228 | - exec('mv ' . $source . ' ' . $target . '/' . $file_name); |
|
229 | - } else { |
|
230 | - copy($source, $target . '/' . $file_name); |
|
231 | - unlink($source); |
|
232 | - } |
|
233 | - return true; |
|
234 | - } elseif (is_dir($source)) { |
|
235 | - /* Directory */ |
|
236 | - if ($forceMove && !$isWindowsOS && $canExec) { |
|
237 | - if ($moveContent) { |
|
238 | - $base = basename($source); |
|
239 | - exec('mv '.$source.'/* '.$target.$base.'/'); |
|
240 | - exec('rm -rf '.$source); |
|
241 | - } else { |
|
242 | - exec('mv $source $target'); |
|
243 | - } |
|
244 | - } else { |
|
245 | - copyDirTo($source, $target); |
|
246 | - } |
|
247 | - return true; |
|
248 | - } |
|
249 | - } else { |
|
250 | - return false; |
|
251 | - } |
|
225 | + /* File case */ |
|
226 | + if (is_file($source)) { |
|
227 | + if ($forceMove && !$isWindowsOS && $canExec) { |
|
228 | + exec('mv ' . $source . ' ' . $target . '/' . $file_name); |
|
229 | + } else { |
|
230 | + copy($source, $target . '/' . $file_name); |
|
231 | + unlink($source); |
|
232 | + } |
|
233 | + return true; |
|
234 | + } elseif (is_dir($source)) { |
|
235 | + /* Directory */ |
|
236 | + if ($forceMove && !$isWindowsOS && $canExec) { |
|
237 | + if ($moveContent) { |
|
238 | + $base = basename($source); |
|
239 | + exec('mv '.$source.'/* '.$target.$base.'/'); |
|
240 | + exec('rm -rf '.$source); |
|
241 | + } else { |
|
242 | + exec('mv $source $target'); |
|
243 | + } |
|
244 | + } else { |
|
245 | + copyDirTo($source, $target); |
|
246 | + } |
|
247 | + return true; |
|
248 | + } |
|
249 | + } else { |
|
250 | + return false; |
|
251 | + } |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | /** |
@@ -279,8 +279,8 @@ discard block |
||
279 | 279 | * @param string $filename filename |
280 | 280 | */ |
281 | 281 | function getextension($filename) { |
282 | - $bouts = explode('.', $filename); |
|
283 | - return array(array_pop($bouts), implode('.', $bouts)); |
|
282 | + $bouts = explode('.', $filename); |
|
283 | + return array(array_pop($bouts), implode('.', $bouts)); |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | /** |
@@ -291,19 +291,19 @@ discard block |
||
291 | 291 | * @param boolean $recursive if true , include subdir in total |
292 | 292 | */ |
293 | 293 | function dirsize($root, $recursive = true) { |
294 | - $dir = @opendir($root); |
|
295 | - $size = 0; |
|
296 | - while ($file = @readdir($dir)) { |
|
297 | - if (!in_array($file, array('.', '..'))) { |
|
298 | - if (is_dir($root.'/'.$file)) { |
|
299 | - $size += $recursive ? dirsize($root.'/'.$file) : 0; |
|
300 | - } else { |
|
301 | - $size += @filesize($root.'/'.$file); |
|
302 | - } |
|
303 | - } |
|
304 | - } |
|
305 | - @closedir($dir); |
|
306 | - return $size; |
|
294 | + $dir = @opendir($root); |
|
295 | + $size = 0; |
|
296 | + while ($file = @readdir($dir)) { |
|
297 | + if (!in_array($file, array('.', '..'))) { |
|
298 | + if (is_dir($root.'/'.$file)) { |
|
299 | + $size += $recursive ? dirsize($root.'/'.$file) : 0; |
|
300 | + } else { |
|
301 | + $size += @filesize($root.'/'.$file); |
|
302 | + } |
|
303 | + } |
|
304 | + } |
|
305 | + @closedir($dir); |
|
306 | + return $size; |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | /* CLASS FileManager */ |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | */ |
323 | 323 | class FileManager |
324 | 324 | { |
325 | - /** |
|
325 | + /** |
|
326 | 326 | Returns a list of all directories, except the base dir, |
327 | 327 | of the current course. This function uses recursion. |
328 | 328 | |
@@ -330,131 +330,130 @@ discard block |
||
330 | 330 | |
331 | 331 | @author Roan Embrechts |
332 | 332 | @version 1.0.1 |
333 | - */ |
|
334 | - function list_all_directories($path) |
|
333 | + */ |
|
334 | + function list_all_directories($path) |
|
335 | 335 | { |
336 | - $result_array = array(); |
|
337 | - if (is_dir($path)) { |
|
338 | - $save_dir = getcwd(); |
|
339 | - chdir($path); |
|
340 | - $handle = opendir($path); |
|
341 | - while ($element = readdir($handle)) { |
|
342 | - if ($element == '.' || $element == '..') continue; |
|
336 | + $result_array = array(); |
|
337 | + if (is_dir($path)) { |
|
338 | + $save_dir = getcwd(); |
|
339 | + chdir($path); |
|
340 | + $handle = opendir($path); |
|
341 | + while ($element = readdir($handle)) { |
|
342 | + if ($element == '.' || $element == '..') continue; |
|
343 | 343 | // Skip the current and parent directories |
344 | - if (is_dir($element)) { |
|
345 | - $dir_array[] = $path.'/'.$element; |
|
346 | - } |
|
347 | - } |
|
348 | - closedir($handle); |
|
349 | - // Recursive operation if subdirectories exist |
|
350 | - $dir_number = sizeof($dir_array); |
|
351 | - if ($dir_number > 0) { |
|
352 | - for ($i = 0 ; $i < $dir_number ; $i++) { |
|
353 | - $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
|
354 | - if (is_array($dir_array) && is_array($sub_dir_array)) { |
|
355 | - $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
356 | - } |
|
357 | - } |
|
358 | - } |
|
359 | - $result_array = $dir_array; |
|
360 | - chdir($save_dir) ; |
|
361 | - } |
|
362 | - return $result_array ; |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
344 | + if (is_dir($element)) { |
|
345 | + $dir_array[] = $path.'/'.$element; |
|
346 | + } |
|
347 | + } |
|
348 | + closedir($handle); |
|
349 | + // Recursive operation if subdirectories exist |
|
350 | + $dir_number = sizeof($dir_array); |
|
351 | + if ($dir_number > 0) { |
|
352 | + for ($i = 0 ; $i < $dir_number ; $i++) { |
|
353 | + $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
|
354 | + if (is_array($dir_array) && is_array($sub_dir_array)) { |
|
355 | + $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
356 | + } |
|
357 | + } |
|
358 | + } |
|
359 | + $result_array = $dir_array; |
|
360 | + chdir($save_dir) ; |
|
361 | + } |
|
362 | + return $result_array ; |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | 366 | This function receives a list of directories. |
367 | 367 | It returns a list of all files in these directories |
368 | 368 | |
369 | 369 | @author Roan Embrechts |
370 | 370 | @version 1.0 |
371 | - */ |
|
372 | - function list_all_files($dir_array) |
|
371 | + */ |
|
372 | + function list_all_files($dir_array) |
|
373 | 373 | { |
374 | - $element_array = array(); |
|
375 | - if (is_dir($dir_array)) { |
|
376 | - |
|
377 | - $save_dir = getcwd(); |
|
378 | - foreach ($dir_array as $directory) { |
|
379 | - chdir($directory); |
|
380 | - $handle = opendir($directory); |
|
381 | - while ($element = readdir($handle)) { |
|
382 | - if ($element == '.' || $element == '..' || $element == '.htaccess') continue; |
|
374 | + $element_array = array(); |
|
375 | + if (is_dir($dir_array)) { |
|
376 | + |
|
377 | + $save_dir = getcwd(); |
|
378 | + foreach ($dir_array as $directory) { |
|
379 | + chdir($directory); |
|
380 | + $handle = opendir($directory); |
|
381 | + while ($element = readdir($handle)) { |
|
382 | + if ($element == '.' || $element == '..' || $element == '.htaccess') continue; |
|
383 | 383 | // Skip the current and parent directories |
384 | - if (!is_dir($element)) { |
|
385 | - $element_array[] = $directory.'/'.$element; |
|
386 | - } |
|
387 | - } |
|
388 | - closedir($handle); |
|
389 | - chdir('..'); |
|
390 | - chdir($save_dir); |
|
391 | - } |
|
392 | - } |
|
393 | - |
|
394 | - return $element_array; |
|
395 | - } |
|
396 | - |
|
397 | - /** |
|
384 | + if (!is_dir($element)) { |
|
385 | + $element_array[] = $directory.'/'.$element; |
|
386 | + } |
|
387 | + } |
|
388 | + closedir($handle); |
|
389 | + chdir('..'); |
|
390 | + chdir($save_dir); |
|
391 | + } |
|
392 | + } |
|
393 | + |
|
394 | + return $element_array; |
|
395 | + } |
|
396 | + |
|
397 | + /** |
|
398 | 398 | Loads contents of file $filename into memory and returns them as a string. |
399 | 399 | Function kept for compatibility with older PHP versions. |
400 | 400 | Function is binary safe (is needed on Windows) |
401 | - */ |
|
402 | - function compat_load_file($file_name) |
|
401 | + */ |
|
402 | + function compat_load_file($file_name) |
|
403 | 403 | { |
404 | - $buffer = ''; |
|
405 | - if (file_exists($file_name)) { |
|
406 | - $fp = fopen($file_name, 'rb'); |
|
407 | - $buffer = fread ($fp, filesize($file_name)); |
|
408 | - fclose ($fp); |
|
409 | - } |
|
410 | - return $buffer; |
|
411 | - } |
|
412 | - |
|
413 | - /** |
|
414 | - * Adds file/folder to document table in database |
|
415 | - * improvement from set_default_settings (see below): |
|
416 | - * take all info from function parameters |
|
417 | - * no global variables needed |
|
418 | - * |
|
419 | - * NOTE $glued_table should already have backticks around it |
|
420 | - * (get it from the database library, and it is done automatically) |
|
421 | - * |
|
422 | - * @param path, filename, filetype, |
|
423 | - $glued_table, default_visibility |
|
404 | + $buffer = ''; |
|
405 | + if (file_exists($file_name)) { |
|
406 | + $fp = fopen($file_name, 'rb'); |
|
407 | + $buffer = fread ($fp, filesize($file_name)); |
|
408 | + fclose ($fp); |
|
409 | + } |
|
410 | + return $buffer; |
|
411 | + } |
|
424 | 412 | |
425 | - * action: Adds an entry to the document table with the default settings. |
|
426 | - * @author Olivier Cauberghe <[email protected]> |
|
427 | - * @author Roan Embrechts |
|
428 | - * @version 1.2 |
|
429 | - */ |
|
430 | - function set_default_settings($upload_path, $filename, $filetype = 'file', $glued_table, $default_visibility = 'v') |
|
413 | + /** |
|
414 | + * Adds file/folder to document table in database |
|
415 | + * improvement from set_default_settings (see below): |
|
416 | + * take all info from function parameters |
|
417 | + * no global variables needed |
|
418 | + * |
|
419 | + * NOTE $glued_table should already have backticks around it |
|
420 | + * (get it from the database library, and it is done automatically) |
|
421 | + * |
|
422 | + * @param path, filename, filetype, |
|
423 | + $glued_table, default_visibility |
|
424 | + * action: Adds an entry to the document table with the default settings. |
|
425 | + * @author Olivier Cauberghe <[email protected]> |
|
426 | + * @author Roan Embrechts |
|
427 | + * @version 1.2 |
|
428 | + */ |
|
429 | + function set_default_settings($upload_path, $filename, $filetype = 'file', $glued_table, $default_visibility = 'v') |
|
431 | 430 | { |
432 | - if (!$default_visibility) $default_visibility = 'v'; |
|
433 | - |
|
434 | - // Make sure path is not wrongly formed |
|
435 | - $upload_path = !empty($upload_path) ? "/$upload_path" : ''; |
|
436 | - |
|
437 | - $endchar = substr($filename, strlen($filename) - 1, 1); |
|
438 | - if ($endchar == "\\" || $endchar == '/') { |
|
439 | - $filename = substr($filename, 0, strlen($filename) - 1); |
|
440 | - } |
|
441 | - |
|
442 | - $full_file_name = $upload_path.'/'.$filename; |
|
443 | - $full_file_name = str_replace("//", '/', $full_file_name); |
|
444 | - |
|
445 | - $sql_query = "SELECT count(*) as number_existing FROM $glued_table WHERE path='$full_file_name'"; |
|
446 | - $sql_result = Database::query($sql_query); |
|
447 | - $result = Database::fetch_array($sql_result); |
|
448 | - // Determine which query to execute |
|
449 | - if ($result['number_existing'] > 0) { |
|
450 | - // Entry exists, update |
|
451 | - $query = "UPDATE $glued_table SET path='$full_file_name',visibility='$default_visibility', filetype='$filetype' |
|
431 | + if (!$default_visibility) $default_visibility = 'v'; |
|
432 | + |
|
433 | + // Make sure path is not wrongly formed |
|
434 | + $upload_path = !empty($upload_path) ? "/$upload_path" : ''; |
|
435 | + |
|
436 | + $endchar = substr($filename, strlen($filename) - 1, 1); |
|
437 | + if ($endchar == "\\" || $endchar == '/') { |
|
438 | + $filename = substr($filename, 0, strlen($filename) - 1); |
|
439 | + } |
|
440 | + |
|
441 | + $full_file_name = $upload_path.'/'.$filename; |
|
442 | + $full_file_name = str_replace("//", '/', $full_file_name); |
|
443 | + |
|
444 | + $sql_query = "SELECT count(*) as number_existing FROM $glued_table WHERE path='$full_file_name'"; |
|
445 | + $sql_result = Database::query($sql_query); |
|
446 | + $result = Database::fetch_array($sql_result); |
|
447 | + // Determine which query to execute |
|
448 | + if ($result['number_existing'] > 0) { |
|
449 | + // Entry exists, update |
|
450 | + $query = "UPDATE $glued_table SET path='$full_file_name',visibility='$default_visibility', filetype='$filetype' |
|
452 | 451 | WHERE path='$full_file_name'"; |
453 | - } else { |
|
454 | - // No entry exists, create new one |
|
455 | - $query = "INSERT INTO $glued_table (path,visibility,filetype) |
|
452 | + } else { |
|
453 | + // No entry exists, create new one |
|
454 | + $query = "INSERT INTO $glued_table (path,visibility,filetype) |
|
456 | 455 | VALUES ('$full_file_name','$default_visibility','$filetype')"; |
457 | - } |
|
458 | - Database::query($query); |
|
459 | - } |
|
456 | + } |
|
457 | + Database::query($query); |
|
458 | + } |
|
460 | 459 | } |
@@ -225,9 +225,9 @@ discard block |
||
225 | 225 | /* File case */ |
226 | 226 | if (is_file($source)) { |
227 | 227 | if ($forceMove && !$isWindowsOS && $canExec) { |
228 | - exec('mv ' . $source . ' ' . $target . '/' . $file_name); |
|
228 | + exec('mv '.$source.' '.$target.'/'.$file_name); |
|
229 | 229 | } else { |
230 | - copy($source, $target . '/' . $file_name); |
|
230 | + copy($source, $target.'/'.$file_name); |
|
231 | 231 | unlink($source); |
232 | 232 | } |
233 | 233 | return true; |
@@ -349,17 +349,17 @@ discard block |
||
349 | 349 | // Recursive operation if subdirectories exist |
350 | 350 | $dir_number = sizeof($dir_array); |
351 | 351 | if ($dir_number > 0) { |
352 | - for ($i = 0 ; $i < $dir_number ; $i++) { |
|
352 | + for ($i = 0; $i < $dir_number; $i++) { |
|
353 | 353 | $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
354 | 354 | if (is_array($dir_array) && is_array($sub_dir_array)) { |
355 | - $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
355 | + $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
356 | 356 | } |
357 | 357 | } |
358 | 358 | } |
359 | - $result_array = $dir_array; |
|
360 | - chdir($save_dir) ; |
|
359 | + $result_array = $dir_array; |
|
360 | + chdir($save_dir); |
|
361 | 361 | } |
362 | - return $result_array ; |
|
362 | + return $result_array; |
|
363 | 363 | } |
364 | 364 | |
365 | 365 | /** |
@@ -404,8 +404,8 @@ discard block |
||
404 | 404 | $buffer = ''; |
405 | 405 | if (file_exists($file_name)) { |
406 | 406 | $fp = fopen($file_name, 'rb'); |
407 | - $buffer = fread ($fp, filesize($file_name)); |
|
408 | - fclose ($fp); |
|
407 | + $buffer = fread($fp, filesize($file_name)); |
|
408 | + fclose($fp); |
|
409 | 409 | } |
410 | 410 | return $buffer; |
411 | 411 | } |
@@ -17,6 +17,7 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @author - Hugues Peeters <[email protected]> |
19 | 19 | * @param - file_name (string) name of a file |
20 | + * @param string $file_name |
|
20 | 21 | * @return - the filenam phps'ized |
21 | 22 | */ |
22 | 23 | function php2phps($file_name) { |
@@ -73,7 +74,7 @@ discard block |
||
73 | 74 | * Returns the name without extension, used for the title |
74 | 75 | * |
75 | 76 | * @param string $name |
76 | - * @return name without the extension |
|
77 | + * @return string without the extension |
|
77 | 78 | */ |
78 | 79 | function get_document_title($name) { |
79 | 80 | // If they upload .htaccess... |
@@ -86,7 +87,7 @@ discard block |
||
86 | 87 | * This function checks if the upload succeeded |
87 | 88 | * |
88 | 89 | * @param array $uploaded_file ($_FILES) |
89 | - * @return true if upload succeeded |
|
90 | + * @return boolean if upload succeeded |
|
90 | 91 | */ |
91 | 92 | function process_uploaded_file($uploaded_file, $show_output = true) |
92 | 93 | { |
@@ -698,6 +699,8 @@ discard block |
||
698 | 699 | * @param - dir (string) - Path of the directory |
699 | 700 | * whe the file should be added |
700 | 701 | * @param - max_dir_space (int) - maximum size of the diretory in byte |
702 | + * @param string $dir |
|
703 | + * @param integer $max_dir_space |
|
701 | 704 | * @return - boolean true if there is enough space, |
702 | 705 | * boolean false otherwise |
703 | 706 | * |
@@ -1022,7 +1025,7 @@ discard block |
||
1022 | 1025 | * @param array $courseInfo |
1023 | 1026 | * @param array $userInfo |
1024 | 1027 | * @param array $uploaded_file - follows the $_FILES Structure |
1025 | - * @param string $upload_path - destination of the upload. |
|
1028 | + * @param string $uploadPath - destination of the upload. |
|
1026 | 1029 | * This path is to append to $base_work_dir |
1027 | 1030 | * @param string $base_work_dir - base working directory of the module |
1028 | 1031 | * @param int $maxFilledSpace - amount of bytes to not exceed in the base |
@@ -1201,7 +1204,7 @@ discard block |
||
1201 | 1204 | * @param bool $save_visibility |
1202 | 1205 | * @param int $group_id |
1203 | 1206 | * @param int $session_id Session ID, if any |
1204 | - * @return int id if inserted document |
|
1207 | + * @return string|false id if inserted document |
|
1205 | 1208 | */ |
1206 | 1209 | function add_document( |
1207 | 1210 | $_course, |
@@ -1337,7 +1340,7 @@ discard block |
||
1337 | 1340 | * |
1338 | 1341 | * @author Olivier Cauberghe <[email protected]> |
1339 | 1342 | * @param path+filename eg: /main/document/document.php |
1340 | - * @return The directory depth |
|
1343 | + * @return integer directory depth |
|
1341 | 1344 | */ |
1342 | 1345 | function get_levels($filename) { |
1343 | 1346 | $levels = explode('/', $filename); |
@@ -1354,6 +1357,7 @@ discard block |
||
1354 | 1357 | * @author Olivier Cauberghe <[email protected]> |
1355 | 1358 | * @param path,filename |
1356 | 1359 | * action: Adds an entry to the document table with the default settings. |
1360 | + * @param string $upload_path |
|
1357 | 1361 | */ |
1358 | 1362 | function set_default_settings($upload_path, $filename, $filetype = 'file') |
1359 | 1363 | { |
@@ -1778,6 +1782,7 @@ discard block |
||
1778 | 1782 | |
1779 | 1783 | @author Roan Embrechts |
1780 | 1784 | @version 0.6 |
1785 | + * @param string $buffer |
|
1781 | 1786 | */ |
1782 | 1787 | function api_replace_links_in_string($upload_path, $buffer) { |
1783 | 1788 | // Search for hyperlinks |
@@ -2013,7 +2018,6 @@ discard block |
||
2013 | 2018 | * @param int $groupId |
2014 | 2019 | * @param bool $output |
2015 | 2020 | * @param array $parent |
2016 | - * @param string $uploadPath |
|
2017 | 2021 | * |
2018 | 2022 | */ |
2019 | 2023 | function add_all_documents_in_folder_to_database( |
@@ -993,7 +993,9 @@ |
||
993 | 993 | if ($file != '.' && $file != '..') { |
994 | 994 | |
995 | 995 | $filetype = 'file'; |
996 | - if (is_dir($base_work_dir.$upload_path.'/'.$file)) $filetype = 'folder'; |
|
996 | + if (is_dir($base_work_dir.$upload_path.'/'.$file)) { |
|
997 | + $filetype = 'folder'; |
|
998 | + } |
|
997 | 999 | |
998 | 1000 | $safe_file = api_replace_dangerous_char($file, 'strict'); |
999 | 1001 | @rename($base_work_dir.$upload_path.'/'.$file,$base_work_dir.$upload_path.'/'.$safe_file); |
@@ -63,10 +63,10 @@ discard block |
||
63 | 63 | $name_no_ext = substr($name, 0, strlen($name) - strlen(strstr($name, $ext))); |
64 | 64 | $n = 0; |
65 | 65 | $unique = ''; |
66 | - while (file_exists($path . $name_no_ext . $unique . $ext)) { |
|
67 | - $unique = '_' . ++$n; |
|
66 | + while (file_exists($path.$name_no_ext.$unique.$ext)) { |
|
67 | + $unique = '_'.++$n; |
|
68 | 68 | } |
69 | - return $name_no_ext . $unique . $ext; |
|
69 | + return $name_no_ext.$unique.$ext; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | // Not used at the moment, but could be handy if we want to limit the size of an upload (e.g. image upload in html editor). |
106 | 106 | $max_file_size = intval($_POST['MAX_FILE_SIZE']); |
107 | 107 | if ($show_output) { |
108 | - Display::display_error_message(get_lang('UplExceedMaxPostSize'). format_file_size($max_file_size)); |
|
108 | + Display::display_error_message(get_lang('UplExceedMaxPostSize').format_file_size($max_file_size)); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | return false; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | case 4: |
120 | 120 | // No file was uploaded. |
121 | 121 | if ($show_output) { |
122 | - Display::display_error_message(get_lang('UplNoFileUploaded').' '. get_lang('UplSelectFileFirst')); |
|
122 | + Display::display_error_message(get_lang('UplNoFileUploaded').' '.get_lang('UplSelectFileFirst')); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | return false; |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | // Display success message with extra info to user |
460 | 460 | if ($output) { |
461 | 461 | Display::display_confirmation_message( |
462 | - get_lang('UplUploadSucceeded') . '<br /> ' . $documentTitle . ' ' . get_lang('UplFileOverwritten'), |
|
462 | + get_lang('UplUploadSucceeded').'<br /> '.$documentTitle.' '.get_lang('UplFileOverwritten'), |
|
463 | 463 | false |
464 | 464 | ); |
465 | 465 | } |
@@ -583,7 +583,7 @@ discard block |
||
583 | 583 | // Display success message to user |
584 | 584 | if ($output) { |
585 | 585 | Display::display_confirmation_message( |
586 | - get_lang('UplUploadSucceeded') . '<br />' . get_lang('UplFileSavedAs') .' '.$documentTitle, |
|
586 | + get_lang('UplUploadSucceeded').'<br />'.get_lang('UplFileSavedAs').' '.$documentTitle, |
|
587 | 587 | false |
588 | 588 | ); |
589 | 589 | } |
@@ -730,12 +730,12 @@ discard block |
||
730 | 730 | function dir_total_space($dir_path) |
731 | 731 | { |
732 | 732 | $save_dir = getcwd(); |
733 | - chdir($dir_path) ; |
|
733 | + chdir($dir_path); |
|
734 | 734 | $handle = opendir($dir_path); |
735 | 735 | $sumSize = 0; |
736 | 736 | $dirList = array(); |
737 | 737 | while ($element = readdir($handle)) { |
738 | - if ( $element == '.' || $element == '..') { |
|
738 | + if ($element == '.' || $element == '..') { |
|
739 | 739 | continue; // Skip the current and parent directories |
740 | 740 | } |
741 | 741 | if (is_file($element)) { |
@@ -746,11 +746,11 @@ discard block |
||
746 | 746 | } |
747 | 747 | } |
748 | 748 | |
749 | - closedir($handle) ; |
|
749 | + closedir($handle); |
|
750 | 750 | |
751 | 751 | if (sizeof($dirList) > 0) { |
752 | 752 | foreach ($dirList as $j) { |
753 | - $sizeDir = dir_total_space($j); // Recursivity |
|
753 | + $sizeDir = dir_total_space($j); // Recursivity |
|
754 | 754 | $sumSize += $sizeDir; |
755 | 755 | } |
756 | 756 | } |
@@ -784,63 +784,63 @@ discard block |
||
784 | 784 | |
785 | 785 | static $mime_type = array(); |
786 | 786 | |
787 | - $mime_type[] = 'application/msword'; $extension[] = '.doc'; |
|
788 | - $mime_type[] = 'application/rtf'; $extension[] = '.rtf'; |
|
789 | - $mime_type[] = 'application/vnd.ms-powerpoint'; $extension[] = '.ppt'; |
|
790 | - $mime_type[] = 'application/vnd.ms-excel'; $extension[] = '.xls'; |
|
791 | - $mime_type[] = 'application/pdf'; $extension[] = '.pdf'; |
|
792 | - $mime_type[] = 'application/postscript'; $extension[] = '.ps'; |
|
793 | - $mime_type[] = 'application/mac-binhex40'; $extension[] = '.hqx'; |
|
794 | - $mime_type[] = 'application/x-gzip'; $extension[] = 'tar.gz'; |
|
795 | - $mime_type[] = 'application/x-shockwave-flash'; $extension[] = '.swf'; |
|
796 | - $mime_type[] = 'application/x-stuffit'; $extension[] = '.sit'; |
|
797 | - $mime_type[] = 'application/x-tar'; $extension[] = '.tar'; |
|
798 | - $mime_type[] = 'application/zip'; $extension[] = '.zip'; |
|
799 | - $mime_type[] = 'application/x-tar'; $extension[] = '.tar'; |
|
800 | - $mime_type[] = 'text/html'; $extension[] = '.html'; |
|
801 | - $mime_type[] = 'text/plain'; $extension[] = '.txt'; |
|
802 | - $mime_type[] = 'text/rtf'; $extension[] = '.rtf'; |
|
803 | - $mime_type[] = 'img/gif'; $extension[] = '.gif'; |
|
804 | - $mime_type[] = 'img/jpeg'; $extension[] = '.jpg'; |
|
805 | - $mime_type[] = 'img/png'; $extension[] = '.png'; |
|
806 | - $mime_type[] = 'audio/midi'; $extension[] = '.mid'; |
|
807 | - $mime_type[] = 'audio/mpeg'; $extension[] = '.mp3'; |
|
808 | - $mime_type[] = 'audio/x-aiff'; $extension[] = '.aif'; |
|
809 | - $mime_type[] = 'audio/x-pn-realaudio'; $extension[] = '.rm'; |
|
810 | - $mime_type[] = 'audio/x-pn-realaudio-plugin'; $extension[] = '.rpm'; |
|
811 | - $mime_type[] = 'audio/x-wav'; $extension[] = '.wav'; |
|
812 | - $mime_type[] = 'video/mpeg'; $extension[] = '.mpg'; |
|
813 | - $mime_type[] = 'video/mpeg4-generic'; $extension[] = '.mp4'; |
|
814 | - $mime_type[] = 'video/quicktime'; $extension[] = '.mov'; |
|
815 | - $mime_type[] = 'video/x-msvideo'; $extension[] = '.avi'; |
|
816 | - |
|
817 | - $mime_type[] = 'video/x-ms-wmv'; $extension[] = '.wmv'; |
|
818 | - $mime_type[] = 'video/x-flv'; $extension[] = '.flv'; |
|
819 | - $mime_type[] = 'image/svg+xml'; $extension[] = '.svg'; |
|
820 | - $mime_type[] = 'image/svg+xml'; $extension[] = '.svgz'; |
|
821 | - $mime_type[] = 'video/ogg'; $extension[] = '.ogv'; |
|
822 | - $mime_type[] = 'audio/ogg'; $extension[] = '.oga'; |
|
823 | - $mime_type[] = 'application/ogg'; $extension[] = '.ogg'; |
|
824 | - $mime_type[] = 'application/ogg'; $extension[] = '.ogx'; |
|
825 | - $mime_type[] = 'application/x-freemind'; $extension[] = '.mm'; |
|
826 | - |
|
827 | - $mime_type[] = 'application/vnd.ms-word.document.macroEnabled.12'; $extension[] = '.docm'; |
|
828 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; $extension[] = '.docx'; |
|
829 | - $mime_type[] = 'application/vnd.ms-word.template.macroEnabled.12'; $extension[] = '.dotm'; |
|
830 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.template'; $extension[] = '.dotx'; |
|
831 | - $mime_type[] = 'application/vnd.ms-powerpoint.template.macroEnabled.12'; $extension[] = '.potm'; |
|
832 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.template'; $extension[] = '.potx'; |
|
833 | - $mime_type[] = 'application/vnd.ms-powerpoint.addin.macroEnabled.12'; $extension[] = '.ppam'; |
|
834 | - $mime_type[] = 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12'; $extension[] = '.ppsm'; |
|
835 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.slideshow'; $extension[] = '.ppsx'; |
|
836 | - $mime_type[] = 'application/vnd.ms-powerpoint.presentation.macroEnabled.12'; $extension[] = '.pptm'; |
|
837 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'; $extension[] = '.pptx'; |
|
838 | - $mime_type[] = 'application/vnd.ms-excel.addin.macroEnabled.12'; $extension[] = '.xlam'; |
|
839 | - $mime_type[] = 'application/vnd.ms-excel.sheet.binary.macroEnabled.12'; $extension[] = '.xlsb'; |
|
840 | - $mime_type[] = 'application/vnd.ms-excel.sheet.macroEnabled.12'; $extension[] = '.xlsm'; |
|
841 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; $extension[] = '.xlsx'; |
|
842 | - $mime_type[] = 'application/vnd.ms-excel.template.macroEnabled.12'; $extension[] = '.xltm'; |
|
843 | - $mime_type[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.template'; $extension[] = '.xltx'; |
|
787 | + $mime_type[] = 'application/msword'; $extension[] = '.doc'; |
|
788 | + $mime_type[] = 'application/rtf'; $extension[] = '.rtf'; |
|
789 | + $mime_type[] = 'application/vnd.ms-powerpoint'; $extension[] = '.ppt'; |
|
790 | + $mime_type[] = 'application/vnd.ms-excel'; $extension[] = '.xls'; |
|
791 | + $mime_type[] = 'application/pdf'; $extension[] = '.pdf'; |
|
792 | + $mime_type[] = 'application/postscript'; $extension[] = '.ps'; |
|
793 | + $mime_type[] = 'application/mac-binhex40'; $extension[] = '.hqx'; |
|
794 | + $mime_type[] = 'application/x-gzip'; $extension[] = 'tar.gz'; |
|
795 | + $mime_type[] = 'application/x-shockwave-flash'; $extension[] = '.swf'; |
|
796 | + $mime_type[] = 'application/x-stuffit'; $extension[] = '.sit'; |
|
797 | + $mime_type[] = 'application/x-tar'; $extension[] = '.tar'; |
|
798 | + $mime_type[] = 'application/zip'; $extension[] = '.zip'; |
|
799 | + $mime_type[] = 'application/x-tar'; $extension[] = '.tar'; |
|
800 | + $mime_type[] = 'text/html'; $extension[] = '.html'; |
|
801 | + $mime_type[] = 'text/plain'; $extension[] = '.txt'; |
|
802 | + $mime_type[] = 'text/rtf'; $extension[] = '.rtf'; |
|
803 | + $mime_type[] = 'img/gif'; $extension[] = '.gif'; |
|
804 | + $mime_type[] = 'img/jpeg'; $extension[] = '.jpg'; |
|
805 | + $mime_type[] = 'img/png'; $extension[] = '.png'; |
|
806 | + $mime_type[] = 'audio/midi'; $extension[] = '.mid'; |
|
807 | + $mime_type[] = 'audio/mpeg'; $extension[] = '.mp3'; |
|
808 | + $mime_type[] = 'audio/x-aiff'; $extension[] = '.aif'; |
|
809 | + $mime_type[] = 'audio/x-pn-realaudio'; $extension[] = '.rm'; |
|
810 | + $mime_type[] = 'audio/x-pn-realaudio-plugin'; $extension[] = '.rpm'; |
|
811 | + $mime_type[] = 'audio/x-wav'; $extension[] = '.wav'; |
|
812 | + $mime_type[] = 'video/mpeg'; $extension[] = '.mpg'; |
|
813 | + $mime_type[] = 'video/mpeg4-generic'; $extension[] = '.mp4'; |
|
814 | + $mime_type[] = 'video/quicktime'; $extension[] = '.mov'; |
|
815 | + $mime_type[] = 'video/x-msvideo'; $extension[] = '.avi'; |
|
816 | + |
|
817 | + $mime_type[] = 'video/x-ms-wmv'; $extension[] = '.wmv'; |
|
818 | + $mime_type[] = 'video/x-flv'; $extension[] = '.flv'; |
|
819 | + $mime_type[] = 'image/svg+xml'; $extension[] = '.svg'; |
|
820 | + $mime_type[] = 'image/svg+xml'; $extension[] = '.svgz'; |
|
821 | + $mime_type[] = 'video/ogg'; $extension[] = '.ogv'; |
|
822 | + $mime_type[] = 'audio/ogg'; $extension[] = '.oga'; |
|
823 | + $mime_type[] = 'application/ogg'; $extension[] = '.ogg'; |
|
824 | + $mime_type[] = 'application/ogg'; $extension[] = '.ogx'; |
|
825 | + $mime_type[] = 'application/x-freemind'; $extension[] = '.mm'; |
|
826 | + |
|
827 | + $mime_type[] = 'application/vnd.ms-word.document.macroEnabled.12'; $extension[] = '.docm'; |
|
828 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; $extension[] = '.docx'; |
|
829 | + $mime_type[] = 'application/vnd.ms-word.template.macroEnabled.12'; $extension[] = '.dotm'; |
|
830 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.template'; $extension[] = '.dotx'; |
|
831 | + $mime_type[] = 'application/vnd.ms-powerpoint.template.macroEnabled.12'; $extension[] = '.potm'; |
|
832 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.template'; $extension[] = '.potx'; |
|
833 | + $mime_type[] = 'application/vnd.ms-powerpoint.addin.macroEnabled.12'; $extension[] = '.ppam'; |
|
834 | + $mime_type[] = 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12'; $extension[] = '.ppsm'; |
|
835 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.slideshow'; $extension[] = '.ppsx'; |
|
836 | + $mime_type[] = 'application/vnd.ms-powerpoint.presentation.macroEnabled.12'; $extension[] = '.pptm'; |
|
837 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'; $extension[] = '.pptx'; |
|
838 | + $mime_type[] = 'application/vnd.ms-excel.addin.macroEnabled.12'; $extension[] = '.xlam'; |
|
839 | + $mime_type[] = 'application/vnd.ms-excel.sheet.binary.macroEnabled.12'; $extension[] = '.xlsb'; |
|
840 | + $mime_type[] = 'application/vnd.ms-excel.sheet.macroEnabled.12'; $extension[] = '.xlsm'; |
|
841 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; $extension[] = '.xlsx'; |
|
842 | + $mime_type[] = 'application/vnd.ms-excel.template.macroEnabled.12'; $extension[] = '.xltm'; |
|
843 | + $mime_type[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.template'; $extension[] = '.xltx'; |
|
844 | 844 | |
845 | 845 | // Test on PC (files with no extension get application/octet-stream) |
846 | 846 | //$mime_type[] = 'application/octet-stream'; $extension[] = '.ext'; |
@@ -849,7 +849,7 @@ discard block |
||
849 | 849 | |
850 | 850 | foreach ($mime_type as $key => & $type) { |
851 | 851 | if ($type == $file_type) { |
852 | - $file_name .= $extension[$key]; |
|
852 | + $file_name .= $extension[$key]; |
|
853 | 853 | break; |
854 | 854 | } |
855 | 855 | } |
@@ -957,12 +957,12 @@ discard block |
||
957 | 957 | } |
958 | 958 | |
959 | 959 | // It happens on Linux that $upload_path sometimes doesn't start with '/' |
960 | - if ($upload_path[0] != '/' && substr($base_work_dir,-1,1) != '/') { |
|
960 | + if ($upload_path[0] != '/' && substr($base_work_dir, -1, 1) != '/') { |
|
961 | 961 | $upload_path = '/'.$upload_path; |
962 | 962 | } |
963 | 963 | |
964 | 964 | if ($upload_path[strlen($upload_path) - 1] == '/') { |
965 | - $upload_path=substr($upload_path, 0, -1); |
|
965 | + $upload_path = substr($upload_path, 0, -1); |
|
966 | 966 | } |
967 | 967 | |
968 | 968 | /* Uncompressing phase */ |
@@ -974,15 +974,15 @@ discard block |
||
974 | 974 | - add it to the database |
975 | 975 | - parse & change relative html links |
976 | 976 | */ |
977 | - if (PHP_OS == 'Linux' && ! get_cfg_var('safe_mode') && false) { // *** UGent, changed by OC *** |
|
977 | + if (PHP_OS == 'Linux' && !get_cfg_var('safe_mode') && false) { // *** UGent, changed by OC *** |
|
978 | 978 | // Shell Method - if this is possible, it gains some speed |
979 | - exec("unzip -d \"".$base_work_dir.$upload_path."/\"".$uploaded_file['name']." " .$uploaded_file['tmp_name']); |
|
979 | + exec("unzip -d \"".$base_work_dir.$upload_path."/\"".$uploaded_file['name']." ".$uploaded_file['tmp_name']); |
|
980 | 980 | } else { |
981 | 981 | // PHP method - slower... |
982 | 982 | $save_dir = getcwd(); |
983 | 983 | chdir($base_work_dir.$upload_path); |
984 | 984 | $unzippingState = $zip_file->extract(); |
985 | - for ($j=0; $j < count($unzippingState); $j++) { |
|
985 | + for ($j = 0; $j < count($unzippingState); $j++) { |
|
986 | 986 | $state = $unzippingState[$j]; |
987 | 987 | |
988 | 988 | // Fix relative links in html files |
@@ -996,8 +996,8 @@ discard block |
||
996 | 996 | if (is_dir($base_work_dir.$upload_path.'/'.$file)) $filetype = 'folder'; |
997 | 997 | |
998 | 998 | $safe_file = api_replace_dangerous_char($file, 'strict'); |
999 | - @rename($base_work_dir.$upload_path.'/'.$file,$base_work_dir.$upload_path.'/'.$safe_file); |
|
1000 | - set_default_settings($upload_path, $safe_file,$filetype); |
|
999 | + @rename($base_work_dir.$upload_path.'/'.$file, $base_work_dir.$upload_path.'/'.$safe_file); |
|
1000 | + set_default_settings($upload_path, $safe_file, $filetype); |
|
1001 | 1001 | } |
1002 | 1002 | } |
1003 | 1003 | |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | $zip = new PclZip($uploaded_file['tmp_name']); |
1048 | 1048 | |
1049 | 1049 | // Check the zip content (real size and file extension) |
1050 | - $zip_content_array = (array)$zip->listContent(); |
|
1050 | + $zip_content_array = (array) $zip->listContent(); |
|
1051 | 1051 | |
1052 | 1052 | $realSize = 0; |
1053 | 1053 | foreach ($zip_content_array as & $this_content) { |
@@ -1143,7 +1143,7 @@ discard block |
||
1143 | 1143 | function filter_extension(&$filename) |
1144 | 1144 | { |
1145 | 1145 | if (substr($filename, -1) == '/') { |
1146 | - return 1; // Authorize directories |
|
1146 | + return 1; // Authorize directories |
|
1147 | 1147 | } |
1148 | 1148 | $blacklist = api_get_setting('upload_extensions_list_type'); |
1149 | 1149 | if ($blacklist != 'whitelist') { // if = blacklist |
@@ -1369,9 +1369,9 @@ discard block |
||
1369 | 1369 | $upload_path = str_replace('//', '/', $upload_path); |
1370 | 1370 | |
1371 | 1371 | if ($upload_path == '/') { |
1372 | - $upload_path=''; |
|
1372 | + $upload_path = ''; |
|
1373 | 1373 | } elseif (!empty($upload_path) && $upload_path[0] != '/') { |
1374 | - $upload_path="/$upload_path"; |
|
1374 | + $upload_path = "/$upload_path"; |
|
1375 | 1375 | } |
1376 | 1376 | |
1377 | 1377 | $endchar = substr($filename, strlen($filename) - 1, 1); |
@@ -1409,7 +1409,7 @@ discard block |
||
1409 | 1409 | $img_path_list = array(); |
1410 | 1410 | |
1411 | 1411 | if (!$fp = fopen($html_file, 'r')) { |
1412 | - return ; |
|
1412 | + return; |
|
1413 | 1413 | } |
1414 | 1414 | |
1415 | 1415 | // Aearch and store occurences of the <img> tag in an array |
@@ -1429,7 +1429,7 @@ discard block |
||
1429 | 1429 | $img_tag_list = $matches[0]; |
1430 | 1430 | } |
1431 | 1431 | |
1432 | - fclose ($fp); |
|
1432 | + fclose($fp); |
|
1433 | 1433 | unset($buffer); |
1434 | 1434 | |
1435 | 1435 | // Search the image file path from all the <IMG> tag detected |
@@ -1529,7 +1529,7 @@ discard block |
||
1529 | 1529 | |
1530 | 1530 | if (!is_dir($base_work_dir.$systemFolderName)) { |
1531 | 1531 | $result = mkdir( |
1532 | - $base_work_dir . $systemFolderName, |
|
1532 | + $base_work_dir.$systemFolderName, |
|
1533 | 1533 | api_get_permissions_for_new_directories(), |
1534 | 1534 | true |
1535 | 1535 | ); |
@@ -1542,7 +1542,7 @@ discard block |
||
1542 | 1542 | WHERE |
1543 | 1543 | c_id = $course_id AND |
1544 | 1544 | ( |
1545 | - path = '" . $systemFolderName . "' |
|
1545 | + path = '".$systemFolderName."' |
|
1546 | 1546 | ) |
1547 | 1547 | "; |
1548 | 1548 | |
@@ -1695,7 +1695,7 @@ discard block |
||
1695 | 1695 | |
1696 | 1696 | // Fix the image tags |
1697 | 1697 | |
1698 | - for ($i = 0, $fileNb = count($original_img_path); $i < $fileNb ; $i++) { |
|
1698 | + for ($i = 0, $fileNb = count($original_img_path); $i < $fileNb; $i++) { |
|
1699 | 1699 | $replace_what = $original_img_path[$i]; |
1700 | 1700 | // We only need the directory and the filename /path/to/file_html_files/missing_file.gif -> file_html_files/missing_file.gif |
1701 | 1701 | $exploded_file_path = explode('/', $new_img_path[$i]); |
@@ -1736,7 +1736,7 @@ discard block |
||
1736 | 1736 | .'</body>' |
1737 | 1737 | .'</html>'; |
1738 | 1738 | if (file_exists($file_path)) { |
1739 | - if (!($fp = fopen ($file_path, 'w'))) { |
|
1739 | + if (!($fp = fopen($file_path, 'w'))) { |
|
1740 | 1740 | return false; |
1741 | 1741 | } |
1742 | 1742 | return fwrite($fp, $file_content); |
@@ -1756,7 +1756,7 @@ discard block |
||
1756 | 1756 | // Open the file |
1757 | 1757 | if (file_exists($full_file_name)) { |
1758 | 1758 | $fp = fopen($full_file_name, 'r'); |
1759 | - $buffer = fread ($fp, filesize ($full_file_name)); |
|
1759 | + $buffer = fread($fp, filesize($full_file_name)); |
|
1760 | 1760 | |
1761 | 1761 | // Parse the contents |
1762 | 1762 | $new_html_content = api_replace_links_in_string($upload_path, $buffer); |
@@ -1899,7 +1899,7 @@ discard block |
||
1899 | 1899 | |
1900 | 1900 | foreach ($tag_list as & $this_tag) { |
1901 | 1901 | //Display::display_normal_message(htmlentities($this_tag)); //debug |
1902 | - if ( preg_match("~".$param_name."[\s]*=[\s]*[\"]{1}([^\"]+)[\"]{1}~i", $this_tag, $matches)) { |
|
1902 | + if (preg_match("~".$param_name."[\s]*=[\s]*[\"]{1}([^\"]+)[\"]{1}~i", $this_tag, $matches)) { |
|
1903 | 1903 | $file_path_list[] = $matches[1]; // older |
1904 | 1904 | $href_list[] = $matches[0]; // to also add target="_self" |
1905 | 1905 | } |
@@ -1920,9 +1920,9 @@ discard block |
||
1920 | 1920 | |
1921 | 1921 | // Fix the link to use download.php or showinframes.php |
1922 | 1922 | if (preg_match("/<a([\s]*[\"\/:'=a-z0-9]*){5}href[^<]*>/i", $tag_list[$count])) { |
1923 | - $replace_by[$count] = " $param_name =\"showinframes.php?file=" . $upload_path.$file_path_list[$count]."\" target=\"_self\" "; |
|
1923 | + $replace_by[$count] = " $param_name =\"showinframes.php?file=".$upload_path.$file_path_list[$count]."\" target=\"_self\" "; |
|
1924 | 1924 | } else { |
1925 | - $replace_by[$count] = " $param_name =\"download.php?doc_url=" . $upload_path.$file_path_list[$count]."\" "; |
|
1925 | + $replace_by[$count] = " $param_name =\"download.php?doc_url=".$upload_path.$file_path_list[$count]."\" "; |
|
1926 | 1926 | } |
1927 | 1927 | } else { |
1928 | 1928 | // "mailto" or url already fixed, leave as is |
@@ -1931,7 +1931,7 @@ discard block |
||
1931 | 1931 | } |
1932 | 1932 | } elseif ($is_absolute_hyperlink) { |
1933 | 1933 | //$message .= "Absolute hyperlink, don't change, add target=_self: "; |
1934 | - $replace_by[$count] = " $param_name=\"" . $file_path_list[$count] . "\" target =\"_self\""; |
|
1934 | + $replace_by[$count] = " $param_name=\"".$file_path_list[$count]."\" target =\"_self\""; |
|
1935 | 1935 | } else { |
1936 | 1936 | // Don't change anything |
1937 | 1937 | //$message .= "Local anchor, don't change: "; |
@@ -1976,7 +1976,7 @@ discard block |
||
1976 | 1976 | { |
1977 | 1977 | // Do we need a / or not? |
1978 | 1978 | $added_slash = ($upload_path == '/') ? '' : '/'; |
1979 | - $folder_id = DocumentManager::get_document_id(api_get_course_info(), $upload_path); |
|
1979 | + $folder_id = DocumentManager::get_document_id(api_get_course_info(), $upload_path); |
|
1980 | 1980 | // Build the form |
1981 | 1981 | $form = "<p><strong>".get_lang('MissingImagesDetected')."</strong></p>" |
1982 | 1982 | ."<form method=\"post\" action=\"".api_get_self()."\" enctype=\"multipart/form-data\">" |
@@ -145,6 +145,7 @@ |
||
145 | 145 | |
146 | 146 | /** |
147 | 147 | * @param array $dates result of parseDateRange() |
148 | + * @param string $format |
|
148 | 149 | * |
149 | 150 | * @return bool |
150 | 151 | */ |
@@ -7,8 +7,8 @@ discard block |
||
7 | 7 | class DateRangePicker extends HTML_QuickForm_text |
8 | 8 | { |
9 | 9 | /** |
10 | - * Constructor |
|
11 | - */ |
|
10 | + * Constructor |
|
11 | + */ |
|
12 | 12 | public function __construct($elementName = null, $elementLabel = null, $attributes = null) |
13 | 13 | { |
14 | 14 | if (!isset($attributes['id'])) { |
@@ -144,10 +144,10 @@ discard block |
||
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
147 | - * @param array $dates result of parseDateRange() |
|
148 | - * |
|
149 | - * @return bool |
|
150 | - */ |
|
147 | + * @param array $dates result of parseDateRange() |
|
148 | + * |
|
149 | + * @return bool |
|
150 | + */ |
|
151 | 151 | public function validateDates($dates, $format = null) |
152 | 152 | { |
153 | 153 | if (empty($dates['start']) || empty($dates['end'])) { |
@@ -88,7 +88,7 @@ |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | $timePicker = 'true'; |
91 | - $timePickerValue = $this->getAttribute('timePicker'); |
|
91 | + $timePickerValue = $this->getAttribute('timePicker'); |
|
92 | 92 | if (!empty($timePickerValue)) { |
93 | 93 | $timePicker = $timePickerValue; |
94 | 94 | } |
@@ -25,8 +25,7 @@ |
||
25 | 25 | * Get allowed tags |
26 | 26 | * @param int $mode NO_HTML, STUDENT_HTML, TEACHER_HTML, |
27 | 27 | * STUDENT_HTML_FULLPAGE or TEACHER_HTML_FULLPAGE |
28 | - * @param boolean $fullpage If true, the allowed tags for full-page editing |
|
29 | - * are returned. |
|
28 | + * @return string |
|
30 | 29 | */ |
31 | 30 | static function get_allowed_tags($mode) |
32 | 31 | { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | function validate($html, $mode = NO_HTML) |
18 | 18 | { |
19 | - $allowed_tags = self::get_allowed_tags ($mode, $fullpage); |
|
19 | + $allowed_tags = self::get_allowed_tags($mode, $fullpage); |
|
20 | 20 | $cleaned_html = kses($html, $allowed_tags); |
21 | 21 | return $html == $cleaned_html; |
22 | 22 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | // Include the allowed tags. |
34 | 34 | //include(dirname(__FILE__).'/allowed_tags.inc.php'); |
35 | 35 | global $allowed_tags_student, $allowed_tags_student_full_page, $allowed_tags_teacher, $allowed_tags_teacher_full_page; |
36 | - switch($mode) |
|
36 | + switch ($mode) |
|
37 | 37 | { |
38 | 38 | case NO_HTML: |
39 | 39 | return array(); |
@@ -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 | { |