@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | /** |
| 19 | 19 | * Checks whether a given course code has been already occupied. |
| 20 | 20 | * @param string $wanted_course_code The code to be checked. |
| 21 | - * @return string |
|
| 21 | + * @return boolean |
|
| 22 | 22 | * Returns TRUE if there is created: |
| 23 | 23 | * - a course with the same code OR visual_code (visualcode). |
| 24 | 24 | * - a course request with the same code as the given one, or |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | /** |
| 371 | - * @param null $status |
|
| 371 | + * @param integer $status |
|
| 372 | 372 | * @return bool |
| 373 | 373 | */ |
| 374 | 374 | public static function count_course_requests($status = null) |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Gets all the information about a course request using its database id as an access key. |
| 393 | - * @param int/string $id The id (an integer number) of the corresponding database record. |
|
| 393 | + * @param integer $id The id (an integer number) of the corresponding database record. |
|
| 394 | 394 | * @return array/bool Returns the requested data as an array or FALSE on failure. |
| 395 | 395 | */ |
| 396 | 396 | public static function get_course_request_info($id) |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | $exemplary_content |
| 66 | 66 | ) { |
| 67 | 67 | $wanted_code = trim($wanted_code); |
| 68 | - $user_id = (int)$user_id; |
|
| 69 | - $exemplary_content = (bool)$exemplary_content ? 1 : 0; |
|
| 68 | + $user_id = (int) $user_id; |
|
| 69 | + $exemplary_content = (bool) $exemplary_content ? 1 : 0; |
|
| 70 | 70 | |
| 71 | 71 | if ($wanted_code == '') { |
| 72 | 72 | return false; |
@@ -254,10 +254,10 @@ discard block |
||
| 254 | 254 | $user_id, |
| 255 | 255 | $exemplary_content |
| 256 | 256 | ) { |
| 257 | - $id = (int)$id; |
|
| 257 | + $id = (int) $id; |
|
| 258 | 258 | $wanted_code = trim($wanted_code); |
| 259 | - $user_id = (int)$user_id; |
|
| 260 | - $exemplary_content = (bool)$exemplary_content ? 1 : 0; |
|
| 259 | + $user_id = (int) $user_id; |
|
| 260 | + $exemplary_content = (bool) $exemplary_content ? 1 : 0; |
|
| 261 | 261 | |
| 262 | 262 | if ($wanted_code == '') { |
| 263 | 263 | return false; |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | */ |
| 361 | 361 | public static function delete_course_request($id) |
| 362 | 362 | { |
| 363 | - $id = (int)$id; |
|
| 363 | + $id = (int) $id; |
|
| 364 | 364 | $sql = "DELETE FROM ".Database :: get_main_table(TABLE_MAIN_COURSE_REQUEST)." |
| 365 | 365 | WHERE id = ".$id; |
| 366 | 366 | $result = Database::query($sql); |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | if (is_null($status)) { |
| 378 | 378 | $sql = "SELECT COUNT(id) AS number FROM ".$course_table; |
| 379 | 379 | } else { |
| 380 | - $status = (int)$status; |
|
| 380 | + $status = (int) $status; |
|
| 381 | 381 | $sql = "SELECT COUNT(id) AS number FROM ".$course_table." |
| 382 | 382 | WHERE status = ".$status; |
| 383 | 383 | } |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | public static function get_course_request_info($id) |
| 397 | 397 | { |
| 398 | - $id = (int)$id; |
|
| 398 | + $id = (int) $id; |
|
| 399 | 399 | $sql = "SELECT * |
| 400 | 400 | FROM ".Database :: get_main_table(TABLE_MAIN_COURSE_REQUEST)." |
| 401 | 401 | WHERE id = ".$id; |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | */ |
| 414 | 414 | public static function get_course_request_code($id) |
| 415 | 415 | { |
| 416 | - $id = (int)$id; |
|
| 416 | + $id = (int) $id; |
|
| 417 | 417 | $sql = "SELECT code |
| 418 | 418 | FROM ".Database :: get_main_table(TABLE_MAIN_COURSE_REQUEST)." |
| 419 | 419 | WHERE id = ".$id; |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | */ |
| 435 | 435 | public static function accept_course_request($id) |
| 436 | 436 | { |
| 437 | - $id = (int)$id; |
|
| 437 | + $id = (int) $id; |
|
| 438 | 438 | |
| 439 | 439 | // Retrieve request's data |
| 440 | 440 | $course_request_info = self::get_course_request_info($id); |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | return false; |
| 448 | 448 | }*/ |
| 449 | 449 | |
| 450 | - $user_id = (int)$course_request_info['user_id']; |
|
| 450 | + $user_id = (int) $course_request_info['user_id']; |
|
| 451 | 451 | if ($user_id <= 0) { |
| 452 | 452 | return false; |
| 453 | 453 | } |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | */ |
| 532 | 532 | public static function reject_course_request($id) |
| 533 | 533 | { |
| 534 | - $id = (int)$id; |
|
| 534 | + $id = (int) $id; |
|
| 535 | 535 | // Retrieve request's data |
| 536 | 536 | $course_request_info = self::get_course_request_info($id); |
| 537 | 537 | if (!is_array($course_request_info)) { |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | */ |
| 610 | 610 | public static function ask_for_additional_info($id) |
| 611 | 611 | { |
| 612 | - $id = (int)$id; |
|
| 612 | + $id = (int) $id; |
|
| 613 | 613 | |
| 614 | 614 | // Retrieve request's data |
| 615 | 615 | $course_request_info = self::get_course_request_info($id); |
@@ -700,7 +700,7 @@ discard block |
||
| 700 | 700 | */ |
| 701 | 701 | public static function additional_info_asked($id) |
| 702 | 702 | { |
| 703 | - $id = (int)$id; |
|
| 703 | + $id = (int) $id; |
|
| 704 | 704 | $sql = "SELECT id FROM ".Database :: get_main_table(TABLE_MAIN_COURSE_REQUEST)." |
| 705 | 705 | WHERE (id = ".$id." AND info > 0)"; |
| 706 | 706 | $result = Database::num_rows(Database::query($sql)); |
@@ -493,6 +493,7 @@ |
||
| 493 | 493 | * This function update extra user blocks data after closing a dashboard block |
| 494 | 494 | * @param int User id |
| 495 | 495 | * @param string plugin path |
| 496 | + * @param integer $user_id |
|
| 496 | 497 | * @return bool |
| 497 | 498 | */ |
| 498 | 499 | public static function close_user_block($user_id, $path) |
@@ -249,282 +249,282 @@ |
||
| 249 | 249 | return $affected_rows; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - /** |
|
| 253 | - * Get all plugins path inside dashboard directory |
|
| 254 | - * @return array name plugins directories |
|
| 255 | - */ |
|
| 256 | - public static function getPossibleDashboardPluginsPath() |
|
| 252 | + /** |
|
| 253 | + * Get all plugins path inside dashboard directory |
|
| 254 | + * @return array name plugins directories |
|
| 255 | + */ |
|
| 256 | + public static function getPossibleDashboardPluginsPath() |
|
| 257 | 257 | { |
| 258 | - // get all plugins path inside plugin directory |
|
| 259 | - /* We scan the plugin directory. Each folder is a potential plugin. */ |
|
| 260 | - $possiblePlugins = array(); |
|
| 261 | - $dashboard_pluginpath = api_get_path(SYS_PLUGIN_PATH).'dashboard/'; |
|
| 262 | - $handle = @opendir($dashboard_pluginpath); |
|
| 263 | - while (false !== ($file = readdir($handle))) { |
|
| 264 | - if ($file <> '.' AND $file <> '..' AND is_dir($dashboard_pluginpath.$file)) { |
|
| 265 | - $possiblePlugins[] = $file; |
|
| 266 | - } |
|
| 267 | - } |
|
| 268 | - @closedir($handle); |
|
| 269 | - |
|
| 270 | - return $possiblePlugins; |
|
| 271 | - } |
|
| 272 | - |
|
| 273 | - /** |
|
| 274 | - * Get all blocks data without plugin directory |
|
| 275 | - * @return array Block data |
|
| 276 | - */ |
|
| 277 | - public static function get_block_data_without_plugin() |
|
| 258 | + // get all plugins path inside plugin directory |
|
| 259 | + /* We scan the plugin directory. Each folder is a potential plugin. */ |
|
| 260 | + $possiblePlugins = array(); |
|
| 261 | + $dashboard_pluginpath = api_get_path(SYS_PLUGIN_PATH).'dashboard/'; |
|
| 262 | + $handle = @opendir($dashboard_pluginpath); |
|
| 263 | + while (false !== ($file = readdir($handle))) { |
|
| 264 | + if ($file <> '.' AND $file <> '..' AND is_dir($dashboard_pluginpath.$file)) { |
|
| 265 | + $possiblePlugins[] = $file; |
|
| 266 | + } |
|
| 267 | + } |
|
| 268 | + @closedir($handle); |
|
| 269 | + |
|
| 270 | + return $possiblePlugins; |
|
| 271 | + } |
|
| 272 | + |
|
| 273 | + /** |
|
| 274 | + * Get all blocks data without plugin directory |
|
| 275 | + * @return array Block data |
|
| 276 | + */ |
|
| 277 | + public static function get_block_data_without_plugin() |
|
| 278 | 278 | { |
| 279 | - $tbl_block = Database :: get_main_table(TABLE_MAIN_BLOCK); |
|
| 280 | - $possibleplugins = self::getPossibleDashboardPluginsPath(); |
|
| 281 | - |
|
| 282 | - // We check if plugin exists inside directory for updating active field |
|
| 283 | - $sql = "SELECT * FROM $tbl_block"; |
|
| 284 | - $rs = Database::query($sql); |
|
| 285 | - if (Database::num_rows($rs) > 0){ |
|
| 286 | - while ($row = Database::fetch_array($rs)) { |
|
| 287 | - $path = $row['path']; |
|
| 288 | - if (!in_array($row['path'],$possibleplugins)) { |
|
| 289 | - $active = 0; |
|
| 290 | - } else { |
|
| 291 | - $active = 1; |
|
| 292 | - } |
|
| 293 | - // update active |
|
| 294 | - $upd = "UPDATE $tbl_block SET active = '$active' |
|
| 279 | + $tbl_block = Database :: get_main_table(TABLE_MAIN_BLOCK); |
|
| 280 | + $possibleplugins = self::getPossibleDashboardPluginsPath(); |
|
| 281 | + |
|
| 282 | + // We check if plugin exists inside directory for updating active field |
|
| 283 | + $sql = "SELECT * FROM $tbl_block"; |
|
| 284 | + $rs = Database::query($sql); |
|
| 285 | + if (Database::num_rows($rs) > 0){ |
|
| 286 | + while ($row = Database::fetch_array($rs)) { |
|
| 287 | + $path = $row['path']; |
|
| 288 | + if (!in_array($row['path'],$possibleplugins)) { |
|
| 289 | + $active = 0; |
|
| 290 | + } else { |
|
| 291 | + $active = 1; |
|
| 292 | + } |
|
| 293 | + // update active |
|
| 294 | + $upd = "UPDATE $tbl_block SET active = '$active' |
|
| 295 | 295 | WHERE path = '".$row['path']."'"; |
| 296 | - Database::query($upd); |
|
| 297 | - } |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - // get disabled block data |
|
| 301 | - $block_data = array(); |
|
| 302 | - $sql = "SELECT * FROM $tbl_block WHERE active = 0"; |
|
| 303 | - $rs_block = Database::query($sql); |
|
| 304 | - if (Database::num_rows($rs_block) > 0) { |
|
| 305 | - while ($row_block = Database::fetch_array($rs_block)) { |
|
| 306 | - $block_data[] = $row_block; |
|
| 307 | - } |
|
| 308 | - } |
|
| 309 | - |
|
| 310 | - return $block_data; |
|
| 311 | - |
|
| 312 | - } |
|
| 313 | - |
|
| 314 | - /** |
|
| 315 | - * get data about enabled dashboard block (stored insise block table) |
|
| 316 | - * @param string plugin path |
|
| 317 | - * @return array data |
|
| 318 | - */ |
|
| 319 | - public static function get_enabled_dashboard_blocks($path = '') |
|
| 296 | + Database::query($upd); |
|
| 297 | + } |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + // get disabled block data |
|
| 301 | + $block_data = array(); |
|
| 302 | + $sql = "SELECT * FROM $tbl_block WHERE active = 0"; |
|
| 303 | + $rs_block = Database::query($sql); |
|
| 304 | + if (Database::num_rows($rs_block) > 0) { |
|
| 305 | + while ($row_block = Database::fetch_array($rs_block)) { |
|
| 306 | + $block_data[] = $row_block; |
|
| 307 | + } |
|
| 308 | + } |
|
| 309 | + |
|
| 310 | + return $block_data; |
|
| 311 | + |
|
| 312 | + } |
|
| 313 | + |
|
| 314 | + /** |
|
| 315 | + * get data about enabled dashboard block (stored insise block table) |
|
| 316 | + * @param string plugin path |
|
| 317 | + * @return array data |
|
| 318 | + */ |
|
| 319 | + public static function get_enabled_dashboard_blocks($path = '') |
|
| 320 | 320 | { |
| 321 | - $tbl_block = Database :: get_main_table(TABLE_MAIN_BLOCK); |
|
| 322 | - $condition_path = ''; |
|
| 323 | - if (!empty($path)) { |
|
| 324 | - $path = Database::escape_string($path); |
|
| 325 | - $condition_path = ' AND path = "'.$path.'" '; |
|
| 326 | - } |
|
| 327 | - |
|
| 328 | - $sql = "SELECT * FROM $tbl_block WHERE active = 1 $condition_path "; |
|
| 329 | - $rs = Database::query($sql); |
|
| 330 | - $block_data = array(); |
|
| 331 | - if (Database::num_rows($rs) > 0) { |
|
| 332 | - while ($row = Database::fetch_array($rs)) { |
|
| 333 | - $block_data[$row['path']] = $row; |
|
| 334 | - } |
|
| 335 | - } |
|
| 336 | - return $block_data; |
|
| 337 | - } |
|
| 338 | - |
|
| 339 | - /** |
|
| 340 | - * display user dashboard list |
|
| 341 | - * @param int User id |
|
| 342 | - * @return void |
|
| 343 | - */ |
|
| 344 | - public static function display_user_dashboard_list($user_id) |
|
| 321 | + $tbl_block = Database :: get_main_table(TABLE_MAIN_BLOCK); |
|
| 322 | + $condition_path = ''; |
|
| 323 | + if (!empty($path)) { |
|
| 324 | + $path = Database::escape_string($path); |
|
| 325 | + $condition_path = ' AND path = "'.$path.'" '; |
|
| 326 | + } |
|
| 327 | + |
|
| 328 | + $sql = "SELECT * FROM $tbl_block WHERE active = 1 $condition_path "; |
|
| 329 | + $rs = Database::query($sql); |
|
| 330 | + $block_data = array(); |
|
| 331 | + if (Database::num_rows($rs) > 0) { |
|
| 332 | + while ($row = Database::fetch_array($rs)) { |
|
| 333 | + $block_data[$row['path']] = $row; |
|
| 334 | + } |
|
| 335 | + } |
|
| 336 | + return $block_data; |
|
| 337 | + } |
|
| 338 | + |
|
| 339 | + /** |
|
| 340 | + * display user dashboard list |
|
| 341 | + * @param int User id |
|
| 342 | + * @return void |
|
| 343 | + */ |
|
| 344 | + public static function display_user_dashboard_list($user_id) |
|
| 345 | 345 | { |
| 346 | - $enabled_dashboard_plugins = self::get_enabled_dashboard_blocks(); |
|
| 347 | - $user_block_data = self::get_user_block_data($user_id); |
|
| 348 | - |
|
| 349 | - if (count($enabled_dashboard_plugins) > 0) { |
|
| 350 | - echo '<div style="margin-top:20px">'; |
|
| 351 | - echo '<div><strong>'.get_lang('SelectBlockForDisplayingInsideBlocksDashboardView').'</strong></div><br />'; |
|
| 352 | - echo '<form name="dashboard_list" method="post" action="index.php?action=store_user_block">'; |
|
| 353 | - echo '<table class="data_table">'; |
|
| 354 | - echo '<tr>'; |
|
| 355 | - echo '<th width="5%">'; |
|
| 356 | - echo get_lang('Enabled'); |
|
| 357 | - echo '</th>'; |
|
| 358 | - echo '<th width="30%">'; |
|
| 359 | - echo get_lang('Name'); |
|
| 360 | - echo '</th>'; |
|
| 361 | - echo '<th width="40%">'; |
|
| 362 | - echo get_lang('Description'); |
|
| 363 | - echo '</th>'; |
|
| 364 | - echo '<th>'; |
|
| 365 | - echo get_lang('ColumnPosition'); |
|
| 366 | - echo '</th>'; |
|
| 367 | - echo '</tr>'; |
|
| 368 | - |
|
| 369 | - // We display all enabled plugins and the checkboxes |
|
| 370 | - foreach ($enabled_dashboard_plugins as $block) { |
|
| 371 | - |
|
| 372 | - $path = $block['path']; |
|
| 373 | - $controller_class = $block['controller']; |
|
| 374 | - $filename_controller = $path.'.class.php'; |
|
| 375 | - $dashboard_plugin_path = api_get_path(SYS_PLUGIN_PATH).'dashboard/'.$path.'/'; |
|
| 376 | - require_once $dashboard_plugin_path.$filename_controller; |
|
| 377 | - if (class_exists($controller_class)) { |
|
| 378 | - $obj_block = new $controller_class($user_id); |
|
| 379 | - |
|
| 380 | - // check if user is allowed to see the block |
|
| 381 | - if (method_exists($obj_block, 'is_block_visible_for_user')) { |
|
| 382 | - $is_block_visible_for_user = $obj_block->is_block_visible_for_user($user_id); |
|
| 383 | - if (!$is_block_visible_for_user) continue; |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - echo '<tr>'; |
|
| 387 | - // checkboxes |
|
| 388 | - self::display_user_dashboard_list_checkboxes($user_id, $block['id']); |
|
| 389 | - echo '<td>'.$block['name'].'</td>'; |
|
| 390 | - echo '<td>'.$block['description'].'</td>'; |
|
| 391 | - echo '<td> |
|
| 346 | + $enabled_dashboard_plugins = self::get_enabled_dashboard_blocks(); |
|
| 347 | + $user_block_data = self::get_user_block_data($user_id); |
|
| 348 | + |
|
| 349 | + if (count($enabled_dashboard_plugins) > 0) { |
|
| 350 | + echo '<div style="margin-top:20px">'; |
|
| 351 | + echo '<div><strong>'.get_lang('SelectBlockForDisplayingInsideBlocksDashboardView').'</strong></div><br />'; |
|
| 352 | + echo '<form name="dashboard_list" method="post" action="index.php?action=store_user_block">'; |
|
| 353 | + echo '<table class="data_table">'; |
|
| 354 | + echo '<tr>'; |
|
| 355 | + echo '<th width="5%">'; |
|
| 356 | + echo get_lang('Enabled'); |
|
| 357 | + echo '</th>'; |
|
| 358 | + echo '<th width="30%">'; |
|
| 359 | + echo get_lang('Name'); |
|
| 360 | + echo '</th>'; |
|
| 361 | + echo '<th width="40%">'; |
|
| 362 | + echo get_lang('Description'); |
|
| 363 | + echo '</th>'; |
|
| 364 | + echo '<th>'; |
|
| 365 | + echo get_lang('ColumnPosition'); |
|
| 366 | + echo '</th>'; |
|
| 367 | + echo '</tr>'; |
|
| 368 | + |
|
| 369 | + // We display all enabled plugins and the checkboxes |
|
| 370 | + foreach ($enabled_dashboard_plugins as $block) { |
|
| 371 | + |
|
| 372 | + $path = $block['path']; |
|
| 373 | + $controller_class = $block['controller']; |
|
| 374 | + $filename_controller = $path.'.class.php'; |
|
| 375 | + $dashboard_plugin_path = api_get_path(SYS_PLUGIN_PATH).'dashboard/'.$path.'/'; |
|
| 376 | + require_once $dashboard_plugin_path.$filename_controller; |
|
| 377 | + if (class_exists($controller_class)) { |
|
| 378 | + $obj_block = new $controller_class($user_id); |
|
| 379 | + |
|
| 380 | + // check if user is allowed to see the block |
|
| 381 | + if (method_exists($obj_block, 'is_block_visible_for_user')) { |
|
| 382 | + $is_block_visible_for_user = $obj_block->is_block_visible_for_user($user_id); |
|
| 383 | + if (!$is_block_visible_for_user) continue; |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + echo '<tr>'; |
|
| 387 | + // checkboxes |
|
| 388 | + self::display_user_dashboard_list_checkboxes($user_id, $block['id']); |
|
| 389 | + echo '<td>'.$block['name'].'</td>'; |
|
| 390 | + echo '<td>'.$block['description'].'</td>'; |
|
| 391 | + echo '<td> |
|
| 392 | 392 | <select class="selectpicker show-tick form-control" name="columns['.$block['id'].']"> |
| 393 | 393 | <option value="1" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column']==1?'selected':'').' >1</option> |
| 394 | 394 | <option value="2" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column']==2?'selected':'').' >2</option> |
| 395 | 395 | </select> |
| 396 | 396 | </td>'; |
| 397 | - echo '</tr>'; |
|
| 398 | - } else { |
|
| 399 | - echo Display::tag('tr', Display::tag('td', get_lang('Error').' '.$controller_class, array('colspan'=>'3'))); |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - echo '</table>'; |
|
| 404 | - echo '<div class="row"><div class="col-md-12">'; |
|
| 405 | - echo '<button class="btn btn-default" type="submit" name="submit_dashboard_list" value="'.get_lang('EnableDashboardBlock').'"><em class="fa fa-check-square"></em> '. |
|
| 397 | + echo '</tr>'; |
|
| 398 | + } else { |
|
| 399 | + echo Display::tag('tr', Display::tag('td', get_lang('Error').' '.$controller_class, array('colspan'=>'3'))); |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + echo '</table>'; |
|
| 404 | + echo '<div class="row"><div class="col-md-12">'; |
|
| 405 | + echo '<button class="btn btn-default" type="submit" name="submit_dashboard_list" value="'.get_lang('EnableDashboardBlock').'"><em class="fa fa-check-square"></em> '. |
|
| 406 | 406 | get_lang('EnableDashboardBlock').'</button></form>'; |
| 407 | - echo '</div></div>'; |
|
| 408 | - } else { |
|
| 409 | - echo '<div style="margin-top:20px">'.get_lang('ThereAreNoEnabledDashboardPlugins').'</div>'; |
|
| 410 | - if (api_is_platform_admin()) { |
|
| 411 | - echo '<a class="btn btn-default" href="'.api_get_path(WEB_CODE_PATH).'admin/settings.php?category=Plugins">'. |
|
| 407 | + echo '</div></div>'; |
|
| 408 | + } else { |
|
| 409 | + echo '<div style="margin-top:20px">'.get_lang('ThereAreNoEnabledDashboardPlugins').'</div>'; |
|
| 410 | + if (api_is_platform_admin()) { |
|
| 411 | + echo '<a class="btn btn-default" href="'.api_get_path(WEB_CODE_PATH).'admin/settings.php?category=Plugins">'. |
|
| 412 | 412 | get_lang('ConfigureDashboardPlugin').'</a>'; |
| 413 | - } |
|
| 414 | - } |
|
| 415 | - } |
|
| 416 | - |
|
| 417 | - /** |
|
| 418 | - * display checkboxes for user dashboard list |
|
| 419 | - * @param int User id |
|
| 420 | - * @param int Block id |
|
| 421 | - * @return void |
|
| 422 | - */ |
|
| 423 | - public static function display_user_dashboard_list_checkboxes($user_id, $block_id) { |
|
| 424 | - |
|
| 425 | - $user_id = intval($user_id); |
|
| 426 | - $user_block_data = self::get_user_block_data($user_id); |
|
| 427 | - $enabled_blocks_id = array_keys($user_block_data); |
|
| 428 | - |
|
| 429 | - $checked = ''; |
|
| 430 | - if (in_array($block_id, $enabled_blocks_id)) { |
|
| 431 | - $checked = "checked"; |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - echo "<td align=\"center\">"; |
|
| 435 | - echo '<input type="checkbox" name="enabled_blocks['.$block_id.']" value="true" '.$checked.'/>'; |
|
| 436 | - echo "</td>"; |
|
| 437 | - } |
|
| 438 | - |
|
| 439 | - /** |
|
| 440 | - * This function store enabled blocks id with its column position (block_id1:colum;block_id2:colum; ...) inside extra user fields |
|
| 441 | - * @param int User id |
|
| 442 | - * @param array selected blocks |
|
| 443 | - * @param array columns position |
|
| 444 | - * @return bool |
|
| 445 | - */ |
|
| 446 | - public static function store_user_blocks($user_id, $enabled_blocks, $columns) { |
|
| 447 | - $selected_blocks_id = array(); |
|
| 448 | - if (is_array($enabled_blocks) && count($enabled_blocks) > 0) { |
|
| 449 | - $selected_blocks_id = array_keys($enabled_blocks); |
|
| 450 | - } |
|
| 451 | - |
|
| 452 | - // build data for storing inside extra user field |
|
| 453 | - $fname = 'dashboard'; |
|
| 454 | - $fvalue = array(); |
|
| 455 | - foreach ($selected_blocks_id as $block_id) { |
|
| 456 | - $fvalue[] = $block_id.':'.$columns[$block_id]; |
|
| 457 | - } |
|
| 413 | + } |
|
| 414 | + } |
|
| 415 | + } |
|
| 416 | + |
|
| 417 | + /** |
|
| 418 | + * display checkboxes for user dashboard list |
|
| 419 | + * @param int User id |
|
| 420 | + * @param int Block id |
|
| 421 | + * @return void |
|
| 422 | + */ |
|
| 423 | + public static function display_user_dashboard_list_checkboxes($user_id, $block_id) { |
|
| 424 | + |
|
| 425 | + $user_id = intval($user_id); |
|
| 426 | + $user_block_data = self::get_user_block_data($user_id); |
|
| 427 | + $enabled_blocks_id = array_keys($user_block_data); |
|
| 428 | + |
|
| 429 | + $checked = ''; |
|
| 430 | + if (in_array($block_id, $enabled_blocks_id)) { |
|
| 431 | + $checked = "checked"; |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + echo "<td align=\"center\">"; |
|
| 435 | + echo '<input type="checkbox" name="enabled_blocks['.$block_id.']" value="true" '.$checked.'/>'; |
|
| 436 | + echo "</td>"; |
|
| 437 | + } |
|
| 438 | + |
|
| 439 | + /** |
|
| 440 | + * This function store enabled blocks id with its column position (block_id1:colum;block_id2:colum; ...) inside extra user fields |
|
| 441 | + * @param int User id |
|
| 442 | + * @param array selected blocks |
|
| 443 | + * @param array columns position |
|
| 444 | + * @return bool |
|
| 445 | + */ |
|
| 446 | + public static function store_user_blocks($user_id, $enabled_blocks, $columns) { |
|
| 447 | + $selected_blocks_id = array(); |
|
| 448 | + if (is_array($enabled_blocks) && count($enabled_blocks) > 0) { |
|
| 449 | + $selected_blocks_id = array_keys($enabled_blocks); |
|
| 450 | + } |
|
| 451 | + |
|
| 452 | + // build data for storing inside extra user field |
|
| 453 | + $fname = 'dashboard'; |
|
| 454 | + $fvalue = array(); |
|
| 455 | + foreach ($selected_blocks_id as $block_id) { |
|
| 456 | + $fvalue[] = $block_id.':'.$columns[$block_id]; |
|
| 457 | + } |
|
| 458 | 458 | $upd_extra_field = UserManager::update_extra_field_value( |
| 459 | 459 | $user_id, |
| 460 | 460 | $fname, |
| 461 | 461 | $fvalue |
| 462 | 462 | ); |
| 463 | 463 | |
| 464 | - return $upd_extra_field; |
|
| 464 | + return $upd_extra_field; |
|
| 465 | 465 | |
| 466 | - } |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - /** |
|
| 469 | - * This function get user block data (block id with its number of column) from extra user data |
|
| 470 | - * @param int User id |
|
| 471 | - * @return array data (block_id,column) |
|
| 472 | - */ |
|
| 473 | - public static function get_user_block_data($user_id) |
|
| 468 | + /** |
|
| 469 | + * This function get user block data (block id with its number of column) from extra user data |
|
| 470 | + * @param int User id |
|
| 471 | + * @return array data (block_id,column) |
|
| 472 | + */ |
|
| 473 | + public static function get_user_block_data($user_id) |
|
| 474 | 474 | { |
| 475 | - $user_id = intval($user_id); |
|
| 476 | - $field_variable = 'dashboard'; |
|
| 477 | - $extra_user_data = UserManager::get_extra_user_data_by_field($user_id, $field_variable); |
|
| 478 | - $extra_user_data = explode(';',$extra_user_data[$field_variable]); |
|
| 479 | - $data = array(); |
|
| 480 | - foreach ($extra_user_data as $extra) { |
|
| 481 | - $split_extra = explode(':',$extra); |
|
| 482 | - if (!empty($split_extra)) { |
|
| 483 | - $block_id = $split_extra[0]; |
|
| 484 | - $column = isset($split_extra[1]) ? $split_extra[1] : null; |
|
| 485 | - $data[$block_id] = array('block_id' => $block_id, 'column' => $column); |
|
| 486 | - } |
|
| 487 | - } |
|
| 488 | - |
|
| 489 | - return $data; |
|
| 490 | - } |
|
| 491 | - |
|
| 492 | - /** |
|
| 493 | - * This function update extra user blocks data after closing a dashboard block |
|
| 494 | - * @param int User id |
|
| 495 | - * @param string plugin path |
|
| 496 | - * @return bool |
|
| 497 | - */ |
|
| 498 | - public static function close_user_block($user_id, $path) |
|
| 475 | + $user_id = intval($user_id); |
|
| 476 | + $field_variable = 'dashboard'; |
|
| 477 | + $extra_user_data = UserManager::get_extra_user_data_by_field($user_id, $field_variable); |
|
| 478 | + $extra_user_data = explode(';',$extra_user_data[$field_variable]); |
|
| 479 | + $data = array(); |
|
| 480 | + foreach ($extra_user_data as $extra) { |
|
| 481 | + $split_extra = explode(':',$extra); |
|
| 482 | + if (!empty($split_extra)) { |
|
| 483 | + $block_id = $split_extra[0]; |
|
| 484 | + $column = isset($split_extra[1]) ? $split_extra[1] : null; |
|
| 485 | + $data[$block_id] = array('block_id' => $block_id, 'column' => $column); |
|
| 486 | + } |
|
| 487 | + } |
|
| 488 | + |
|
| 489 | + return $data; |
|
| 490 | + } |
|
| 491 | + |
|
| 492 | + /** |
|
| 493 | + * This function update extra user blocks data after closing a dashboard block |
|
| 494 | + * @param int User id |
|
| 495 | + * @param string plugin path |
|
| 496 | + * @return bool |
|
| 497 | + */ |
|
| 498 | + public static function close_user_block($user_id, $path) |
|
| 499 | 499 | { |
| 500 | - $enabled_dashboard_blocks = self::get_enabled_dashboard_blocks($path); |
|
| 501 | - $user_block_data = self::get_user_block_data($user_id); |
|
| 502 | - |
|
| 503 | - foreach ($enabled_dashboard_blocks as $enabled_block) { |
|
| 504 | - unset($user_block_data[$enabled_block['id']]); |
|
| 505 | - } |
|
| 506 | - |
|
| 507 | - // get columns and blocks id for updating extra user data |
|
| 508 | - $columns = array(); |
|
| 509 | - $user_blocks_id = array(); |
|
| 510 | - foreach ($user_block_data as $data) { |
|
| 511 | - $user_blocks_id[$data['block_id']] = true; |
|
| 512 | - $columns[$data['block_id']] = $data['column']; |
|
| 513 | - } |
|
| 514 | - |
|
| 515 | - // update extra user blocks data |
|
| 516 | - $upd_extra_field = self::store_user_blocks($user_id, $user_blocks_id, $columns); |
|
| 517 | - |
|
| 518 | - return $upd_extra_field; |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - /** |
|
| 522 | - * get links for styles from dashboard plugins |
|
| 523 | - * @return string links |
|
| 524 | - */ |
|
| 525 | - public static function get_links_for_styles_from_dashboard_plugins() { |
|
| 526 | - |
|
| 527 | - return '<link rel="stylesheet" href="'.api_get_path(WEB_PLUGIN_PATH).'dashboard/css/default.css" type="text/css" />'.PHP_EOL; |
|
| 528 | - } |
|
| 500 | + $enabled_dashboard_blocks = self::get_enabled_dashboard_blocks($path); |
|
| 501 | + $user_block_data = self::get_user_block_data($user_id); |
|
| 502 | + |
|
| 503 | + foreach ($enabled_dashboard_blocks as $enabled_block) { |
|
| 504 | + unset($user_block_data[$enabled_block['id']]); |
|
| 505 | + } |
|
| 506 | + |
|
| 507 | + // get columns and blocks id for updating extra user data |
|
| 508 | + $columns = array(); |
|
| 509 | + $user_blocks_id = array(); |
|
| 510 | + foreach ($user_block_data as $data) { |
|
| 511 | + $user_blocks_id[$data['block_id']] = true; |
|
| 512 | + $columns[$data['block_id']] = $data['column']; |
|
| 513 | + } |
|
| 514 | + |
|
| 515 | + // update extra user blocks data |
|
| 516 | + $upd_extra_field = self::store_user_blocks($user_id, $user_blocks_id, $columns); |
|
| 517 | + |
|
| 518 | + return $upd_extra_field; |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + /** |
|
| 522 | + * get links for styles from dashboard plugins |
|
| 523 | + * @return string links |
|
| 524 | + */ |
|
| 525 | + public static function get_links_for_styles_from_dashboard_plugins() { |
|
| 526 | + |
|
| 527 | + return '<link rel="stylesheet" href="'.api_get_path(WEB_PLUGIN_PATH).'dashboard/css/default.css" type="text/css" />'.PHP_EOL; |
|
| 528 | + } |
|
| 529 | 529 | |
| 530 | 530 | } |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | echo '<tr>'; |
| 54 | 54 | self::display_dashboard_plugin_checkboxes($testplugin); |
| 55 | - for ($i = 0 ; $i < count($table_cols); $i++) { |
|
| 55 | + for ($i = 0; $i < count($table_cols); $i++) { |
|
| 56 | 56 | if (isset($plugin_info[strtolower($table_cols[$i])])) { |
| 57 | 57 | echo '<td>'; |
| 58 | 58 | echo $plugin_info[$table_cols[$i]]; |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | echo Display::tag( |
| 68 | 68 | 'tr', |
| 69 | 69 | Display::tag('td', |
| 70 | - get_lang('CheckFilePermissions') . ' ' . Security::remove_XSS($plugin_info_file), |
|
| 70 | + get_lang('CheckFilePermissions').' '.Security::remove_XSS($plugin_info_file), |
|
| 71 | 71 | array('colspan' => '3')) |
| 72 | 72 | ); |
| 73 | 73 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | foreach ($disabled_blocks_data as $disabled_block) { |
| 80 | 80 | echo '<tr style="background-color:#eee">'; |
| 81 | 81 | echo '<td><center><input type="checkbox" name="disabled_block" value="true" checked disabled /></center>'; |
| 82 | - for ($j = 0 ; $j < count($table_cols); $j++) { |
|
| 82 | + for ($j = 0; $j < count($table_cols); $j++) { |
|
| 83 | 83 | if (isset($disabled_block[strtolower($table_cols[$j])])) { |
| 84 | 84 | if ($j == 2) { |
| 85 | 85 | echo '<td>'; |
@@ -189,10 +189,10 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | // clean from block data |
| 191 | 191 | if (!empty($not_selected_blocks_id)) { |
| 192 | - $sql_check = "SELECT id FROM $tbl_block WHERE id IN(".implode(',',$not_selected_blocks_id).")"; |
|
| 192 | + $sql_check = "SELECT id FROM $tbl_block WHERE id IN(".implode(',', $not_selected_blocks_id).")"; |
|
| 193 | 193 | $rs_check = Database::query($sql_check); |
| 194 | 194 | if (Database::num_rows($rs_check) > 0) { |
| 195 | - $del = "DELETE FROM $tbl_block WHERE id IN(".implode(',',$not_selected_blocks_id).")"; |
|
| 195 | + $del = "DELETE FROM $tbl_block WHERE id IN(".implode(',', $not_selected_blocks_id).")"; |
|
| 196 | 196 | Database::query($del); |
| 197 | 197 | } |
| 198 | 198 | } |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | $affected_rows = Database::affected_rows($result); |
| 213 | 213 | } else { |
| 214 | 214 | // insert |
| 215 | - $plugin_info_file = $dashboard_pluginpath . $testplugin . "/$testplugin.info"; |
|
| 215 | + $plugin_info_file = $dashboard_pluginpath.$testplugin."/$testplugin.info"; |
|
| 216 | 216 | $plugin_info = array(); |
| 217 | 217 | if (file_exists($plugin_info_file)) { |
| 218 | 218 | $plugin_info = parse_info_file($plugin_info_file); |
@@ -282,10 +282,10 @@ discard block |
||
| 282 | 282 | // We check if plugin exists inside directory for updating active field |
| 283 | 283 | $sql = "SELECT * FROM $tbl_block"; |
| 284 | 284 | $rs = Database::query($sql); |
| 285 | - if (Database::num_rows($rs) > 0){ |
|
| 285 | + if (Database::num_rows($rs) > 0) { |
|
| 286 | 286 | while ($row = Database::fetch_array($rs)) { |
| 287 | 287 | $path = $row['path']; |
| 288 | - if (!in_array($row['path'],$possibleplugins)) { |
|
| 288 | + if (!in_array($row['path'], $possibleplugins)) { |
|
| 289 | 289 | $active = 0; |
| 290 | 290 | } else { |
| 291 | 291 | $active = 1; |
@@ -390,13 +390,13 @@ discard block |
||
| 390 | 390 | echo '<td>'.$block['description'].'</td>'; |
| 391 | 391 | echo '<td> |
| 392 | 392 | <select class="selectpicker show-tick form-control" name="columns['.$block['id'].']"> |
| 393 | - <option value="1" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column']==1?'selected':'').' >1</option> |
|
| 394 | - <option value="2" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column']==2?'selected':'').' >2</option> |
|
| 393 | + <option value="1" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column'] == 1 ? 'selected' : '').' >1</option> |
|
| 394 | + <option value="2" '.(isset($user_block_data[$block['id']]) && $user_block_data[$block['id']]['column'] == 2 ? 'selected' : '').' >2</option> |
|
| 395 | 395 | </select> |
| 396 | 396 | </td>'; |
| 397 | 397 | echo '</tr>'; |
| 398 | 398 | } else { |
| 399 | - echo Display::tag('tr', Display::tag('td', get_lang('Error').' '.$controller_class, array('colspan'=>'3'))); |
|
| 399 | + echo Display::tag('tr', Display::tag('td', get_lang('Error').' '.$controller_class, array('colspan'=>'3'))); |
|
| 400 | 400 | } |
| 401 | 401 | } |
| 402 | 402 | |
@@ -475,10 +475,10 @@ discard block |
||
| 475 | 475 | $user_id = intval($user_id); |
| 476 | 476 | $field_variable = 'dashboard'; |
| 477 | 477 | $extra_user_data = UserManager::get_extra_user_data_by_field($user_id, $field_variable); |
| 478 | - $extra_user_data = explode(';',$extra_user_data[$field_variable]); |
|
| 478 | + $extra_user_data = explode(';', $extra_user_data[$field_variable]); |
|
| 479 | 479 | $data = array(); |
| 480 | 480 | foreach ($extra_user_data as $extra) { |
| 481 | - $split_extra = explode(':',$extra); |
|
| 481 | + $split_extra = explode(':', $extra); |
|
| 482 | 482 | if (!empty($split_extra)) { |
| 483 | 483 | $block_id = $split_extra[0]; |
| 484 | 484 | $column = isset($split_extra[1]) ? $split_extra[1] : null; |
@@ -380,7 +380,9 @@ |
||
| 380 | 380 | // check if user is allowed to see the block |
| 381 | 381 | if (method_exists($obj_block, 'is_block_visible_for_user')) { |
| 382 | 382 | $is_block_visible_for_user = $obj_block->is_block_visible_for_user($user_id); |
| 383 | - if (!$is_block_visible_for_user) continue; |
|
| 383 | + if (!$is_block_visible_for_user) { |
|
| 384 | + continue; |
|
| 385 | + } |
|
| 384 | 386 | } |
| 385 | 387 | |
| 386 | 388 | echo '<tr>'; |
@@ -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 | /** |
@@ -44,21 +44,21 @@ discard block |
||
| 44 | 44 | $html .= '<li>'; |
| 45 | 45 | } |
| 46 | 46 | $params['section'] = $section; |
| 47 | - $html .='<a href="system_status.php?section='.$section.'">'.get_lang($section).'</a></li>'; |
|
| 47 | + $html .= '<a href="system_status.php?section='.$section.'">'.get_lang($section).'</a></li>'; |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | $html .= '</ul><div class="tab-pane">'; |
| 51 | 51 | |
| 52 | - $data = call_user_func(array($this, 'get_' . $current_section . '_data')); |
|
| 52 | + $data = call_user_func(array($this, 'get_'.$current_section.'_data')); |
|
| 53 | 53 | echo $html; |
| 54 | 54 | $table = new SortableTableFromArray($data, 1, 100); |
| 55 | 55 | |
| 56 | - $table->set_header(0,'', false); |
|
| 57 | - $table->set_header(1,get_lang('Section'), false); |
|
| 58 | - $table->set_header(2,get_lang('Setting'), false); |
|
| 59 | - $table->set_header(3,get_lang('Current'), false); |
|
| 60 | - $table->set_header(4,get_lang('Expected'), false); |
|
| 61 | - $table->set_header(5,get_lang('Comment'), false); |
|
| 56 | + $table->set_header(0, '', false); |
|
| 57 | + $table->set_header(1, get_lang('Section'), false); |
|
| 58 | + $table->set_header(2, get_lang('Setting'), false); |
|
| 59 | + $table->set_header(3, get_lang('Current'), false); |
|
| 60 | + $table->set_header(4, get_lang('Expected'), false); |
|
| 61 | + $table->set_header(5, get_lang('Comment'), false); |
|
| 62 | 62 | |
| 63 | 63 | $table->display(); |
| 64 | 64 | echo '</div></div>'; |
@@ -72,11 +72,11 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | $array = array(); |
| 74 | 74 | $writable_folders = array( |
| 75 | - api_get_path(SYS_APP_PATH) .'cache', |
|
| 75 | + api_get_path(SYS_APP_PATH).'cache', |
|
| 76 | 76 | api_get_path(SYS_COURSE_PATH), |
| 77 | - api_get_path(SYS_APP_PATH) .'home', |
|
| 78 | - api_get_path(SYS_APP_PATH) .'upload/users/', |
|
| 79 | - api_get_path(SYS_PATH) .'main/default_course_document/images/', |
|
| 77 | + api_get_path(SYS_APP_PATH).'home', |
|
| 78 | + api_get_path(SYS_APP_PATH).'upload/users/', |
|
| 79 | + api_get_path(SYS_PATH).'main/default_course_document/images/', |
|
| 80 | 80 | ); |
| 81 | 81 | |
| 82 | 82 | foreach ($writable_folders as $index => $folder) { |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $array[] = $this->build_setting( |
| 100 | 100 | $status, |
| 101 | 101 | '[FILES]', |
| 102 | - get_lang('DirectoryExists') . ': /install', |
|
| 102 | + get_lang('DirectoryExists').': /install', |
|
| 103 | 103 | 'http://be2.php.net/file_exists', |
| 104 | 104 | $exists, |
| 105 | 105 | 0, |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuredOnWindows'); |
| 130 | 130 | } else { |
| 131 | 131 | $dir = api_get_path(SYS_PATH); |
| 132 | - $du = exec('du -sh ' . $dir, $err); |
|
| 132 | + $du = exec('du -sh '.$dir, $err); |
|
| 133 | 133 | list($size, $none) = explode("\t", $du); |
| 134 | 134 | $limit = $_configuration[$access_url_id]['hosting_limit_disk_space']; |
| 135 | 135 | $message2 .= sprintf(get_lang('TotalSpaceUsedByPortalXLimitIsYMB'), $size, $limit); |
@@ -216,33 +216,33 @@ discard block |
||
| 216 | 216 | $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')); |
| 217 | 217 | |
| 218 | 218 | $setting = ini_get('max_execution_time'); |
| 219 | - $req_setting = '300 (' . get_lang('Minimum') . ')'; |
|
| 219 | + $req_setting = '300 ('.get_lang('Minimum').')'; |
|
| 220 | 220 | $status = $setting >= 300 ? self :: STATUS_OK : self :: STATUS_WARNING; |
| 221 | 221 | $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')); |
| 222 | 222 | |
| 223 | 223 | $setting = ini_get('max_input_time'); |
| 224 | - $req_setting = '300 (' . get_lang('Minimum') . ')'; |
|
| 224 | + $req_setting = '300 ('.get_lang('Minimum').')'; |
|
| 225 | 225 | $status = $setting >= 300 ? self :: STATUS_OK : self :: STATUS_WARNING; |
| 226 | 226 | $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')); |
| 227 | 227 | |
| 228 | 228 | $setting = ini_get('memory_limit'); |
| 229 | 229 | $req_setting = '>= '.REQUIRED_MIN_MEMORY_LIMIT.'M'; |
| 230 | 230 | $status = self :: STATUS_ERROR; |
| 231 | - if ((float)$setting >= REQUIRED_MIN_MEMORY_LIMIT) |
|
| 231 | + if ((float) $setting >= REQUIRED_MIN_MEMORY_LIMIT) |
|
| 232 | 232 | $status = self :: STATUS_OK; |
| 233 | 233 | $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')); |
| 234 | 234 | |
| 235 | 235 | $setting = ini_get('post_max_size'); |
| 236 | 236 | $req_setting = '>= '.REQUIRED_MIN_POST_MAX_SIZE.'M'; |
| 237 | 237 | $status = self :: STATUS_ERROR; |
| 238 | - if ((float)$setting >= REQUIRED_MIN_POST_MAX_SIZE) |
|
| 238 | + if ((float) $setting >= REQUIRED_MIN_POST_MAX_SIZE) |
|
| 239 | 239 | $status = self :: STATUS_OK; |
| 240 | 240 | $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')); |
| 241 | 241 | |
| 242 | 242 | $setting = ini_get('upload_max_filesize'); |
| 243 | 243 | $req_setting = '>= '.REQUIRED_MIN_UPLOAD_MAX_FILESIZE.'M'; |
| 244 | 244 | $status = self :: STATUS_ERROR; |
| 245 | - if ((float)$setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) |
|
| 245 | + if ((float) $setting >= REQUIRED_MIN_UPLOAD_MAX_FILESIZE) |
|
| 246 | 246 | $status = self :: STATUS_OK; |
| 247 | 247 | $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')); |
| 248 | 248 | |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
| 257 | 257 | $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')); |
| 258 | 258 | |
| 259 | - if (api_check_browscap()){$setting = true;}else{$setting=false;} |
|
| 259 | + if (api_check_browscap()) {$setting = true; } else {$setting = false; } |
|
| 260 | 260 | $req_setting = true; |
| 261 | 261 | $status = $setting == $req_setting ? self :: STATUS_OK : self :: STATUS_WARNING; |
| 262 | 262 | $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')); |
@@ -312,7 +312,7 @@ discard block |
||
| 312 | 312 | |
| 313 | 313 | $loaded = extension_loaded($extension); |
| 314 | 314 | $status = $loaded ? self :: STATUS_OK : self :: STATUS_ERROR; |
| 315 | - $array[] = $this->build_setting($status, '[EXTENSION]', get_lang('LoadedExtension') . ': ' . $extension, $url, $loaded, $expected_value, 'yes_no_optional', $comment); |
|
| 315 | + $array[] = $this->build_setting($status, '[EXTENSION]', get_lang('LoadedExtension').': '.$extension, $url, $loaded, $expected_value, 'yes_no_optional', $comment); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | return $array; |
@@ -435,9 +435,9 @@ discard block |
||
| 435 | 435 | $formatted_expected_value = $expected_value; |
| 436 | 436 | |
| 437 | 437 | if ($formatter) { |
| 438 | - if (method_exists($this, 'format_' . $formatter)) { |
|
| 439 | - $formatted_current_value = call_user_func(array($this, 'format_' . $formatter), $current_value); |
|
| 440 | - $formatted_expected_value = call_user_func(array($this, 'format_' . $formatter), $expected_value); |
|
| 438 | + if (method_exists($this, 'format_'.$formatter)) { |
|
| 439 | + $formatted_current_value = call_user_func(array($this, 'format_'.$formatter), $current_value); |
|
| 440 | + $formatted_expected_value = call_user_func(array($this, 'format_'.$formatter), $expected_value); |
|
| 441 | 441 | } |
| 442 | 442 | } |
| 443 | 443 | |
@@ -452,13 +452,13 @@ discard block |
||
| 452 | 452 | */ |
| 453 | 453 | public function get_link($title, $url) |
| 454 | 454 | { |
| 455 | - return '<a href="' . $url . '" target="about:bank">' . $title . '</a>'; |
|
| 455 | + return '<a href="'.$url.'" target="about:bank">'.$title.'</a>'; |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | public function format_yes_no_optional($value) |
| 459 | 459 | { |
| 460 | 460 | $return = ''; |
| 461 | - switch($value) { |
|
| 461 | + switch ($value) { |
|
| 462 | 462 | case 0: |
| 463 | 463 | $return = get_lang('No'); |
| 464 | 464 | break; |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | - * @return array |
|
| 35 | + * @return string[] |
|
| 36 | 36 | */ |
| 37 | 37 | public static function toolList() |
| 38 | 38 | { |
@@ -290,7 +290,6 @@ discard block |
||
| 290 | 290 | * 'page_nr' = The page to display |
| 291 | 291 | * 'hide_navigation' = true to hide the navigation |
| 292 | 292 | * @param array $query_vars Additional variables to add in the query-string |
| 293 | - * @param array $form actions Additional variables to add in the query-string |
|
| 294 | 293 | * @param mixed An array with bool values to know which columns show. |
| 295 | 294 | * i.e: $visibility_options= array(true, false) we will only show the first column |
| 296 | 295 | * Can be also only a bool value. TRUE: show all columns, FALSE: show nothing |
@@ -331,7 +330,6 @@ discard block |
||
| 331 | 330 | * 'page_nr' = The page to display |
| 332 | 331 | * 'hide_navigation' = true to hide the navigation |
| 333 | 332 | * @param array $query_vars Additional variables to add in the query-string |
| 334 | - * @param array $form actions Additional variables to add in the query-string |
|
| 335 | 333 | * @param mixed An array with bool values to know which columns show. i.e: |
| 336 | 334 | * $visibility_options= array(true, false) we will only show the first column |
| 337 | 335 | * Can be also only a bool value. TRUE: show all columns, FALSE: show nothing |
@@ -388,10 +386,11 @@ discard block |
||
| 388 | 386 | * 'per_page' = number of items to show per page |
| 389 | 387 | * 'page_nr' = The page to display |
| 390 | 388 | * @param array $query_vars Additional variables to add in the query-string |
| 391 | - * @param array $column_show Array of binaries 1= show columns 0. hide a column |
|
| 389 | + * @param integer[] $column_show Array of binaries 1= show columns 0. hide a column |
|
| 392 | 390 | * @param array $column_order An array of integers that let us decide how the columns are going to be sort. |
| 393 | 391 | * i.e: $column_order=array('1''4','3','4'); The 2nd column will be order like the 4th column |
| 394 | 392 | * @param array $form_actions Set optional forms actions |
| 393 | + * @param string $table_name |
|
| 395 | 394 | * |
| 396 | 395 | * @author Julio Montoya |
| 397 | 396 | */ |
@@ -444,7 +443,7 @@ discard block |
||
| 444 | 443 | * @param bool $filter (true) or not (false) |
| 445 | 444 | * @param bool $returnValue |
| 446 | 445 | * |
| 447 | - * @return void |
|
| 446 | + * @return string|null |
|
| 448 | 447 | */ |
| 449 | 448 | public static function display_normal_message($message, $filter = true, $returnValue = false) |
| 450 | 449 | { |
@@ -474,7 +473,7 @@ discard block |
||
| 474 | 473 | /** |
| 475 | 474 | * Displays an confirmation message. Use this if something has been done successfully |
| 476 | 475 | * @param bool Filter (true) or not (false) |
| 477 | - * @return void |
|
| 476 | + * @return string|null |
|
| 478 | 477 | */ |
| 479 | 478 | public static function display_confirmation_message ($message, $filter = true, $returnValue = false) |
| 480 | 479 | { |
@@ -491,7 +490,7 @@ discard block |
||
| 491 | 490 | * @param string $message - include any additional html |
| 492 | 491 | * tags if you need them |
| 493 | 492 | * @param bool Filter (true) or not (false) |
| 494 | - * @return void |
|
| 493 | + * @return string|null |
|
| 495 | 494 | */ |
| 496 | 495 | public static function display_error_message ($message, $filter = true, $returnValue = false) |
| 497 | 496 | { |
@@ -681,6 +680,7 @@ discard block |
||
| 681 | 680 | * @param string The alt text (probably a language variable) |
| 682 | 681 | * @param array additional attributes (for instance height, width, onclick, ...) |
| 683 | 682 | * @param integer The wanted width of the icon (to be looked for in the corresponding img/icons/ folder) |
| 683 | + * @param string $image |
|
| 684 | 684 | * @return void |
| 685 | 685 | */ |
| 686 | 686 | public static function display_icon( |
@@ -881,6 +881,7 @@ discard block |
||
| 881 | 881 | /** |
| 882 | 882 | * Displays an HTML input tag |
| 883 | 883 | * |
| 884 | + * @param string $type |
|
| 884 | 885 | */ |
| 885 | 886 | public static function input($type, $name, $value, $attributes = array()) |
| 886 | 887 | { |
@@ -897,8 +898,8 @@ discard block |
||
| 897 | 898 | } |
| 898 | 899 | |
| 899 | 900 | /** |
| 900 | - * @param $name |
|
| 901 | - * @param $value |
|
| 901 | + * @param string $name |
|
| 902 | + * @param string $value |
|
| 902 | 903 | * @param array $attributes |
| 903 | 904 | * @return string |
| 904 | 905 | */ |
@@ -913,6 +914,7 @@ discard block |
||
| 913 | 914 | /** |
| 914 | 915 | * Displays an HTML select tag |
| 915 | 916 | * |
| 917 | + * @param string $blank_item_text |
|
| 916 | 918 | */ |
| 917 | 919 | public static function select( |
| 918 | 920 | $name, |
@@ -983,6 +985,8 @@ discard block |
||
| 983 | 985 | * @param array content that will be showed |
| 984 | 986 | * @param string the id of the container of the tab in the example "tabs" |
| 985 | 987 | * @param array attributes for the ul |
| 988 | + * @param string[] $header_list |
|
| 989 | + * @param string[] $content_list |
|
| 986 | 990 | * |
| 987 | 991 | */ |
| 988 | 992 | public static function tabs($header_list, $content_list, $id = 'tabs', $attributes = array(), $ul_attributes = array()) |
@@ -1029,7 +1033,7 @@ discard block |
||
| 1029 | 1033 | |
| 1030 | 1034 | /** |
| 1031 | 1035 | * @param $headers |
| 1032 | - * @param null $selected |
|
| 1036 | + * @param integer $selected |
|
| 1033 | 1037 | * |
| 1034 | 1038 | * @return string |
| 1035 | 1039 | */ |
@@ -1067,6 +1071,7 @@ discard block |
||
| 1067 | 1071 | * As you can see both function use the same "my_grid_name" this is very important otherwise nothing will work |
| 1068 | 1072 | * |
| 1069 | 1073 | * @param string the div id, this value must be the same with the first parameter of Display::grid_js() |
| 1074 | + * @param string $div_id |
|
| 1070 | 1075 | * @return string html |
| 1071 | 1076 | * |
| 1072 | 1077 | */ |
@@ -1622,6 +1627,8 @@ discard block |
||
| 1622 | 1627 | * @param string url that will be added (for jquery see hot_courses.tpl) |
| 1623 | 1628 | * @param string point info array see function CourseManager::get_course_ranking() |
| 1624 | 1629 | * @param bool add a div wrapper |
| 1630 | + * @param string $id |
|
| 1631 | + * @param string $url |
|
| 1625 | 1632 | * @todo use templates |
| 1626 | 1633 | **/ |
| 1627 | 1634 | public static function return_rating_system($id, $url, $point_info = array(), $add_div_wrapper = true) |
@@ -1717,6 +1724,9 @@ discard block |
||
| 1717 | 1724 | return '<'.$size.'>'.Security::remove_XSS($title).'</'.$size.'>'; |
| 1718 | 1725 | } |
| 1719 | 1726 | |
| 1727 | + /** |
|
| 1728 | + * @param string $title |
|
| 1729 | + */ |
|
| 1720 | 1730 | public static function page_subheader2($title, $second_title = null) |
| 1721 | 1731 | { |
| 1722 | 1732 | return self::page_header($title, $second_title, 'h4'); |
@@ -1947,6 +1957,7 @@ discard block |
||
| 1947 | 1957 | |
| 1948 | 1958 | /** |
| 1949 | 1959 | * @todo use twig |
| 1960 | + * @param string $title |
|
| 1950 | 1961 | */ |
| 1951 | 1962 | public static function group_button($title, $elements) |
| 1952 | 1963 | { |
@@ -2164,9 +2175,9 @@ discard block |
||
| 2164 | 2175 | |
| 2165 | 2176 | /** |
| 2166 | 2177 | * @param int $id |
| 2167 | - * @param array $content |
|
| 2178 | + * @param string[] $content |
|
| 2168 | 2179 | * @param int $col |
| 2169 | - * @param bool|true $right |
|
| 2180 | + * @param boolean $right |
|
| 2170 | 2181 | * @return string |
| 2171 | 2182 | */ |
| 2172 | 2183 | public static function toolbarAction($id, $content = array(), $col = 2, $right = true) |
@@ -2248,10 +2259,10 @@ discard block |
||
| 2248 | 2259 | /** |
| 2249 | 2260 | * @param string $title |
| 2250 | 2261 | * @param string $content |
| 2251 | - * @param null $id |
|
| 2262 | + * @param string $id |
|
| 2252 | 2263 | * @param array $params |
| 2253 | - * @param null $idAccordion |
|
| 2254 | - * @param null $idCollapse |
|
| 2264 | + * @param string $idAccordion |
|
| 2265 | + * @param string $idCollapse |
|
| 2255 | 2266 | * @param bool|true $open |
| 2256 | 2267 | * @param bool|false $fullClickable |
| 2257 | 2268 | * @return null|string |
@@ -49,12 +49,12 @@ discard block |
||
| 49 | 49 | ); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Displays the page header |
|
| 54 | - * @param string The name of the page (will be showed in the page title) |
|
| 55 | - * @param string Optional help file name |
|
| 56 | - * @param string $page_header |
|
| 57 | - */ |
|
| 52 | + /** |
|
| 53 | + * Displays the page header |
|
| 54 | + * @param string The name of the page (will be showed in the page title) |
|
| 55 | + * @param string Optional help file name |
|
| 56 | + * @param string $page_header |
|
| 57 | + */ |
|
| 58 | 58 | public static function display_header($tool_name ='', $help = null, $page_header = null) |
| 59 | 59 | { |
| 60 | 60 | $origin = api_get_origin(); |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | */ |
| 449 | 449 | public static function display_normal_message($message, $filter = true, $returnValue = false) |
| 450 | 450 | { |
| 451 | - $message = self::return_message($message, 'normal', $filter); |
|
| 451 | + $message = self::return_message($message, 'normal', $filter); |
|
| 452 | 452 | if ($returnValue) { |
| 453 | 453 | return $message; |
| 454 | 454 | } else { |
@@ -524,22 +524,22 @@ discard block |
||
| 524 | 524 | public static function return_message($message, $type = 'normal', $filter = true) |
| 525 | 525 | { |
| 526 | 526 | if ($filter) { |
| 527 | - $message = api_htmlentities($message, ENT_QUOTES, api_is_xml_http_request() ? 'UTF-8' : api_get_system_encoding()); |
|
| 527 | + $message = api_htmlentities($message, ENT_QUOTES, api_is_xml_http_request() ? 'UTF-8' : api_get_system_encoding()); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | 530 | $class = ""; |
| 531 | 531 | switch($type) { |
| 532 | 532 | case 'warning': |
| 533 | 533 | $class .= 'alert alert-warning'; |
| 534 | - break; |
|
| 534 | + break; |
|
| 535 | 535 | case 'error': |
| 536 | 536 | $class .= 'alert alert-danger'; |
| 537 | - break; |
|
| 537 | + break; |
|
| 538 | 538 | case 'confirmation': |
| 539 | 539 | case 'confirm': |
| 540 | 540 | case 'success': |
| 541 | 541 | $class .= 'alert alert-success'; |
| 542 | - break; |
|
| 542 | + break; |
|
| 543 | 543 | case 'normal': |
| 544 | 544 | default: |
| 545 | 545 | $class .= 'alert alert-info'; |
@@ -682,7 +682,7 @@ discard block |
||
| 682 | 682 | * @param array additional attributes (for instance height, width, onclick, ...) |
| 683 | 683 | * @param integer The wanted width of the icon (to be looked for in the corresponding img/icons/ folder) |
| 684 | 684 | * @return void |
| 685 | - */ |
|
| 685 | + */ |
|
| 686 | 686 | public static function display_icon( |
| 687 | 687 | $image, |
| 688 | 688 | $alt_text = '', |
@@ -705,7 +705,7 @@ discard block |
||
| 705 | 705 | * @author Julio Montoya 2010 Function improved, adding image constants |
| 706 | 706 | * @author Yannick Warnier 2011 Added size handler |
| 707 | 707 | * @version Feb 2011 |
| 708 | - */ |
|
| 708 | + */ |
|
| 709 | 709 | public static function return_icon( |
| 710 | 710 | $image, |
| 711 | 711 | $alt_text = '', |
@@ -884,14 +884,14 @@ discard block |
||
| 884 | 884 | */ |
| 885 | 885 | public static function input($type, $name, $value, $attributes = array()) |
| 886 | 886 | { |
| 887 | - if (isset($type)) { |
|
| 888 | - $attributes['type']= $type; |
|
| 889 | - } |
|
| 890 | - if (isset($name)) { |
|
| 891 | - $attributes['name']= $name; |
|
| 892 | - } |
|
| 893 | - if (isset($value)) { |
|
| 894 | - $attributes['value']= $value; |
|
| 887 | + if (isset($type)) { |
|
| 888 | + $attributes['type']= $type; |
|
| 889 | + } |
|
| 890 | + if (isset($name)) { |
|
| 891 | + $attributes['name']= $name; |
|
| 892 | + } |
|
| 893 | + if (isset($value)) { |
|
| 894 | + $attributes['value']= $value; |
|
| 895 | 895 | } |
| 896 | 896 | return self::tag('input', '', $attributes); |
| 897 | 897 | } |
@@ -904,10 +904,10 @@ discard block |
||
| 904 | 904 | */ |
| 905 | 905 | public static function button($name, $value, $attributes = array()) |
| 906 | 906 | { |
| 907 | - if (!empty($name)) { |
|
| 907 | + if (!empty($name)) { |
|
| 908 | 908 | $attributes['name'] = $name; |
| 909 | - } |
|
| 910 | - return self::tag('button', $value, $attributes); |
|
| 909 | + } |
|
| 910 | + return self::tag('button', $value, $attributes); |
|
| 911 | 911 | } |
| 912 | 912 | |
| 913 | 913 | /** |
@@ -974,7 +974,7 @@ discard block |
||
| 974 | 974 | * in the $htmlHeadXtra variable before the display_header |
| 975 | 975 | * Add this script |
| 976 | 976 | * @example |
| 977 | - * <script> |
|
| 977 | + * <script> |
|
| 978 | 978 | $(function() { |
| 979 | 979 | $( "#tabs" ).tabs(); |
| 980 | 980 | }); |
@@ -1035,20 +1035,20 @@ discard block |
||
| 1035 | 1035 | */ |
| 1036 | 1036 | public static function tabsOnlyLink($headers, $selected = null) |
| 1037 | 1037 | { |
| 1038 | - $id = uniqid(); |
|
| 1039 | - $i = 1; |
|
| 1040 | - $lis = null; |
|
| 1041 | - foreach ($headers as $item) { |
|
| 1038 | + $id = uniqid(); |
|
| 1039 | + $i = 1; |
|
| 1040 | + $lis = null; |
|
| 1041 | + foreach ($headers as $item) { |
|
| 1042 | 1042 | $class = null; |
| 1043 | 1043 | if ($i == $selected) { |
| 1044 | 1044 | $class = 'active'; |
| 1045 | 1045 | } |
| 1046 | - $item = self::tag( |
|
| 1047 | - 'a', |
|
| 1048 | - $item['content'], |
|
| 1049 | - array('id' => $id.'-'.$i, 'href' => $item['url']) |
|
| 1050 | - ); |
|
| 1051 | - $lis .= self::tag('li', $item, array('class' => $class)); |
|
| 1046 | + $item = self::tag( |
|
| 1047 | + 'a', |
|
| 1048 | + $item['content'], |
|
| 1049 | + array('id' => $id.'-'.$i, 'href' => $item['url']) |
|
| 1050 | + ); |
|
| 1051 | + $lis .= self::tag('li', $item, array('class' => $class)); |
|
| 1052 | 1052 | $i++; |
| 1053 | 1053 | } |
| 1054 | 1054 | return self::tag('ul', $lis, array('class' => 'nav nav-tabs tabs-margin')); |
@@ -1260,8 +1260,8 @@ discard block |
||
| 1260 | 1260 | */ |
| 1261 | 1261 | public static function table($headers, $rows, $attributes = array()) |
| 1262 | 1262 | { |
| 1263 | - if (empty($attributes)) { |
|
| 1264 | - $attributes['class'] = 'data_table'; |
|
| 1263 | + if (empty($attributes)) { |
|
| 1264 | + $attributes['class'] = 'data_table'; |
|
| 1265 | 1265 | } |
| 1266 | 1266 | $table = new HTML_Table($attributes); |
| 1267 | 1267 | $row = 0; |
@@ -1269,17 +1269,17 @@ discard block |
||
| 1269 | 1269 | |
| 1270 | 1270 | // Course headers |
| 1271 | 1271 | if (!empty($headers)) { |
| 1272 | - foreach ($headers as $item) { |
|
| 1273 | - $table->setHeaderContents($row, $column, $item); |
|
| 1274 | - $column++; |
|
| 1275 | - } |
|
| 1276 | - $row = 1; |
|
| 1277 | - $column = 0; |
|
| 1272 | + foreach ($headers as $item) { |
|
| 1273 | + $table->setHeaderContents($row, $column, $item); |
|
| 1274 | + $column++; |
|
| 1275 | + } |
|
| 1276 | + $row = 1; |
|
| 1277 | + $column = 0; |
|
| 1278 | 1278 | } |
| 1279 | 1279 | |
| 1280 | 1280 | if (!empty($rows)) { |
| 1281 | - foreach($rows as $content) { |
|
| 1282 | - $table->setCellContents($row, $column, $content); |
|
| 1281 | + foreach($rows as $content) { |
|
| 1282 | + $table->setCellContents($row, $column, $content); |
|
| 1283 | 1283 | $row++; |
| 1284 | 1284 | } |
| 1285 | 1285 | } |
@@ -1385,7 +1385,7 @@ discard block |
||
| 1385 | 1385 | //$item_property['tool'] != TOOL_DROPBOX && |
| 1386 | 1386 | $item_property['tool'] != TOOL_NOTEBOOK && |
| 1387 | 1387 | $item_property['tool'] != TOOL_CHAT) |
| 1388 | - ) |
|
| 1388 | + ) |
|
| 1389 | 1389 | ) |
| 1390 | 1390 | // Take only what's visible or "invisible but where the user is a teacher" or where the visibility is unset. |
| 1391 | 1391 | && ($item_property['visibility'] == '1' |
@@ -1401,7 +1401,7 @@ discard block |
||
| 1401 | 1401 | ($item_property['to_user_id'] != $user_id) && |
| 1402 | 1402 | (!isset($item_property['to_group_id']) || !in_array($item_property['to_group_id'], $group_ids))) |
| 1403 | 1403 | ) { |
| 1404 | - continue; |
|
| 1404 | + continue; |
|
| 1405 | 1405 | } |
| 1406 | 1406 | |
| 1407 | 1407 | // If it's a survey, make sure the user's invited. Otherwise drop it. |
@@ -1620,21 +1620,21 @@ discard block |
||
| 1620 | 1620 | * |
| 1621 | 1621 | * @param string id of the rating ul element |
| 1622 | 1622 | * @param string url that will be added (for jquery see hot_courses.tpl) |
| 1623 | - * @param string point info array see function CourseManager::get_course_ranking() |
|
| 1624 | - * @param bool add a div wrapper |
|
| 1625 | - * @todo use templates |
|
| 1623 | + * @param string point info array see function CourseManager::get_course_ranking() |
|
| 1624 | + * @param bool add a div wrapper |
|
| 1625 | + * @todo use templates |
|
| 1626 | 1626 | **/ |
| 1627 | 1627 | public static function return_rating_system($id, $url, $point_info = array(), $add_div_wrapper = true) |
| 1628 | 1628 | { |
| 1629 | - $number_of_users_who_voted = isset($point_info['users_who_voted']) ? $point_info['users_who_voted'] : null; |
|
| 1630 | - $percentage = isset($point_info['point_average']) ? $point_info['point_average'] : 0; |
|
| 1629 | + $number_of_users_who_voted = isset($point_info['users_who_voted']) ? $point_info['users_who_voted'] : null; |
|
| 1630 | + $percentage = isset($point_info['point_average']) ? $point_info['point_average'] : 0; |
|
| 1631 | 1631 | |
| 1632 | - if (!empty($percentage)) { |
|
| 1632 | + if (!empty($percentage)) { |
|
| 1633 | 1633 | $percentage = $percentage*125/100; |
| 1634 | 1634 | } |
| 1635 | - $accesses = isset($point_info['accesses']) ? $point_info['accesses'] : 0; |
|
| 1635 | + $accesses = isset($point_info['accesses']) ? $point_info['accesses'] : 0; |
|
| 1636 | 1636 | |
| 1637 | - $star_label = sprintf(get_lang('XStarsOutOf5'), $point_info['point_average_star']); |
|
| 1637 | + $star_label = sprintf(get_lang('XStarsOutOf5'), $point_info['point_average_star']); |
|
| 1638 | 1638 | |
| 1639 | 1639 | $html = '<ul id="'.$id.'" class="star-rating"> |
| 1640 | 1640 | <li class="current-rating" style="width:'.$percentage.'px;"></li> |
@@ -1645,26 +1645,26 @@ discard block |
||
| 1645 | 1645 | <li><a href="javascript:void(0);" data-link="'.$url.'&star=5" title="'.$star_label.'" class="five-stars">5</a></li> |
| 1646 | 1646 | </ul>'; |
| 1647 | 1647 | |
| 1648 | - $labels = array(); |
|
| 1648 | + $labels = array(); |
|
| 1649 | 1649 | |
| 1650 | - $labels[]= $number_of_users_who_voted == 1 ? $number_of_users_who_voted.' '.get_lang('Vote') : $number_of_users_who_voted.' '.get_lang('Votes'); |
|
| 1651 | - $labels[]= $accesses == 1 ? $accesses.' '.get_lang('Visit') : $accesses.' '.get_lang('Visits'); |
|
| 1652 | - if (!empty($number_of_users_who_voted)) { |
|
| 1653 | - $labels[]= get_lang('Average').' '.$point_info['point_average_star'].'/5'; |
|
| 1654 | - } |
|
| 1650 | + $labels[]= $number_of_users_who_voted == 1 ? $number_of_users_who_voted.' '.get_lang('Vote') : $number_of_users_who_voted.' '.get_lang('Votes'); |
|
| 1651 | + $labels[]= $accesses == 1 ? $accesses.' '.get_lang('Visit') : $accesses.' '.get_lang('Visits'); |
|
| 1652 | + if (!empty($number_of_users_who_voted)) { |
|
| 1653 | + $labels[]= get_lang('Average').' '.$point_info['point_average_star'].'/5'; |
|
| 1654 | + } |
|
| 1655 | 1655 | |
| 1656 | - $labels[]= $point_info['user_vote'] ? get_lang('YourVote').' ['.$point_info['user_vote'].']' : get_lang('YourVote'). ' [?] '; |
|
| 1656 | + $labels[]= $point_info['user_vote'] ? get_lang('YourVote').' ['.$point_info['user_vote'].']' : get_lang('YourVote'). ' [?] '; |
|
| 1657 | 1657 | |
| 1658 | - if (!$add_div_wrapper && api_is_anonymous()) { |
|
| 1659 | - $labels[]= Display::tag('span', get_lang('LoginToVote'), array('class' => 'error')); |
|
| 1660 | - } |
|
| 1658 | + if (!$add_div_wrapper && api_is_anonymous()) { |
|
| 1659 | + $labels[]= Display::tag('span', get_lang('LoginToVote'), array('class' => 'error')); |
|
| 1660 | + } |
|
| 1661 | 1661 | |
| 1662 | 1662 | $html .= Display::div(implode(' | ', $labels) , array('id' => 'vote_label_'.$id, 'class' => 'vote_label_info')); |
| 1663 | 1663 | $html .= ' '.Display::span(' ', array('id' => 'vote_label2_'.$id)); |
| 1664 | 1664 | |
| 1665 | 1665 | if ($add_div_wrapper) { |
| 1666 | - $html = Display::div($html, array('id' => 'rating_wrapper_'.$id)); |
|
| 1667 | - } |
|
| 1666 | + $html = Display::div($html, array('id' => 'rating_wrapper_'.$id)); |
|
| 1667 | + } |
|
| 1668 | 1668 | |
| 1669 | 1669 | return $html; |
| 1670 | 1670 | } |
@@ -1702,8 +1702,8 @@ discard block |
||
| 1702 | 1702 | return self::page_header($title, $second_title); |
| 1703 | 1703 | } |
| 1704 | 1704 | |
| 1705 | - public static function page_subheader_and_translate($title, $second_title = null) |
|
| 1706 | - { |
|
| 1705 | + public static function page_subheader_and_translate($title, $second_title = null) |
|
| 1706 | + { |
|
| 1707 | 1707 | $title = get_lang($title); |
| 1708 | 1708 | return self::page_subheader($title, $second_title); |
| 1709 | 1709 | } |
@@ -666,9 +666,10 @@ |
||
| 666 | 666 | $result = ''; |
| 667 | 667 | for ($i = $min; $i <= $max; $i ++) { |
| 668 | 668 | $result .= '<option value="'.$i.'"'; |
| 669 | - if (is_int($selected_num)) |
|
| 670 | - if ($selected_num == $i) { |
|
| 669 | + if (is_int($selected_num)) { |
|
| 670 | + if ($selected_num == $i) { |
|
| 671 | 671 | $result .= ' selected="selected"'; |
| 672 | + } |
|
| 672 | 673 | } |
| 673 | 674 | $result .= '>'.$i.'</option>'; |
| 674 | 675 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @param string Optional help file name |
| 56 | 56 | * @param string $page_header |
| 57 | 57 | */ |
| 58 | - public static function display_header($tool_name ='', $help = null, $page_header = null) |
|
| 58 | + public static function display_header($tool_name = '', $help = null, $page_header = null) |
|
| 59 | 59 | { |
| 60 | 60 | $origin = api_get_origin(); |
| 61 | 61 | $showHeader = true; |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | $grid_class = array(), |
| 352 | 352 | $elementCount = 0 |
| 353 | 353 | ) { |
| 354 | - $column = 0; |
|
| 354 | + $column = 0; |
|
| 355 | 355 | $default_items_per_page = isset($paging_options['per_page']) ? $paging_options['per_page'] : 20; |
| 356 | 356 | |
| 357 | 357 | $table = new SortableTableFromArray($content, $column, $default_items_per_page, $name); |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | * @param bool Filter (true) or not (false) |
| 477 | 477 | * @return void |
| 478 | 478 | */ |
| 479 | - public static function display_confirmation_message ($message, $filter = true, $returnValue = false) |
|
| 479 | + public static function display_confirmation_message($message, $filter = true, $returnValue = false) |
|
| 480 | 480 | { |
| 481 | 481 | $message = self::return_message($message, 'confirm', $filter); |
| 482 | 482 | if ($returnValue) { |
@@ -493,7 +493,7 @@ discard block |
||
| 493 | 493 | * @param bool Filter (true) or not (false) |
| 494 | 494 | * @return void |
| 495 | 495 | */ |
| 496 | - public static function display_error_message ($message, $filter = true, $returnValue = false) |
|
| 496 | + public static function display_error_message($message, $filter = true, $returnValue = false) |
|
| 497 | 497 | { |
| 498 | 498 | $message = self::return_message($message, 'error', $filter); |
| 499 | 499 | if ($returnValue) { |
@@ -508,7 +508,7 @@ discard block |
||
| 508 | 508 | * @param string $type |
| 509 | 509 | * @param bool $filter |
| 510 | 510 | */ |
| 511 | - public static function return_message_and_translate($message, $type='normal', $filter = true) |
|
| 511 | + public static function return_message_and_translate($message, $type = 'normal', $filter = true) |
|
| 512 | 512 | { |
| 513 | 513 | $message = get_lang($message); |
| 514 | 514 | echo self::return_message($message, $type, $filter); |
@@ -532,7 +532,7 @@ discard block |
||
| 532 | 532 | } |
| 533 | 533 | |
| 534 | 534 | $class = ""; |
| 535 | - switch($type) { |
|
| 535 | + switch ($type) { |
|
| 536 | 536 | case 'warning': |
| 537 | 537 | $class .= 'alert alert-warning'; |
| 538 | 538 | break; |
@@ -560,7 +560,7 @@ discard block |
||
| 560 | 560 | * @param string optional, class from stylesheet |
| 561 | 561 | * @return string encrypted mailto hyperlink |
| 562 | 562 | */ |
| 563 | - public static function encrypted_mailto_link ($email, $clickable_text = null, $style_class = '') |
|
| 563 | + public static function encrypted_mailto_link($email, $clickable_text = null, $style_class = '') |
|
| 564 | 564 | { |
| 565 | 565 | if (is_null($clickable_text)) { |
| 566 | 566 | $clickable_text = $email; |
@@ -575,14 +575,14 @@ discard block |
||
| 575 | 575 | } |
| 576 | 576 | // Encrypt email |
| 577 | 577 | $hmail = ''; |
| 578 | - for ($i = 0; $i < strlen($email); $i ++) { |
|
| 578 | + for ($i = 0; $i < strlen($email); $i++) { |
|
| 579 | 579 | $hmail .= '&#'.ord($email { |
| 580 | 580 | $i }).';'; |
| 581 | 581 | } |
| 582 | 582 | $hclickable_text = null; |
| 583 | 583 | // Encrypt clickable text if @ is present |
| 584 | 584 | if (strpos($clickable_text, '@')) { |
| 585 | - for ($i = 0; $i < strlen($clickable_text); $i ++) { |
|
| 585 | + for ($i = 0; $i < strlen($clickable_text); $i++) { |
|
| 586 | 586 | $hclickable_text .= '&#'.ord($clickable_text { |
| 587 | 587 | $i }).';'; |
| 588 | 588 | } |
@@ -614,7 +614,7 @@ discard block |
||
| 614 | 614 | } |
| 615 | 615 | // Encrypt email |
| 616 | 616 | $hmail = ''; |
| 617 | - for ($i = 0; $i < strlen($email); $i ++) { |
|
| 617 | + for ($i = 0; $i < strlen($email); $i++) { |
|
| 618 | 618 | $hmail .= '&#'.ord($email { |
| 619 | 619 | $i }).';'; |
| 620 | 620 | } |
@@ -647,7 +647,7 @@ discard block |
||
| 647 | 647 | public static function get_alphabet_options($selected_letter = '') |
| 648 | 648 | { |
| 649 | 649 | $result = ''; |
| 650 | - for ($i = 65; $i <= 90; $i ++) { |
|
| 650 | + for ($i = 65; $i <= 90; $i++) { |
|
| 651 | 651 | $letter = chr($i); |
| 652 | 652 | $result .= '<option value="'.$letter.'"'; |
| 653 | 653 | if ($selected_letter == $letter) { |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | public static function get_numeric_options($min, $max, $selected_num = 0) |
| 669 | 669 | { |
| 670 | 670 | $result = ''; |
| 671 | - for ($i = $min; $i <= $max; $i ++) { |
|
| 671 | + for ($i = $min; $i <= $max; $i++) { |
|
| 672 | 672 | $result .= '<option value="'.$i.'"'; |
| 673 | 673 | if (is_int($selected_num)) |
| 674 | 674 | if ($selected_num == $i) { |
@@ -745,7 +745,7 @@ discard block |
||
| 745 | 745 | $size = ICON_SIZE_SMALL; |
| 746 | 746 | } |
| 747 | 747 | |
| 748 | - $size_extra = $size . '/'; |
|
| 748 | + $size_extra = $size.'/'; |
|
| 749 | 749 | |
| 750 | 750 | // Checking the img/ folder |
| 751 | 751 | $icon = $w_code_path.'img/'.$image; |
@@ -753,7 +753,7 @@ discard block |
||
| 753 | 753 | $theme = 'themes/chamilo/icons/'; |
| 754 | 754 | |
| 755 | 755 | if ($loadThemeIcon) { |
| 756 | - $theme = 'themes/' . api_get_visual_theme() . '/icons/'; |
|
| 756 | + $theme = 'themes/'.api_get_visual_theme().'/icons/'; |
|
| 757 | 757 | // Checking the theme icons folder example: app/Resources/public/css/themes/chamilo/icons/XXX |
| 758 | 758 | if (is_file($alternateCssPath.$theme.$size_extra.$image)) { |
| 759 | 759 | $icon = $alternateWebCssPath.$theme.$size_extra.$image; |
@@ -859,7 +859,7 @@ discard block |
||
| 859 | 859 | } |
| 860 | 860 | } |
| 861 | 861 | //some tags don't have this </XXX> |
| 862 | - if (in_array($tag, array('img','input','br'))) { |
|
| 862 | + if (in_array($tag, array('img', 'input', 'br'))) { |
|
| 863 | 863 | $return_value = '<'.$tag.' '.$attribute_list.' />'; |
| 864 | 864 | } else { |
| 865 | 865 | $return_value = '<'.$tag.' '.$attribute_list.' > '.$content.'</'.$tag.'>'; |
@@ -912,13 +912,13 @@ discard block |
||
| 912 | 912 | public static function input($type, $name, $value, $attributes = array()) |
| 913 | 913 | { |
| 914 | 914 | if (isset($type)) { |
| 915 | - $attributes['type']= $type; |
|
| 915 | + $attributes['type'] = $type; |
|
| 916 | 916 | } |
| 917 | 917 | if (isset($name)) { |
| 918 | - $attributes['name']= $name; |
|
| 918 | + $attributes['name'] = $name; |
|
| 919 | 919 | } |
| 920 | 920 | if (isset($value)) { |
| 921 | - $attributes['value']= $value; |
|
| 921 | + $attributes['value'] = $value; |
|
| 922 | 922 | } |
| 923 | 923 | return self::tag('input', '', $attributes); |
| 924 | 924 | } |
@@ -951,14 +951,14 @@ discard block |
||
| 951 | 951 | ) { |
| 952 | 952 | $html = ''; |
| 953 | 953 | $extra = ''; |
| 954 | - $default_id = 'id="' . $name . '" '; |
|
| 954 | + $default_id = 'id="'.$name.'" '; |
|
| 955 | 955 | foreach ($extra_attributes as $key => $parameter) { |
| 956 | 956 | if ($key == 'id') { |
| 957 | 957 | $default_id = ''; |
| 958 | 958 | } |
| 959 | - $extra .= $key . '="' . $parameter . '" '; |
|
| 959 | + $extra .= $key.'="'.$parameter.'" '; |
|
| 960 | 960 | } |
| 961 | - $html .= '<select name="' . $name . '" ' . $default_id . ' ' . $extra . '>'; |
|
| 961 | + $html .= '<select name="'.$name.'" '.$default_id.' '.$extra.'>'; |
|
| 962 | 962 | |
| 963 | 963 | if ($show_blank_item) { |
| 964 | 964 | if (empty($blank_item_text)) { |
@@ -966,14 +966,14 @@ discard block |
||
| 966 | 966 | } else { |
| 967 | 967 | $blank_item_text = Security::remove_XSS($blank_item_text); |
| 968 | 968 | } |
| 969 | - $html .= self::tag('option', '-- ' . $blank_item_text . ' --', array('value' => '-1')); |
|
| 969 | + $html .= self::tag('option', '-- '.$blank_item_text.' --', array('value' => '-1')); |
|
| 970 | 970 | } |
| 971 | 971 | if ($values) { |
| 972 | 972 | foreach ($values as $key => $value) { |
| 973 | 973 | if (is_array($value) && isset($value['name'])) { |
| 974 | 974 | $value = $value['name']; |
| 975 | 975 | } |
| 976 | - $html .= '<option value="' . $key . '"'; |
|
| 976 | + $html .= '<option value="'.$key.'"'; |
|
| 977 | 977 | |
| 978 | 978 | if (is_array($default)) { |
| 979 | 979 | foreach ($default as $item) { |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | } |
| 989 | 989 | } |
| 990 | 990 | |
| 991 | - $html .= '>' . $value . '</option>'; |
|
| 991 | + $html .= '>'.$value.'</option>'; |
|
| 992 | 992 | } |
| 993 | 993 | } |
| 994 | 994 | $html .= '</select>'; |
@@ -1014,7 +1014,7 @@ discard block |
||
| 1014 | 1014 | */ |
| 1015 | 1015 | public static function tabs($header_list, $content_list, $id = 'tabs', $attributes = array(), $ul_attributes = array()) |
| 1016 | 1016 | { |
| 1017 | - if (empty($header_list) || count($header_list) == 0 ) { |
|
| 1017 | + if (empty($header_list) || count($header_list) == 0) { |
|
| 1018 | 1018 | return ''; |
| 1019 | 1019 | } |
| 1020 | 1020 | |
@@ -1051,7 +1051,7 @@ discard block |
||
| 1051 | 1051 | |
| 1052 | 1052 | $main_div = self::tag('div', $ul.self::tag('div', $divs, ['class' => 'tab-content']), $attributes); |
| 1053 | 1053 | |
| 1054 | - return $main_div ; |
|
| 1054 | + return $main_div; |
|
| 1055 | 1055 | } |
| 1056 | 1056 | |
| 1057 | 1057 | /** |
@@ -1099,8 +1099,8 @@ discard block |
||
| 1099 | 1099 | */ |
| 1100 | 1100 | public static function grid_html($div_id) |
| 1101 | 1101 | { |
| 1102 | - $table = self::tag('table','', array('id' => $div_id)); |
|
| 1103 | - $table .= self::tag('div','', array('id' => $div_id.'_pager')); |
|
| 1102 | + $table = self::tag('table', '', array('id' => $div_id)); |
|
| 1103 | + $table .= self::tag('div', '', array('id' => $div_id.'_pager')); |
|
| 1104 | 1104 | return $table; |
| 1105 | 1105 | } |
| 1106 | 1106 | |
@@ -1161,7 +1161,7 @@ discard block |
||
| 1161 | 1161 | $obj->colNames = $column_names; |
| 1162 | 1162 | $obj->colModel = $column_model; |
| 1163 | 1163 | $obj->pager = '#'.$div_id.'_pager'; |
| 1164 | - $obj->datatype = 'json'; |
|
| 1164 | + $obj->datatype = 'json'; |
|
| 1165 | 1165 | $obj->viewrecords = 'true'; |
| 1166 | 1166 | |
| 1167 | 1167 | $all_value = 10000000; |
@@ -1222,10 +1222,10 @@ discard block |
||
| 1222 | 1222 | // Adding static data. |
| 1223 | 1223 | if (!empty($data)) { |
| 1224 | 1224 | $data_var = $div_id.'_data'; |
| 1225 | - $json.=' var '.$data_var.' = '.json_encode($data).';'; |
|
| 1225 | + $json .= ' var '.$data_var.' = '.json_encode($data).';'; |
|
| 1226 | 1226 | $obj->data = $data_var; |
| 1227 | 1227 | $obj->datatype = 'local'; |
| 1228 | - $json.="\n"; |
|
| 1228 | + $json .= "\n"; |
|
| 1229 | 1229 | } |
| 1230 | 1230 | |
| 1231 | 1231 | $obj->end = 'end'; |
@@ -1239,12 +1239,12 @@ discard block |
||
| 1239 | 1239 | } |
| 1240 | 1240 | |
| 1241 | 1241 | // Fixing true/false js values that doesn't need the "" |
| 1242 | - $json_encode = str_replace(':"true"',':true',$json_encode); |
|
| 1242 | + $json_encode = str_replace(':"true"', ':true', $json_encode); |
|
| 1243 | 1243 | // wrap_cell is not a valid jqgrid attributes is a hack to wrap a text |
| 1244 | 1244 | $json_encode = str_replace('"wrap_cell":true', 'cellattr : function(rowId, value, rowObject, colModel, arrData) { return \'class = "jqgrid_whitespace"\'; }', $json_encode); |
| 1245 | - $json_encode = str_replace(':"false"',':false',$json_encode); |
|
| 1245 | + $json_encode = str_replace(':"false"', ':false', $json_encode); |
|
| 1246 | 1246 | $json_encode = str_replace('"formatter":"action_formatter"', 'formatter:action_formatter', $json_encode); |
| 1247 | - $json_encode = str_replace(array('{"first":"first",','"end":"end"}'), '', $json_encode); |
|
| 1247 | + $json_encode = str_replace(array('{"first":"first",', '"end":"end"}'), '', $json_encode); |
|
| 1248 | 1248 | |
| 1249 | 1249 | // Creating the jqgrid element. |
| 1250 | 1250 | $json .= '$("#'.$div_id.'").jqGrid({'; |
@@ -1259,22 +1259,22 @@ discard block |
||
| 1259 | 1259 | $groups = ''; |
| 1260 | 1260 | foreach ($extra_params['groupHeaders'] as $group) { |
| 1261 | 1261 | //{ "startColumnName" : "courses", "numberOfColumns" : 1, "titleText" : "Order Info" }, |
| 1262 | - $groups .= '{ "startColumnName" : "' . $group['startColumnName'] . '", "numberOfColumns" : ' . $group['numberOfColumns'] . ', "titleText" : "' . $group['titleText'] . '" },'; |
|
| 1262 | + $groups .= '{ "startColumnName" : "'.$group['startColumnName'].'", "numberOfColumns" : '.$group['numberOfColumns'].', "titleText" : "'.$group['titleText'].'" },'; |
|
| 1263 | 1263 | |
| 1264 | 1264 | } |
| 1265 | 1265 | $json .= '$("#'.$div_id.'").jqGrid("setGroupHeaders", { |
| 1266 | 1266 | "useColSpanStyle" : false, |
| 1267 | 1267 | "groupHeaders" : [ |
| 1268 | - ' . $groups . ' |
|
| 1268 | + ' . $groups.' |
|
| 1269 | 1269 | ] |
| 1270 | 1270 | });'; |
| 1271 | 1271 | } |
| 1272 | 1272 | |
| 1273 | 1273 | $all_text = addslashes(get_lang('All')); |
| 1274 | 1274 | $json .= '$("'.$obj->pager.' option[value='.$all_value.']").text("'.$all_text.'");'; |
| 1275 | - $json.= "\n"; |
|
| 1275 | + $json .= "\n"; |
|
| 1276 | 1276 | // Adding edit/delete icons. |
| 1277 | - $json.= $formatter; |
|
| 1277 | + $json .= $formatter; |
|
| 1278 | 1278 | |
| 1279 | 1279 | return $json; |
| 1280 | 1280 | } |
@@ -1305,7 +1305,7 @@ discard block |
||
| 1305 | 1305 | } |
| 1306 | 1306 | |
| 1307 | 1307 | if (!empty($rows)) { |
| 1308 | - foreach($rows as $content) { |
|
| 1308 | + foreach ($rows as $content) { |
|
| 1309 | 1309 | $table->setCellContents($row, $column, $content); |
| 1310 | 1310 | $row++; |
| 1311 | 1311 | } |
@@ -1467,7 +1467,7 @@ discard block |
||
| 1467 | 1467 | |
| 1468 | 1468 | // Show all tool icons where there is something new. |
| 1469 | 1469 | $return = ' '; |
| 1470 | - foreach($notifications as $notification) { |
|
| 1470 | + foreach ($notifications as $notification) { |
|
| 1471 | 1471 | $lastDate = date('d/m/Y H:i', convert_sql_date($notification['lastedit_date'])); |
| 1472 | 1472 | $type = $notification['lastedit_type']; |
| 1473 | 1473 | $label = get_lang('TitleNotification').": ".get_lang($type)." ($lastDate)"; |
@@ -1510,9 +1510,9 @@ discard block |
||
| 1510 | 1510 | $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION); |
| 1511 | 1511 | $active = false; |
| 1512 | 1512 | // Request for the name of the general coach |
| 1513 | - $sql ='SELECT tu.lastname, tu.firstname, ts.* |
|
| 1513 | + $sql = 'SELECT tu.lastname, tu.firstname, ts.* |
|
| 1514 | 1514 | FROM '.$tbl_session.' ts |
| 1515 | - LEFT JOIN '.$main_user_table .' tu |
|
| 1515 | + LEFT JOIN '.$main_user_table.' tu |
|
| 1516 | 1516 | ON ts.id_coach = tu.user_id |
| 1517 | 1517 | WHERE ts.id = '.intval($session_id); |
| 1518 | 1518 | $rs = Database::query($sql); |
@@ -1522,7 +1522,7 @@ discard block |
||
| 1522 | 1522 | $session = array(); |
| 1523 | 1523 | $session['title'] = $session_info['name']; |
| 1524 | 1524 | $session['coach'] = ''; |
| 1525 | - $session['dates'] = ''; |
|
| 1525 | + $session['dates'] = ''; |
|
| 1526 | 1526 | |
| 1527 | 1527 | if ( |
| 1528 | 1528 | ( |
@@ -1604,8 +1604,8 @@ discard block |
||
| 1604 | 1604 | ); |
| 1605 | 1605 | } |
| 1606 | 1606 | |
| 1607 | - if ( api_get_setting('show_session_coach') === 'true' ) { |
|
| 1608 | - $session['coach'] = get_lang('GeneralCoach') . ': ' . api_get_person_name( |
|
| 1607 | + if (api_get_setting('show_session_coach') === 'true') { |
|
| 1608 | + $session['coach'] = get_lang('GeneralCoach').': '.api_get_person_name( |
|
| 1609 | 1609 | $session_info['firstname'], |
| 1610 | 1610 | $session_info['lastname'] |
| 1611 | 1611 | ); |
@@ -1657,9 +1657,9 @@ discard block |
||
| 1657 | 1657 | $percentage = isset($point_info['point_average']) ? $point_info['point_average'] : 0; |
| 1658 | 1658 | |
| 1659 | 1659 | if (!empty($percentage)) { |
| 1660 | - $percentage = $percentage*125/100; |
|
| 1660 | + $percentage = $percentage * 125 / 100; |
|
| 1661 | 1661 | } |
| 1662 | - $accesses = isset($point_info['accesses']) ? $point_info['accesses'] : 0; |
|
| 1662 | + $accesses = isset($point_info['accesses']) ? $point_info['accesses'] : 0; |
|
| 1663 | 1663 | |
| 1664 | 1664 | $star_label = sprintf(get_lang('XStarsOutOf5'), $point_info['point_average_star']); |
| 1665 | 1665 | |
@@ -1674,19 +1674,19 @@ discard block |
||
| 1674 | 1674 | |
| 1675 | 1675 | $labels = array(); |
| 1676 | 1676 | |
| 1677 | - $labels[]= $number_of_users_who_voted == 1 ? $number_of_users_who_voted.' '.get_lang('Vote') : $number_of_users_who_voted.' '.get_lang('Votes'); |
|
| 1678 | - $labels[]= $accesses == 1 ? $accesses.' '.get_lang('Visit') : $accesses.' '.get_lang('Visits'); |
|
| 1677 | + $labels[] = $number_of_users_who_voted == 1 ? $number_of_users_who_voted.' '.get_lang('Vote') : $number_of_users_who_voted.' '.get_lang('Votes'); |
|
| 1678 | + $labels[] = $accesses == 1 ? $accesses.' '.get_lang('Visit') : $accesses.' '.get_lang('Visits'); |
|
| 1679 | 1679 | if (!empty($number_of_users_who_voted)) { |
| 1680 | - $labels[]= get_lang('Average').' '.$point_info['point_average_star'].'/5'; |
|
| 1680 | + $labels[] = get_lang('Average').' '.$point_info['point_average_star'].'/5'; |
|
| 1681 | 1681 | } |
| 1682 | 1682 | |
| 1683 | - $labels[]= $point_info['user_vote'] ? get_lang('YourVote').' ['.$point_info['user_vote'].']' : get_lang('YourVote'). ' [?] '; |
|
| 1683 | + $labels[] = $point_info['user_vote'] ? get_lang('YourVote').' ['.$point_info['user_vote'].']' : get_lang('YourVote').' [?] '; |
|
| 1684 | 1684 | |
| 1685 | 1685 | if (!$add_div_wrapper && api_is_anonymous()) { |
| 1686 | - $labels[]= Display::tag('span', get_lang('LoginToVote'), array('class' => 'error')); |
|
| 1686 | + $labels[] = Display::tag('span', get_lang('LoginToVote'), array('class' => 'error')); |
|
| 1687 | 1687 | } |
| 1688 | 1688 | |
| 1689 | - $html .= Display::div(implode(' | ', $labels) , array('id' => 'vote_label_'.$id, 'class' => 'vote_label_info')); |
|
| 1689 | + $html .= Display::div(implode(' | ', $labels), array('id' => 'vote_label_'.$id, 'class' => 'vote_label_info')); |
|
| 1690 | 1690 | $html .= ' '.Display::span(' ', array('id' => 'vote_label2_'.$id)); |
| 1691 | 1691 | |
| 1692 | 1692 | if ($add_div_wrapper) { |
@@ -1764,8 +1764,8 @@ discard block |
||
| 1764 | 1764 | if (!empty($list)) { |
| 1765 | 1765 | $html = '<dl class="dl-horizontal">'; |
| 1766 | 1766 | foreach ($list as $item) { |
| 1767 | - $html .= '<dt>' . $item['title'] . '</dt>'; |
|
| 1768 | - $html .= '<dd>' . $item['content'] . '</dd>'; |
|
| 1767 | + $html .= '<dt>'.$item['title'].'</dt>'; |
|
| 1768 | + $html .= '<dd>'.$item['content'].'</dd>'; |
|
| 1769 | 1769 | } |
| 1770 | 1770 | $html .= '</dl>'; |
| 1771 | 1771 | } |
@@ -1807,7 +1807,7 @@ discard block |
||
| 1807 | 1807 | * @param string $type |
| 1808 | 1808 | * @return null|string |
| 1809 | 1809 | */ |
| 1810 | - public static function badge($count, $type ="warning") |
|
| 1810 | + public static function badge($count, $type = "warning") |
|
| 1811 | 1811 | { |
| 1812 | 1812 | $class = ''; |
| 1813 | 1813 | |
@@ -1883,7 +1883,7 @@ discard block |
||
| 1883 | 1883 | if (!empty($content)) { |
| 1884 | 1884 | $html = '<span class="label '.$class.'">'; |
| 1885 | 1885 | $html .= $content; |
| 1886 | - $html .='</span>'; |
|
| 1886 | + $html .= '</span>'; |
|
| 1887 | 1887 | } |
| 1888 | 1888 | |
| 1889 | 1889 | return $html; |
@@ -1904,7 +1904,7 @@ discard block |
||
| 1904 | 1904 | $class = 'class ="active"'; |
| 1905 | 1905 | } |
| 1906 | 1906 | |
| 1907 | - if (basename($_SERVER['REQUEST_URI']) == basename($value['url']) ) { |
|
| 1907 | + if (basename($_SERVER['REQUEST_URI']) == basename($value['url'])) { |
|
| 1908 | 1908 | $class = 'class ="active"'; |
| 1909 | 1909 | } |
| 1910 | 1910 | $html .= "<li $class >"; |
@@ -2155,7 +2155,7 @@ discard block |
||
| 2155 | 2155 | } |
| 2156 | 2156 | $label = $nextValue + $localCounter + 1; |
| 2157 | 2157 | if ($isMedia) { |
| 2158 | - $label = ($fixedValue + 1) .' '.chr(97 + $localCounter); |
|
| 2158 | + $label = ($fixedValue + 1).' '.chr(97 + $localCounter); |
|
| 2159 | 2159 | $link_to_show = $link.$fixedValue.'#questionanchor'.$itemId; |
| 2160 | 2160 | } |
| 2161 | 2161 | $link = Display::url($label.' ', $link_to_show, $linkAttributes); |
@@ -2267,7 +2267,7 @@ discard block |
||
| 2267 | 2267 | */ |
| 2268 | 2268 | public static function getVCardUserLink($userId) |
| 2269 | 2269 | { |
| 2270 | - $vCardUrl = api_get_path(WEB_PATH).'main/social/vcard_export.php?userId='.intval($userId);; |
|
| 2270 | + $vCardUrl = api_get_path(WEB_PATH).'main/social/vcard_export.php?userId='.intval($userId); ; |
|
| 2271 | 2271 | |
| 2272 | 2272 | return $vCardUrl; |
| 2273 | 2273 | } |
@@ -2285,7 +2285,7 @@ discard block |
||
| 2285 | 2285 | { |
| 2286 | 2286 | $title = !empty($title) ? '<div class="panel-heading"><h3 class="panel-title">'.$title.'</h3>'.$extra.'</div>' : ''; |
| 2287 | 2287 | $footer = !empty($footer) ? '<div class="panel-footer ">'.$footer.'</div>' : ''; |
| 2288 | - $styles = ['primary','success','info','warning','danger']; |
|
| 2288 | + $styles = ['primary', 'success', 'info', 'warning', 'danger']; |
|
| 2289 | 2289 | $style = !in_array($style, $styles) ? 'default' : $style; |
| 2290 | 2290 | |
| 2291 | 2291 | return ' |
@@ -2330,7 +2330,7 @@ discard block |
||
| 2330 | 2330 | $attributes['class'] = isset($attributes['class']) ? "$buttonClass {$attributes['class']}" : $buttonClass; |
| 2331 | 2331 | |
| 2332 | 2332 | if (!$includeText) { |
| 2333 | - $text = '<span class="sr-only">' . $text . '</span>'; |
|
| 2333 | + $text = '<span class="sr-only">'.$text.'</span>'; |
|
| 2334 | 2334 | } |
| 2335 | 2335 | |
| 2336 | 2336 | return self::url("$icon $text", $url, $attributes); |
@@ -2345,16 +2345,16 @@ discard block |
||
| 2345 | 2345 | */ |
| 2346 | 2346 | public static function toolbarAction($id, $content = array(), $col = 2, $right = true) |
| 2347 | 2347 | { |
| 2348 | - $columns = 12/$col; |
|
| 2348 | + $columns = 12 / $col; |
|
| 2349 | 2349 | $html = ''; |
| 2350 | - $html .= '<div id="' . $id . '" class="actions">'; |
|
| 2350 | + $html .= '<div id="'.$id.'" class="actions">'; |
|
| 2351 | 2351 | $html .= '<div class="row">'; |
| 2352 | 2352 | if ($col > 4) { |
| 2353 | 2353 | $html = '<div class="alert alert-warning" role="alert">Action toolbar design does not work when exceeding four columns - check Display::toolbarAction()</div>'; |
| 2354 | 2354 | } else { |
| 2355 | - for ( $i = 0; $i < $col; $i++ ) { |
|
| 2356 | - $html .= '<div class="col-md-' . $columns . '">'; |
|
| 2357 | - if ( $col == 2 && $i == 1 ) { |
|
| 2355 | + for ($i = 0; $i < $col; $i++) { |
|
| 2356 | + $html .= '<div class="col-md-'.$columns.'">'; |
|
| 2357 | + if ($col == 2 && $i == 1) { |
|
| 2358 | 2358 | if ($right === true) { |
| 2359 | 2359 | $html .= '<div class="pull-right">'; |
| 2360 | 2360 | $html .= (isset($content[$i]) ? $content[$i] : ''); |
@@ -2469,9 +2469,9 @@ discard block |
||
| 2469 | 2469 | $params['class'] = 'panel panel-default'; |
| 2470 | 2470 | $html = null; |
| 2471 | 2471 | if (!empty($title)) { |
| 2472 | - $html .= '<div class="panel-heading">'.$title.'</div>' . PHP_EOL; |
|
| 2472 | + $html .= '<div class="panel-heading">'.$title.'</div>'.PHP_EOL; |
|
| 2473 | 2473 | } |
| 2474 | - $html.= '<div class="panel-body">'.$content.'</div>' . PHP_EOL; |
|
| 2474 | + $html .= '<div class="panel-body">'.$content.'</div>'.PHP_EOL; |
|
| 2475 | 2475 | $html = Display::div($html, $params); |
| 2476 | 2476 | } |
| 2477 | 2477 | return $html; |
@@ -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 | { |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | if ($show_title) { |
| 66 | 66 | TestCategory::displayCategoryAndTitle($objQuestionTmp->id); |
| 67 | 67 | echo Display::div( |
| 68 | - $current_item . '. ' . $objQuestionTmp->selectTitle(), |
|
| 68 | + $current_item.'. '.$objQuestionTmp->selectTitle(), |
|
| 69 | 69 | array('class' => 'question_title') |
| 70 | 70 | ); |
| 71 | 71 | } |
@@ -161,8 +161,8 @@ discard block |
||
| 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 |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | $config = array( |
| 192 | 192 | 'ToolbarSet' => 'TestFreeAnswer' |
| 193 | 193 | ); |
| 194 | - $form->addHtmlEditor("choice[" . $questionId . "]", null, false, false, $config); |
|
| 194 | + $form->addHtmlEditor("choice[".$questionId."]", null, false, false, $config); |
|
| 195 | 195 | //$form->setDefaults(array("choice[" . $questionId . "]" => $fck_content)); |
| 196 | 196 | $s .= $form->returnForm(); |
| 197 | 197 | } |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | |
| 273 | 273 | // Unique answer |
| 274 | 274 | if (in_array($answerType, [UNIQUE_ANSWER, UNIQUE_ANSWER_NO_OPTION, UNIQUE_ANSWER_IMAGE])) { |
| 275 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
| 275 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
| 276 | 276 | if (isset($user_choice[0]['answer']) && $user_choice[0]['answer'] == $numAnswer) { |
| 277 | 277 | $attributes = array( |
| 278 | 278 | 'id' => $input_id, |
@@ -297,14 +297,14 @@ discard block |
||
| 297 | 297 | if ($answerType == UNIQUE_ANSWER_IMAGE) { |
| 298 | 298 | if ($show_comment) { |
| 299 | 299 | if (empty($comment)) { |
| 300 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
| 300 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
| 301 | 301 | . 'class="exercise-unique-answer-image" style="text-align: center">'; |
| 302 | 302 | } else { |
| 303 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
| 303 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
| 304 | 304 | . 'class="exercise-unique-answer-image col-xs-6 col-sm-12" style="text-align: center">'; |
| 305 | 305 | } |
| 306 | 306 | } else { |
| 307 | - $s .= '<div id="answer' . $questionId . $numAnswer . '" ' |
|
| 307 | + $s .= '<div id="answer'.$questionId.$numAnswer.'" ' |
|
| 308 | 308 | . 'class="exercise-unique-answer-image col-xs-6 col-md-3" style="text-align: center">'; |
| 309 | 309 | } |
| 310 | 310 | } |
@@ -312,7 +312,7 @@ discard block |
||
| 312 | 312 | $answer = Security::remove_XSS($answer, STUDENT); |
| 313 | 313 | $s .= Display::input( |
| 314 | 314 | 'hidden', |
| 315 | - 'choice2[' . $questionId . ']', |
|
| 315 | + 'choice2['.$questionId.']', |
|
| 316 | 316 | '0' |
| 317 | 317 | ); |
| 318 | 318 | |
@@ -320,13 +320,13 @@ discard block |
||
| 320 | 320 | |
| 321 | 321 | if ($answerType == UNIQUE_ANSWER_IMAGE) { |
| 322 | 322 | $attributes['style'] = 'display: none;'; |
| 323 | - $answer = '<div class="thumbnail">' . $answer . '</div>'; |
|
| 323 | + $answer = '<div class="thumbnail">'.$answer.'</div>'; |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | $answer_input .= '<label class="radio">'; |
| 327 | 327 | $answer_input .= Display::input( |
| 328 | 328 | 'radio', |
| 329 | - 'choice[' . $questionId . ']', |
|
| 329 | + 'choice['.$questionId.']', |
|
| 330 | 330 | $numAnswer, |
| 331 | 331 | $attributes |
| 332 | 332 | ); |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | $answerType == MULTIPLE_ANSWER_TRUE_FALSE || |
| 354 | 354 | $answerType == GLOBAL_MULTIPLE_ANSWER |
| 355 | 355 | ) { |
| 356 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
| 356 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
| 357 | 357 | $answer = Security::remove_XSS($answer, STUDENT); |
| 358 | 358 | |
| 359 | 359 | if (in_array($numAnswer, $user_choice_array)) { |
@@ -374,12 +374,12 @@ discard block |
||
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | if ($answerType == MULTIPLE_ANSWER || $answerType == GLOBAL_MULTIPLE_ANSWER) { |
| 377 | - $s .= '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
| 377 | + $s .= '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
| 378 | 378 | |
| 379 | 379 | $answer_input = '<label class="checkbox">'; |
| 380 | 380 | $answer_input .= Display::input( |
| 381 | 381 | 'checkbox', |
| 382 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
| 382 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
| 383 | 383 | $numAnswer, |
| 384 | 384 | $attributes |
| 385 | 385 | ); |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | 'td', |
| 433 | 433 | Display::input( |
| 434 | 434 | 'radio', |
| 435 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
| 435 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
| 436 | 436 | $id, |
| 437 | 437 | $attributes |
| 438 | 438 | ), |
@@ -450,7 +450,7 @@ discard block |
||
| 450 | 450 | } |
| 451 | 451 | } elseif ($answerType == MULTIPLE_ANSWER_COMBINATION) { |
| 452 | 452 | // multiple answers |
| 453 | - $input_id = 'choice-' . $questionId . '-' . $answerId; |
|
| 453 | + $input_id = 'choice-'.$questionId.'-'.$answerId; |
|
| 454 | 454 | |
| 455 | 455 | if (in_array($numAnswer, $user_choice_array)) { |
| 456 | 456 | $attributes = array( |
@@ -470,11 +470,11 @@ discard block |
||
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | $answer = Security::remove_XSS($answer, STUDENT); |
| 473 | - $answer_input = '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
| 473 | + $answer_input = '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
| 474 | 474 | $answer_input .= '<label class="checkbox">'; |
| 475 | 475 | $answer_input .= Display::input( |
| 476 | 476 | 'checkbox', |
| 477 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
| 477 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
| 478 | 478 | 1, |
| 479 | 479 | $attributes |
| 480 | 480 | ); |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | } |
| 496 | 496 | |
| 497 | 497 | } elseif ($answerType == MULTIPLE_ANSWER_COMBINATION_TRUE_FALSE) { |
| 498 | - $s .= '<input type="hidden" name="choice2[' . $questionId . ']" value="0" />'; |
|
| 498 | + $s .= '<input type="hidden" name="choice2['.$questionId.']" value="0" />'; |
|
| 499 | 499 | |
| 500 | 500 | $my_choice = array(); |
| 501 | 501 | if (!empty($user_choice_array)) { |
@@ -530,7 +530,7 @@ discard block |
||
| 530 | 530 | 'td', |
| 531 | 531 | Display::input( |
| 532 | 532 | 'radio', |
| 533 | - 'choice[' . $questionId . '][' . $numAnswer . ']', |
|
| 533 | + 'choice['.$questionId.']['.$numAnswer.']', |
|
| 534 | 534 | $key, |
| 535 | 535 | $attributes |
| 536 | 536 | ) |
@@ -626,8 +626,8 @@ discard block |
||
| 626 | 626 | $trackAttempts = Database::get_main_table( |
| 627 | 627 | TABLE_STATISTIC_TRACK_E_ATTEMPT |
| 628 | 628 | ); |
| 629 | - $sql = 'SELECT answer FROM ' . $trackAttempts . ' |
|
| 630 | - WHERE exe_id=' . $exe_id . ' AND question_id=' . $questionId; |
|
| 629 | + $sql = 'SELECT answer FROM '.$trackAttempts.' |
|
| 630 | + WHERE exe_id=' . $exe_id.' AND question_id='.$questionId; |
|
| 631 | 631 | $rsLastAttempt = Database::query($sql); |
| 632 | 632 | $rowLastAttempt = Database::fetch_array($rsLastAttempt); |
| 633 | 633 | $answer = $rowLastAttempt['answer']; |
@@ -697,7 +697,7 @@ discard block |
||
| 697 | 697 | '', |
| 698 | 698 | $answerCorrected |
| 699 | 699 | ); |
| 700 | - $answerCorrected = '[' . $answerCorrected . ']'; |
|
| 700 | + $answerCorrected = '['.$answerCorrected.']'; |
|
| 701 | 701 | $studentAnswerList[] = $answerCorrected; |
| 702 | 702 | } |
| 703 | 703 | } |
@@ -718,7 +718,7 @@ discard block |
||
| 718 | 718 | */ |
| 719 | 719 | $tabComments = api_preg_split( |
| 720 | 720 | '/\[[^]]+\]/', |
| 721 | - ' ' . $answer . ' ' |
|
| 721 | + ' '.$answer.' ' |
|
| 722 | 722 | ); |
| 723 | 723 | if (!empty($correctAnswerList) && !empty($studentAnswerList)) { |
| 724 | 724 | $answer = ""; |
@@ -735,7 +735,7 @@ discard block |
||
| 735 | 735 | $size |
| 736 | 736 | ); |
| 737 | 737 | |
| 738 | - $answer .= $tabComments[$i] . |
|
| 738 | + $answer .= $tabComments[$i]. |
|
| 739 | 739 | Display::input( |
| 740 | 740 | 'text', |
| 741 | 741 | "choice[$questionId][]", |
@@ -781,12 +781,12 @@ discard block |
||
| 781 | 781 | $s .= '<tr><td width="45%" valign="top">'; |
| 782 | 782 | $parsed_answer = $answer; |
| 783 | 783 | //left part questions |
| 784 | - $s .= '<p class="indent">' . $lines_count . '. ' . $parsed_answer . '</p></td>'; |
|
| 784 | + $s .= '<p class="indent">'.$lines_count.'. '.$parsed_answer.'</p></td>'; |
|
| 785 | 785 | //middle part (matches selects) |
| 786 | 786 | |
| 787 | 787 | $s .= '<td width="10%" valign="top" align="center" > |
| 788 | 788 | <div class="select-matching"> |
| 789 | - <select name="choice[' . $questionId . '][' . $numAnswer . ']">'; |
|
| 789 | + <select name="choice[' . $questionId.']['.$numAnswer.']">'; |
|
| 790 | 790 | |
| 791 | 791 | // fills the list-box |
| 792 | 792 | foreach ($select_items as $key => $val) { |
@@ -802,14 +802,14 @@ discard block |
||
| 802 | 802 | if (isset($user_choice_array_position[$numAnswer]) && $val['id'] == $user_choice_array_position[$numAnswer]) { |
| 803 | 803 | $selected = 'selected="selected"'; |
| 804 | 804 | } |
| 805 | - $s .= '<option value="' . $val['id'] . '" ' . $selected . '>' . $val['letter'] . '</option>'; |
|
| 805 | + $s .= '<option value="'.$val['id'].'" '.$selected.'>'.$val['letter'].'</option>'; |
|
| 806 | 806 | |
| 807 | 807 | } // end foreach() |
| 808 | 808 | |
| 809 | 809 | $s .= '</select></div></td><td width="5%" class="separate"> </td>'; |
| 810 | 810 | $s .= '<td width="40%" valign="top" >'; |
| 811 | 811 | if (isset($select_items[$lines_count])) { |
| 812 | - $s .= '<div class="text-right"><p class="indent">' . $select_items[$lines_count]['letter'].'. '. $select_items[$lines_count]['answer'].'</p></div>'; |
|
| 812 | + $s .= '<div class="text-right"><p class="indent">'.$select_items[$lines_count]['letter'].'. '.$select_items[$lines_count]['answer'].'</p></div>'; |
|
| 813 | 813 | } else { |
| 814 | 814 | $s .= ' '; |
| 815 | 815 | } |
@@ -824,7 +824,7 @@ discard block |
||
| 824 | 824 | $s .= '<tr> |
| 825 | 825 | <td colspan="2"></td> |
| 826 | 826 | <td valign="top">'; |
| 827 | - $s .= '<b>' . $select_items[$lines_count]['letter'] . '.</b> ' . $select_items[$lines_count]['answer']; |
|
| 827 | + $s .= '<b>'.$select_items[$lines_count]['letter'].'.</b> '.$select_items[$lines_count]['answer']; |
|
| 828 | 828 | $s .= "</td> |
| 829 | 829 | </tr>"; |
| 830 | 830 | $lines_count++; |
@@ -840,9 +840,9 @@ discard block |
||
| 840 | 840 | $data = $objAnswerTmp->getAnswerByAutoId($data['correct']); |
| 841 | 841 | $lines_count = $data['answer'];*/ |
| 842 | 842 | |
| 843 | - $windowId = $questionId . '_' . $lines_count; |
|
| 843 | + $windowId = $questionId.'_'.$lines_count; |
|
| 844 | 844 | |
| 845 | - $s .= '<li class="touch-items" id="' . $windowId . '">'; |
|
| 845 | + $s .= '<li class="touch-items" id="'.$windowId.'">'; |
|
| 846 | 846 | $s .= Display::div( |
| 847 | 847 | $parsed_answer, |
| 848 | 848 | [ |
@@ -900,7 +900,7 @@ discard block |
||
| 900 | 900 | Display::tag( |
| 901 | 901 | 'b', |
| 902 | 902 | $select_items[$lines_count]['letter'] |
| 903 | - ) . $select_items[$lines_count]['answer'], |
|
| 903 | + ).$select_items[$lines_count]['answer'], |
|
| 904 | 904 | [ |
| 905 | 905 | 'id' => "window_{$windowId}_answer", |
| 906 | 906 | 'style' => 'display: none;' |
@@ -1044,7 +1044,7 @@ discard block |
||
| 1044 | 1044 | |
| 1045 | 1045 | if ($show_comment) { |
| 1046 | 1046 | $s .= '</table>'; |
| 1047 | - } elseif( |
|
| 1047 | + } elseif ( |
|
| 1048 | 1048 | in_array( |
| 1049 | 1049 | $answerType, |
| 1050 | 1050 | [ |
@@ -1069,7 +1069,7 @@ discard block |
||
| 1069 | 1069 | |
| 1070 | 1070 | for ($answerId = 1; $answerId <= $nbrAnswers; $answerId++) { |
| 1071 | 1071 | $answerCorrect = $objAnswerTmp->isCorrect($answerId); |
| 1072 | - $windowId = $questionId . '_' . $counterAnswer; |
|
| 1072 | + $windowId = $questionId.'_'.$counterAnswer; |
|
| 1073 | 1073 | |
| 1074 | 1074 | if ($answerCorrect) { |
| 1075 | 1075 | $s .= Display::div( |
@@ -1114,7 +1114,7 @@ discard block |
||
| 1114 | 1114 | $course = api_get_course_info(); |
| 1115 | 1115 | $doc_id = DocumentManager::get_document_id( |
| 1116 | 1116 | $course, |
| 1117 | - '/images/' . $pictureName |
|
| 1117 | + '/images/'.$pictureName |
|
| 1118 | 1118 | ); |
| 1119 | 1119 | if (is_numeric($doc_id)) { |
| 1120 | 1120 | $images_folder_visibility = api_get_item_visibility( |
@@ -1139,7 +1139,7 @@ discard block |
||
| 1139 | 1139 | echo " |
| 1140 | 1140 | <script> |
| 1141 | 1141 | $(document).on('ready', function () { |
| 1142 | - new " . ($answerType == HOT_SPOT ? "HotspotQuestion" : "DelineationQuestion" ) . "({ |
|
| 1142 | + new " . ($answerType == HOT_SPOT ? "HotspotQuestion" : "DelineationQuestion")."({ |
|
| 1143 | 1143 | questionId: $questionId, |
| 1144 | 1144 | exerciseId: $exerciseId, |
| 1145 | 1145 | selector: '#hotspot-preview-$questionId', |
@@ -1173,7 +1173,7 @@ discard block |
||
| 1173 | 1173 | if ($answerType != HOT_SPOT_DELINEATION) { |
| 1174 | 1174 | $answerList = ' |
| 1175 | 1175 | <div class="well well-sm"> |
| 1176 | - <h5 class="page-header">' . get_lang('HotspotZones') . '</h5> |
|
| 1176 | + <h5 class="page-header">' . get_lang('HotspotZones').'</h5> |
|
| 1177 | 1177 | <ol> |
| 1178 | 1178 | '; |
| 1179 | 1179 | |
@@ -1198,7 +1198,7 @@ discard block |
||
| 1198 | 1198 | if (!$only_questions) { |
| 1199 | 1199 | if ($show_title) { |
| 1200 | 1200 | TestCategory::displayCategoryAndTitle($objQuestionTmp->id); |
| 1201 | - echo '<div class="question_title">' . $current_item . '. ' . $questionName . '</div>'; |
|
| 1201 | + echo '<div class="question_title">'.$current_item.'. '.$questionName.'</div>'; |
|
| 1202 | 1202 | } |
| 1203 | 1203 | //@todo I need to the get the feedback type |
| 1204 | 1204 | echo <<<HOTSPOT |
@@ -1216,7 +1216,7 @@ discard block |
||
| 1216 | 1216 | <div class=\"hotspot-image\"></div> |
| 1217 | 1217 | <script> |
| 1218 | 1218 | $(document).on('ready', function () { |
| 1219 | - new " . ($answerType == HOT_SPOT_DELINEATION ? 'DelineationQuestion' : 'HotspotQuestion') . "({ |
|
| 1219 | + new " . ($answerType == HOT_SPOT_DELINEATION ? 'DelineationQuestion' : 'HotspotQuestion')."({ |
|
| 1220 | 1220 | questionId: $questionId, |
| 1221 | 1221 | exerciseId: $exe_id, |
| 1222 | 1222 | selector: '#question_div_' + $questionId + ' .hotspot-image', |
@@ -1335,11 +1335,11 @@ discard block |
||
| 1335 | 1335 | $lp_id = intval($lp_id); |
| 1336 | 1336 | $lp_item_id = intval($lp_item_id); |
| 1337 | 1337 | return |
| 1338 | - api_get_course_int_id() . '_' . |
|
| 1339 | - api_get_session_id() . '_' . |
|
| 1340 | - $exercise_id . '_' . |
|
| 1341 | - api_get_user_id() . '_' . |
|
| 1342 | - $lp_id . '_' . |
|
| 1338 | + api_get_course_int_id().'_'. |
|
| 1339 | + api_get_session_id().'_'. |
|
| 1340 | + $exercise_id.'_'. |
|
| 1341 | + api_get_user_id().'_'. |
|
| 1342 | + $lp_id.'_'. |
|
| 1343 | 1343 | $lp_item_id; |
| 1344 | 1344 | } |
| 1345 | 1345 | |
@@ -1451,14 +1451,14 @@ discard block |
||
| 1451 | 1451 | $res = Database::query($sql); |
| 1452 | 1452 | $result = array(); |
| 1453 | 1453 | $apiIsAllowedToEdit = api_is_allowed_to_edit(); |
| 1454 | - $urlBase = api_get_path(WEB_CODE_PATH) . |
|
| 1455 | - 'exercice/hotpotatoes_exercise_report.php?action=delete&' . |
|
| 1456 | - api_get_cidreq() . '&id='; |
|
| 1454 | + $urlBase = api_get_path(WEB_CODE_PATH). |
|
| 1455 | + 'exercice/hotpotatoes_exercise_report.php?action=delete&'. |
|
| 1456 | + api_get_cidreq().'&id='; |
|
| 1457 | 1457 | while ($data = Database::fetch_array($res)) { |
| 1458 | 1458 | $actions = null; |
| 1459 | 1459 | |
| 1460 | 1460 | if ($apiIsAllowedToEdit) { |
| 1461 | - $url = $urlBase . $data['id'] . '&path=' . $data['exe_name']; |
|
| 1461 | + $url = $urlBase.$data['id'].'&path='.$data['exe_name']; |
|
| 1462 | 1462 | $actions = Display::url( |
| 1463 | 1463 | Display::return_icon('delete.png', get_lang('Delete')), |
| 1464 | 1464 | $url |
@@ -1474,7 +1474,7 @@ discard block |
||
| 1474 | 1474 | GroupManager::get_user_group_name($data['user_id']) |
| 1475 | 1475 | ), |
| 1476 | 1476 | 'exe_date' => $data['exe_date'], |
| 1477 | - 'score' => $data['exe_result'] . ' / ' . $data['exe_weighting'], |
|
| 1477 | + 'score' => $data['exe_result'].' / '.$data['exe_weighting'], |
|
| 1478 | 1478 | 'actions' => $actions, |
| 1479 | 1479 | ); |
| 1480 | 1480 | } |
@@ -1557,18 +1557,18 @@ discard block |
||
| 1557 | 1557 | $TBL_TRACK_HOTPOTATOES = Database:: get_main_table(TABLE_STATISTIC_TRACK_E_HOTPOTATOES); |
| 1558 | 1558 | $TBL_TRACK_ATTEMPT_RECORDING = Database:: get_main_table(TABLE_STATISTIC_TRACK_E_ATTEMPT_RECORDING); |
| 1559 | 1559 | |
| 1560 | - $session_id_and = ' AND te.session_id = ' . $sessionId . ' '; |
|
| 1560 | + $session_id_and = ' AND te.session_id = '.$sessionId.' '; |
|
| 1561 | 1561 | $exercise_id = intval($exercise_id); |
| 1562 | 1562 | |
| 1563 | 1563 | $exercise_where = ''; |
| 1564 | 1564 | if (!empty($exercise_id)) { |
| 1565 | - $exercise_where .= ' AND te.exe_exo_id = ' . $exercise_id . ' '; |
|
| 1565 | + $exercise_where .= ' AND te.exe_exo_id = '.$exercise_id.' '; |
|
| 1566 | 1566 | } |
| 1567 | 1567 | |
| 1568 | 1568 | $hotpotatoe_where = ''; |
| 1569 | 1569 | if (!empty($_GET['path'])) { |
| 1570 | 1570 | $hotpotatoe_path = Database::escape_string($_GET['path']); |
| 1571 | - $hotpotatoe_where .= ' AND exe_name = "' . $hotpotatoe_path . '" '; |
|
| 1571 | + $hotpotatoe_where .= ' AND exe_name = "'.$hotpotatoe_path.'" '; |
|
| 1572 | 1572 | } |
| 1573 | 1573 | |
| 1574 | 1574 | // sql for chamilo-type tests for teacher / tutor view |
@@ -1580,7 +1580,7 @@ discard block |
||
| 1580 | 1580 | WHERE |
| 1581 | 1581 | c_id = $course_id AND |
| 1582 | 1582 | exe_exo_id = $exercise_id AND |
| 1583 | - ttte.session_id = " . $sessionId . " |
|
| 1583 | + ttte.session_id = ".$sessionId." |
|
| 1584 | 1584 | )"; |
| 1585 | 1585 | |
| 1586 | 1586 | if ($is_allowedToEdit) { |
@@ -1603,9 +1603,9 @@ discard block |
||
| 1603 | 1603 | g.id as group_id |
| 1604 | 1604 | FROM $TBL_USER u |
| 1605 | 1605 | INNER JOIN $TBL_GROUP_REL_USER gru |
| 1606 | - ON (gru.user_id = u.user_id AND gru.c_id=" . $course_id . ") |
|
| 1606 | + ON (gru.user_id = u.user_id AND gru.c_id=".$course_id.") |
|
| 1607 | 1607 | INNER JOIN $TBL_GROUP g |
| 1608 | - ON (gru.group_id = g.id AND g.c_id=" . $course_id . ") |
|
| 1608 | + ON (gru.group_id = g.id AND g.c_id=".$course_id.") |
|
| 1609 | 1609 | )"; |
| 1610 | 1610 | } |
| 1611 | 1611 | |
@@ -1667,9 +1667,9 @@ discard block |
||
| 1667 | 1667 | g.id as group_id |
| 1668 | 1668 | FROM $TBL_USER u |
| 1669 | 1669 | LEFT OUTER JOIN $TBL_GROUP_REL_USER gru |
| 1670 | - ON ( gru.user_id = u.user_id AND gru.c_id=" . $course_id . " ) |
|
| 1670 | + ON ( gru.user_id = u.user_id AND gru.c_id=".$course_id." ) |
|
| 1671 | 1671 | LEFT OUTER JOIN $TBL_GROUP g |
| 1672 | - ON (gru.group_id = g.id AND g.c_id = " . $course_id . ") |
|
| 1672 | + ON (gru.group_id = g.id AND g.c_id = ".$course_id.") |
|
| 1673 | 1673 | )"; |
| 1674 | 1674 | } |
| 1675 | 1675 | |
@@ -1682,12 +1682,12 @@ discard block |
||
| 1682 | 1682 | ( |
| 1683 | 1683 | SELECT u.user_id, firstname, lastname, email, username, ' ' as group_name, '' as group_id, official_code |
| 1684 | 1684 | FROM $TBL_USER u |
| 1685 | - WHERE u.status NOT IN(" . api_get_users_status_ignored_in_reports('string') . ") |
|
| 1685 | + WHERE u.status NOT IN(".api_get_users_status_ignored_in_reports('string').") |
|
| 1686 | 1686 | )"; |
| 1687 | 1687 | } |
| 1688 | 1688 | |
| 1689 | 1689 | $sqlFromOption = " , $TBL_GROUP_REL_USER AS gru "; |
| 1690 | - $sqlWhereOption = " AND gru.c_id = " . $course_id ." AND gru.user_id = user.user_id "; |
|
| 1690 | + $sqlWhereOption = " AND gru.c_id = ".$course_id." AND gru.user_id = user.user_id "; |
|
| 1691 | 1691 | $first_and_last_name = api_is_western_name_order() ? "firstname, lastname" : "lastname, firstname"; |
| 1692 | 1692 | |
| 1693 | 1693 | if ($get_count) { |
@@ -1724,8 +1724,8 @@ discard block |
||
| 1724 | 1724 | ON (user.user_id = exe_user_id) |
| 1725 | 1725 | WHERE |
| 1726 | 1726 | te.status != 'incomplete' AND |
| 1727 | - te.c_id = " . $course_id . " $session_id_and AND |
|
| 1728 | - ce.active <>-1 AND ce.c_id = " . $course_id . " |
|
| 1727 | + te.c_id = ".$course_id." $session_id_and AND |
|
| 1728 | + ce.active <>-1 AND ce.c_id = ".$course_id." |
|
| 1729 | 1729 | $exercise_where |
| 1730 | 1730 | $extra_where_conditions |
| 1731 | 1731 | "; |
@@ -1752,12 +1752,12 @@ discard block |
||
| 1752 | 1752 | $sqlFromOption |
| 1753 | 1753 | WHERE |
| 1754 | 1754 | user.user_id=tth.exe_user_id |
| 1755 | - AND tth.c_id = " . $course_id . " |
|
| 1755 | + AND tth.c_id = ".$course_id." |
|
| 1756 | 1756 | $hotpotatoe_where |
| 1757 | 1757 | $sqlWhereOption |
| 1758 | - AND user.status NOT IN(" . api_get_users_status_ignored_in_reports( |
|
| 1758 | + AND user.status NOT IN(".api_get_users_status_ignored_in_reports( |
|
| 1759 | 1759 | 'string' |
| 1760 | - ) . ") |
|
| 1760 | + ).") |
|
| 1761 | 1761 | ORDER BY |
| 1762 | 1762 | tth.c_id ASC, |
| 1763 | 1763 | tth.exe_date DESC"; |
@@ -1830,12 +1830,12 @@ discard block |
||
| 1830 | 1830 | |
| 1831 | 1831 | if ($from_gradebook && ($is_allowedToEdit)) { |
| 1832 | 1832 | if (in_array( |
| 1833 | - $results[$i]['username'] . $results[$i]['firstname'] . $results[$i]['lastname'], |
|
| 1833 | + $results[$i]['username'].$results[$i]['firstname'].$results[$i]['lastname'], |
|
| 1834 | 1834 | $users_array_id |
| 1835 | 1835 | )) { |
| 1836 | 1836 | continue; |
| 1837 | 1837 | } |
| 1838 | - $users_array_id[] = $results[$i]['username'] . $results[$i]['firstname'] . $results[$i]['lastname']; |
|
| 1838 | + $users_array_id[] = $results[$i]['username'].$results[$i]['firstname'].$results[$i]['lastname']; |
|
| 1839 | 1839 | } |
| 1840 | 1840 | |
| 1841 | 1841 | $lp_obj = isset($results[$i]['orig_lp_id']) && isset($lp_list[$results[$i]['orig_lp_id']]) ? $lp_list[$results[$i]['orig_lp_id']] : null; |
@@ -1844,8 +1844,8 @@ discard block |
||
| 1844 | 1844 | if ($lp_obj) { |
| 1845 | 1845 | $url = api_get_path( |
| 1846 | 1846 | WEB_CODE_PATH |
| 1847 | - ) . 'newscorm/lp_controller.php?' . api_get_cidreq( |
|
| 1848 | - ) . '&action=view&lp_id=' . $results[$i]['orig_lp_id']; |
|
| 1847 | + ).'newscorm/lp_controller.php?'.api_get_cidreq( |
|
| 1848 | + ).'&action=view&lp_id='.$results[$i]['orig_lp_id']; |
|
| 1849 | 1849 | $lp_name = Display::url( |
| 1850 | 1850 | $lp_obj['lp_name'], |
| 1851 | 1851 | $url, |
@@ -1863,7 +1863,7 @@ discard block |
||
| 1863 | 1863 | ); |
| 1864 | 1864 | |
| 1865 | 1865 | foreach ($group_list as $id) { |
| 1866 | - $group_name_list .= $clean_group_list[$id] . '<br/>'; |
|
| 1866 | + $group_name_list .= $clean_group_list[$id].'<br/>'; |
|
| 1867 | 1867 | } |
| 1868 | 1868 | $results[$i]['group_name'] = $group_name_list; |
| 1869 | 1869 | } |
@@ -1919,8 +1919,8 @@ discard block |
||
| 1919 | 1919 | } |
| 1920 | 1920 | } |
| 1921 | 1921 | if ($revised) { |
| 1922 | - $actions .= "<a href='exercise_show.php?" . api_get_cidreq( |
|
| 1923 | - ) . "&action=edit&id=$id'>" . |
|
| 1922 | + $actions .= "<a href='exercise_show.php?".api_get_cidreq( |
|
| 1923 | + )."&action=edit&id=$id'>". |
|
| 1924 | 1924 | Display:: return_icon( |
| 1925 | 1925 | 'edit.png', |
| 1926 | 1926 | get_lang('Edit'), |
@@ -1929,8 +1929,8 @@ discard block |
||
| 1929 | 1929 | ); |
| 1930 | 1930 | $actions .= ' '; |
| 1931 | 1931 | } else { |
| 1932 | - $actions .= "<a href='exercise_show.php?" . api_get_cidreq( |
|
| 1933 | - ) . "&action=qualify&id=$id'>" . |
|
| 1932 | + $actions .= "<a href='exercise_show.php?".api_get_cidreq( |
|
| 1933 | + )."&action=qualify&id=$id'>". |
|
| 1934 | 1934 | Display:: return_icon( |
| 1935 | 1935 | 'quiz.gif', |
| 1936 | 1936 | get_lang('Qualify') |
@@ -1940,12 +1940,12 @@ discard block |
||
| 1940 | 1940 | $actions .= "</a>"; |
| 1941 | 1941 | |
| 1942 | 1942 | if ($filter == 2) { |
| 1943 | - $actions .= ' <a href="exercise_history.php?' . api_get_cidreq( |
|
| 1944 | - ) . '&exe_id=' . $id . '">' . |
|
| 1943 | + $actions .= ' <a href="exercise_history.php?'.api_get_cidreq( |
|
| 1944 | + ).'&exe_id='.$id.'">'. |
|
| 1945 | 1945 | Display:: return_icon( |
| 1946 | 1946 | 'history.gif', |
| 1947 | 1947 | get_lang('ViewHistoryChange') |
| 1948 | - ) . '</a>'; |
|
| 1948 | + ).'</a>'; |
|
| 1949 | 1949 | } |
| 1950 | 1950 | |
| 1951 | 1951 | //Admin can always delete the attempt |
@@ -1957,32 +1957,32 @@ discard block |
||
| 1957 | 1957 | date('Y-m-d h:i:s'), |
| 1958 | 1958 | false |
| 1959 | 1959 | ); |
| 1960 | - $actions .= '<a href="http://www.whatsmyip.org/ip-geo-location/?ip=' . $ip . '" target="_blank"> |
|
| 1960 | + $actions .= '<a href="http://www.whatsmyip.org/ip-geo-location/?ip='.$ip.'" target="_blank"> |
|
| 1961 | 1961 | '.Display::return_icon('info.png', $ip).' |
| 1962 | 1962 | </a>'; |
| 1963 | 1963 | |
| 1964 | - $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 . '" |
|
| 1964 | + $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.'" |
|
| 1965 | 1965 | onclick="javascript:if(!confirm(\'' . sprintf( |
| 1966 | 1966 | get_lang('DeleteAttempt'), |
| 1967 | 1967 | $results[$i]['username'], |
| 1968 | 1968 | $dt |
| 1969 | - ) . '\')) return false;">' . Display:: return_icon( |
|
| 1969 | + ).'\')) return false;">'.Display:: return_icon( |
|
| 1970 | 1970 | 'delete.png', |
| 1971 | 1971 | get_lang('Delete') |
| 1972 | - ) . '</a>'; |
|
| 1972 | + ).'</a>'; |
|
| 1973 | 1973 | $delete_link = utf8_encode($delete_link); |
| 1974 | 1974 | |
| 1975 | 1975 | if (api_is_drh() && !api_is_platform_admin()) { |
| 1976 | 1976 | $delete_link = null; |
| 1977 | 1977 | } |
| 1978 | - $actions .= $delete_link . ' '; |
|
| 1978 | + $actions .= $delete_link.' '; |
|
| 1979 | 1979 | } |
| 1980 | 1980 | |
| 1981 | 1981 | } else { |
| 1982 | 1982 | $attempt_url = api_get_path( |
| 1983 | 1983 | WEB_CODE_PATH |
| 1984 | - ) . 'exercice/result.php?' . api_get_cidreq( |
|
| 1985 | - ) . '&id=' . $results[$i]['exe_id'] . '&id_session=' . $sessionId; |
|
| 1984 | + ).'exercice/result.php?'.api_get_cidreq( |
|
| 1985 | + ).'&id='.$results[$i]['exe_id'].'&id_session='.$sessionId; |
|
| 1986 | 1986 | $attempt_link = Display::url( |
| 1987 | 1987 | get_lang('Show'), |
| 1988 | 1988 | $attempt_url, |
@@ -2039,7 +2039,7 @@ discard block |
||
| 2039 | 2039 | $hp_result = round( |
| 2040 | 2040 | ($hpresults[$i][4] / ($hpresults[$i][5] != 0 ? $hpresults[$i][5] : 1)) * 100, |
| 2041 | 2041 | 2 |
| 2042 | - ) . '% (' . $hpresults[$i][4] . ' / ' . $hpresults[$i][5] . ')'; |
|
| 2042 | + ).'% ('.$hpresults[$i][4].' / '.$hpresults[$i][5].')'; |
|
| 2043 | 2043 | if ($is_allowedToEdit) { |
| 2044 | 2044 | $list_info[] = array( |
| 2045 | 2045 | $hpresults[$i][0], |
@@ -2112,13 +2112,13 @@ discard block |
||
| 2112 | 2112 | |
| 2113 | 2113 | $html = null; |
| 2114 | 2114 | if ($show_percentage) { |
| 2115 | - $parent = '(' . $score . ' / ' . $weight . ')'; |
|
| 2116 | - $html = $percentage . "% $parent"; |
|
| 2115 | + $parent = '('.$score.' / '.$weight.')'; |
|
| 2116 | + $html = $percentage."% $parent"; |
|
| 2117 | 2117 | if ($show_only_percentage) { |
| 2118 | - $html = $percentage . "% "; |
|
| 2118 | + $html = $percentage."% "; |
|
| 2119 | 2119 | } |
| 2120 | 2120 | } else { |
| 2121 | - $html = $score . ' / ' . $weight; |
|
| 2121 | + $html = $score.' / '.$weight; |
|
| 2122 | 2122 | } |
| 2123 | 2123 | $html = Display::span($html, array('class' => 'score_exercise')); |
| 2124 | 2124 | |
@@ -2212,7 +2212,7 @@ discard block |
||
| 2212 | 2212 | { |
| 2213 | 2213 | $return = '-'; |
| 2214 | 2214 | if ($value != '') { |
| 2215 | - $return = float_format($value * 100, 1) . ' %'; |
|
| 2215 | + $return = float_format($value * 100, 1).' %'; |
|
| 2216 | 2216 | } |
| 2217 | 2217 | return $return; |
| 2218 | 2218 | } |
@@ -2290,7 +2290,7 @@ discard block |
||
| 2290 | 2290 | } |
| 2291 | 2291 | |
| 2292 | 2292 | $needle_where = !empty($search) ? " AND title LIKE '?' " : ''; |
| 2293 | - $needle = !empty($search) ? "%" . $search . "%" : ''; |
|
| 2293 | + $needle = !empty($search) ? "%".$search."%" : ''; |
|
| 2294 | 2294 | |
| 2295 | 2295 | // Show courses by active status |
| 2296 | 2296 | $active_sql = ''; |
@@ -2305,7 +2305,7 @@ discard block |
||
| 2305 | 2305 | if ($search_all_sessions == true) { |
| 2306 | 2306 | $conditions = array( |
| 2307 | 2307 | 'where' => array( |
| 2308 | - $active_sql . ' c_id = ? ' . $needle_where . $time_conditions => array( |
|
| 2308 | + $active_sql.' c_id = ? '.$needle_where.$time_conditions => array( |
|
| 2309 | 2309 | $course_id, |
| 2310 | 2310 | $needle |
| 2311 | 2311 | ) |
@@ -2316,7 +2316,7 @@ discard block |
||
| 2316 | 2316 | if ($session_id == 0) { |
| 2317 | 2317 | $conditions = array( |
| 2318 | 2318 | 'where' => array( |
| 2319 | - $active_sql . ' session_id = ? AND c_id = ? ' . $needle_where . $time_conditions => array( |
|
| 2319 | + $active_sql.' session_id = ? AND c_id = ? '.$needle_where.$time_conditions => array( |
|
| 2320 | 2320 | $session_id, |
| 2321 | 2321 | $course_id, |
| 2322 | 2322 | $needle |
@@ -2327,7 +2327,7 @@ discard block |
||
| 2327 | 2327 | } else { |
| 2328 | 2328 | $conditions = array( |
| 2329 | 2329 | 'where' => array( |
| 2330 | - $active_sql . ' (session_id = 0 OR session_id = ? ) AND c_id = ? ' . $needle_where . $time_conditions => array( |
|
| 2330 | + $active_sql.' (session_id = 0 OR session_id = ? ) AND c_id = ? '.$needle_where.$time_conditions => array( |
|
| 2331 | 2331 | $session_id, |
| 2332 | 2332 | $course_id, |
| 2333 | 2333 | $needle |
@@ -2506,7 +2506,7 @@ discard block |
||
| 2506 | 2506 | |
| 2507 | 2507 | if ($return_string) { |
| 2508 | 2508 | if (!empty($position) && !empty($my_ranking)) { |
| 2509 | - $return_value = $position . '/' . count($my_ranking); |
|
| 2509 | + $return_value = $position.'/'.count($my_ranking); |
|
| 2510 | 2510 | } else { |
| 2511 | 2511 | $return_value = '-'; |
| 2512 | 2512 | } |
@@ -2586,7 +2586,7 @@ discard block |
||
| 2586 | 2586 | |
| 2587 | 2587 | if ($return_string) { |
| 2588 | 2588 | if (!empty($position) && !empty($my_ranking)) { |
| 2589 | - return $position . '/' . count($my_ranking); |
|
| 2589 | + return $position.'/'.count($my_ranking); |
|
| 2590 | 2590 | } |
| 2591 | 2591 | } |
| 2592 | 2592 | return $return_value; |
@@ -2986,7 +2986,7 @@ discard block |
||
| 2986 | 2986 | $courseCondition = " |
| 2987 | 2987 | INNER JOIN $courseUser cu |
| 2988 | 2988 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
| 2989 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
| 2989 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
| 2990 | 2990 | } else { |
| 2991 | 2991 | $courseCondition = " |
| 2992 | 2992 | INNER JOIN $courseUserSession cu |
@@ -3061,7 +3061,7 @@ discard block |
||
| 3061 | 3061 | $courseCondition = " |
| 3062 | 3062 | INNER JOIN $courseUser cu |
| 3063 | 3063 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
| 3064 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
| 3064 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
| 3065 | 3065 | } else { |
| 3066 | 3066 | $courseCondition = " |
| 3067 | 3067 | INNER JOIN $courseUserSession cu |
@@ -3153,7 +3153,7 @@ discard block |
||
| 3153 | 3153 | $courseCondition = " |
| 3154 | 3154 | INNER JOIN $courseUser cu |
| 3155 | 3155 | ON cu.c_id = c.id AND cu.user_id = exe_user_id"; |
| 3156 | - $courseConditionWhere = " AND relation_type <> 2 AND cu.status = " . STUDENT; |
|
| 3156 | + $courseConditionWhere = " AND relation_type <> 2 AND cu.status = ".STUDENT; |
|
| 3157 | 3157 | } else { |
| 3158 | 3158 | $courseCondition = " |
| 3159 | 3159 | INNER JOIN $courseUserSession cu |
@@ -3335,7 +3335,7 @@ discard block |
||
| 3335 | 3335 | } |
| 3336 | 3336 | } |
| 3337 | 3337 | // adds the correct word, followed by ] to close the blank |
| 3338 | - $answer .= ' / <font color="green"><b>' . $real_correct_tags[$i] . '</b></font>]'; |
|
| 3338 | + $answer .= ' / <font color="green"><b>'.$real_correct_tags[$i].'</b></font>]'; |
|
| 3339 | 3339 | if (isset ($real_text[$i + 1])) { |
| 3340 | 3340 | $answer .= $real_text[$i + 1]; |
| 3341 | 3341 | } |
@@ -3394,13 +3394,13 @@ discard block |
||
| 3394 | 3394 | // check the default value of option |
| 3395 | 3395 | $tabSelected = array($in_default => " selected='selected' "); |
| 3396 | 3396 | $res = ""; |
| 3397 | - $res .= "<select name='$in_name' id='$in_name' onchange='" . $in_onchange . "' >"; |
|
| 3398 | - $res .= "<option value='-1'" . $tabSelected["-1"] . ">-- " . get_lang( |
|
| 3397 | + $res .= "<select name='$in_name' id='$in_name' onchange='".$in_onchange."' >"; |
|
| 3398 | + $res .= "<option value='-1'".$tabSelected["-1"].">-- ".get_lang( |
|
| 3399 | 3399 | 'AllGroups' |
| 3400 | - ) . " --</option>"; |
|
| 3401 | - $res .= "<option value='0'" . $tabSelected["0"] . ">- " . get_lang( |
|
| 3400 | + )." --</option>"; |
|
| 3401 | + $res .= "<option value='0'".$tabSelected["0"].">- ".get_lang( |
|
| 3402 | 3402 | 'NotInAGroup' |
| 3403 | - ) . " -</option>"; |
|
| 3403 | + )." -</option>"; |
|
| 3404 | 3404 | $tabGroups = GroupManager::get_group_list(); |
| 3405 | 3405 | $currentCatId = 0; |
| 3406 | 3406 | for ($i = 0; $i < count($tabGroups); $i++) { |
@@ -3408,10 +3408,10 @@ discard block |
||
| 3408 | 3408 | $tabGroups[$i]["id"] |
| 3409 | 3409 | ); |
| 3410 | 3410 | if ($tabCategory["id"] != $currentCatId) { |
| 3411 | - $res .= "<option value='-1' disabled='disabled'>" . $tabCategory["title"] . "</option>"; |
|
| 3411 | + $res .= "<option value='-1' disabled='disabled'>".$tabCategory["title"]."</option>"; |
|
| 3412 | 3412 | $currentCatId = $tabCategory["id"]; |
| 3413 | 3413 | } |
| 3414 | - $res .= "<option " . $tabSelected[$tabGroups[$i]["id"]] . "style='margin-left:40px' value='" . $tabGroups[$i]["id"] . "'>" . $tabGroups[$i]["name"] . "</option>"; |
|
| 3414 | + $res .= "<option ".$tabSelected[$tabGroups[$i]["id"]]."style='margin-left:40px' value='".$tabGroups[$i]["id"]."'>".$tabGroups[$i]["name"]."</option>"; |
|
| 3415 | 3415 | } |
| 3416 | 3416 | $res .= "</select>"; |
| 3417 | 3417 | return $res; |
@@ -3643,14 +3643,14 @@ discard block |
||
| 3643 | 3643 | if ($show_results) { |
| 3644 | 3644 | $comnt = Event::get_comments($exe_id, $questionId); |
| 3645 | 3645 | if (!empty($comnt)) { |
| 3646 | - echo '<b>' . get_lang('Feedback') . '</b>'; |
|
| 3647 | - echo '<div id="question_feedback">' . $comnt . '</div>'; |
|
| 3646 | + echo '<b>'.get_lang('Feedback').'</b>'; |
|
| 3647 | + echo '<div id="question_feedback">'.$comnt.'</div>'; |
|
| 3648 | 3648 | } |
| 3649 | 3649 | } |
| 3650 | 3650 | |
| 3651 | 3651 | if ($show_results) { |
| 3652 | 3652 | $score = array( |
| 3653 | - 'result' => get_lang('Score') . " : " . self::show_score( |
|
| 3653 | + 'result' => get_lang('Score')." : ".self::show_score( |
|
| 3654 | 3654 | $my_total_score, |
| 3655 | 3655 | $my_total_weight, |
| 3656 | 3656 | false, |
@@ -3724,13 +3724,13 @@ discard block |
||
| 3724 | 3724 | } |
| 3725 | 3725 | |
| 3726 | 3726 | if ($show_all_but_expected_answer) { |
| 3727 | - $exercise_content .= "<div class='normal-message'>" . get_lang( |
|
| 3727 | + $exercise_content .= "<div class='normal-message'>".get_lang( |
|
| 3728 | 3728 | "ExerciseWithFeedbackWithoutCorrectionComment" |
| 3729 | - ) . "</div>"; |
|
| 3729 | + )."</div>"; |
|
| 3730 | 3730 | } |
| 3731 | 3731 | // Remove audio auto play from questions on results page - refs BT#7939 |
| 3732 | 3732 | $exercise_content = preg_replace( |
| 3733 | - ['/autoplay[\=\".+\"]+/','/autostart[\=\".+\"]+/'], |
|
| 3733 | + ['/autoplay[\=\".+\"]+/', '/autostart[\=\".+\"]+/'], |
|
| 3734 | 3734 | '', |
| 3735 | 3735 | $exercise_content |
| 3736 | 3736 | ); |
@@ -3824,11 +3824,11 @@ discard block |
||
| 3824 | 3824 | $ribbon_total_success_or_error = ' ribbon-total-error'; |
| 3825 | 3825 | } |
| 3826 | 3826 | } |
| 3827 | - $ribbon .= '<div class="total ' . $ribbon_total_success_or_error . '">'; |
|
| 3827 | + $ribbon .= '<div class="total '.$ribbon_total_success_or_error.'">'; |
|
| 3828 | 3828 | } else { |
| 3829 | 3829 | $ribbon .= '<div class="total">'; |
| 3830 | 3830 | } |
| 3831 | - $ribbon .= '<h3>' . get_lang('YourTotalScore') . ": "; |
|
| 3831 | + $ribbon .= '<h3>'.get_lang('YourTotalScore').": "; |
|
| 3832 | 3832 | $ribbon .= self::show_score($score, $weight, false, true); |
| 3833 | 3833 | $ribbon .= '</h3>'; |
| 3834 | 3834 | $ribbon .= '</div>'; |
@@ -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'); |
@@ -962,7 +962,7 @@ discard block |
||
| 962 | 962 | // chzn-select doesn't work for sessions?? |
| 963 | 963 | $form->addElement( |
| 964 | 964 | 'select', |
| 965 | - 'extra_' . $field_details['variable'], |
|
| 965 | + 'extra_'.$field_details['variable'], |
|
| 966 | 966 | $field_details['display_text'], |
| 967 | 967 | $options, |
| 968 | 968 | array('id' => 'extra_'.$field_details['variable']) |
@@ -1021,7 +1021,7 @@ discard block |
||
| 1021 | 1021 | |
| 1022 | 1022 | if (!$admin_permissions) { |
| 1023 | 1023 | if ($field_details['visible'] == 0) { |
| 1024 | - $form->freeze('extra_' . $field_details['variable']); |
|
| 1024 | + $form->freeze('extra_'.$field_details['variable']); |
|
| 1025 | 1025 | } |
| 1026 | 1026 | } |
| 1027 | 1027 | break; |
@@ -1369,9 +1369,9 @@ discard block |
||
| 1369 | 1369 | |
| 1370 | 1370 | if (is_array($extraData) && array_key_exists($fieldVariable, $extraData)) { |
| 1371 | 1371 | |
| 1372 | - if (file_exists(api_get_path(SYS_UPLOAD_PATH) . $extraData[$fieldVariable])) { |
|
| 1372 | + if (file_exists(api_get_path(SYS_UPLOAD_PATH).$extraData[$fieldVariable])) { |
|
| 1373 | 1373 | $fieldTexts[] = Display::img( |
| 1374 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
| 1374 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
| 1375 | 1375 | $field_details['display_text'], |
| 1376 | 1376 | array('width' => '300') |
| 1377 | 1377 | ); |
@@ -1388,10 +1388,10 @@ discard block |
||
| 1388 | 1388 | $form->applyFilter('extra_'.$field_details['variable'], 'stripslashes'); |
| 1389 | 1389 | $form->applyFilter('extra_'.$field_details['variable'], 'trim'); |
| 1390 | 1390 | |
| 1391 | - $allowed_picture_types = array ('jpg', 'jpeg', 'png', 'gif'); |
|
| 1391 | + $allowed_picture_types = array('jpg', 'jpeg', 'png', 'gif'); |
|
| 1392 | 1392 | $form->addRule( |
| 1393 | 1393 | 'extra_'.$field_details['variable'], |
| 1394 | - get_lang('OnlyImagesAllowed') . ' ('.implode(',', $allowed_picture_types).')', |
|
| 1394 | + get_lang('OnlyImagesAllowed').' ('.implode(',', $allowed_picture_types).')', |
|
| 1395 | 1395 | 'filetype', |
| 1396 | 1396 | $allowed_picture_types |
| 1397 | 1397 | ); |
@@ -1433,10 +1433,10 @@ discard block |
||
| 1433 | 1433 | if (is_array($extraData) && |
| 1434 | 1434 | array_key_exists($fieldVariable, $extraData) |
| 1435 | 1435 | ) { |
| 1436 | - if (file_exists(api_get_path(SYS_UPLOAD_PATH) . $extraData[$fieldVariable])) { |
|
| 1436 | + if (file_exists(api_get_path(SYS_UPLOAD_PATH).$extraData[$fieldVariable])) { |
|
| 1437 | 1437 | $fieldTexts[] = Display::url( |
| 1438 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
| 1439 | - api_get_path(WEB_UPLOAD_PATH) . $extraData[$fieldVariable], |
|
| 1438 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
| 1439 | + api_get_path(WEB_UPLOAD_PATH).$extraData[$fieldVariable], |
|
| 1440 | 1440 | array( |
| 1441 | 1441 | 'title' => $field_details['display_text'], |
| 1442 | 1442 | 'target' => '_blank' |
@@ -1486,12 +1486,12 @@ discard block |
||
| 1486 | 1486 | "extra_{$field_details['variable']}", |
| 1487 | 1487 | $field_details['display_text'] |
| 1488 | 1488 | ); |
| 1489 | - $form->applyFilter('extra_' . $field_details['variable'], 'stripslashes'); |
|
| 1489 | + $form->applyFilter('extra_'.$field_details['variable'], 'stripslashes'); |
|
| 1490 | 1490 | |
| 1491 | 1491 | if (!$admin_permissions) { |
| 1492 | 1492 | if ($field_details['visible'] == 0) { |
| 1493 | 1493 | $form->freeze( |
| 1494 | - 'extra_' . $field_details['variable'] |
|
| 1494 | + 'extra_'.$field_details['variable'] |
|
| 1495 | 1495 | ); |
| 1496 | 1496 | } |
| 1497 | 1497 | } |
@@ -1502,13 +1502,13 @@ discard block |
||
| 1502 | 1502 | $field_details['display_text'] |
| 1503 | 1503 | ); |
| 1504 | 1504 | $form->applyFilter( |
| 1505 | - 'extra_' . $field_details['variable'], |
|
| 1505 | + 'extra_'.$field_details['variable'], |
|
| 1506 | 1506 | 'stripslashes' |
| 1507 | 1507 | ); |
| 1508 | 1508 | if (!$admin_permissions) { |
| 1509 | 1509 | if ($field_details['visible'] == 0) { |
| 1510 | 1510 | $form->freeze( |
| 1511 | - 'extra_' . $field_details['variable'] |
|
| 1511 | + 'extra_'.$field_details['variable'] |
|
| 1512 | 1512 | ); |
| 1513 | 1513 | } |
| 1514 | 1514 | } |
@@ -1518,12 +1518,12 @@ discard block |
||
| 1518 | 1518 | "extra_{$field_details['variable']}", |
| 1519 | 1519 | $field_details['display_text'] |
| 1520 | 1520 | ); |
| 1521 | - $form->applyFilter('extra_' . $field_details['variable'], 'stripslashes'); |
|
| 1521 | + $form->applyFilter('extra_'.$field_details['variable'], 'stripslashes'); |
|
| 1522 | 1522 | |
| 1523 | 1523 | if (!$admin_permissions) { |
| 1524 | 1524 | if ($field_details['visible'] == 0) { |
| 1525 | 1525 | $form->freeze( |
| 1526 | - 'extra_' . $field_details['variable'] |
|
| 1526 | + 'extra_'.$field_details['variable'] |
|
| 1527 | 1527 | ); |
| 1528 | 1528 | } |
| 1529 | 1529 | } |
@@ -1534,13 +1534,13 @@ discard block |
||
| 1534 | 1534 | $field_details['display_text'] |
| 1535 | 1535 | ); |
| 1536 | 1536 | $form->applyFilter( |
| 1537 | - 'extra_' . $field_details['variable'], |
|
| 1537 | + 'extra_'.$field_details['variable'], |
|
| 1538 | 1538 | 'stripslashes' |
| 1539 | 1539 | ); |
| 1540 | 1540 | if (!$admin_permissions) { |
| 1541 | 1541 | if ($field_details['visible'] == 0) { |
| 1542 | 1542 | $form->freeze( |
| 1543 | - 'extra_' . $field_details['variable'] |
|
| 1543 | + 'extra_'.$field_details['variable'] |
|
| 1544 | 1544 | ); |
| 1545 | 1545 | } |
| 1546 | 1546 | } |
@@ -2221,19 +2221,19 @@ discard block |
||
| 2221 | 2221 | break; |
| 2222 | 2222 | } |
| 2223 | 2223 | |
| 2224 | - if (!file_exists(api_get_path(SYS_UPLOAD_PATH) . $valueData['value'])) { |
|
| 2224 | + if (!file_exists(api_get_path(SYS_UPLOAD_PATH).$valueData['value'])) { |
|
| 2225 | 2225 | break; |
| 2226 | 2226 | } |
| 2227 | 2227 | |
| 2228 | 2228 | $image = Display::img( |
| 2229 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
| 2229 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
| 2230 | 2230 | $field['display_text'], |
| 2231 | 2231 | array('width' => '300') |
| 2232 | 2232 | ); |
| 2233 | 2233 | |
| 2234 | 2234 | $displayedValue = Display::url( |
| 2235 | 2235 | $image, |
| 2236 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
| 2236 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
| 2237 | 2237 | array('target' => '_blank') |
| 2238 | 2238 | ); |
| 2239 | 2239 | break; |
@@ -2242,13 +2242,13 @@ discard block |
||
| 2242 | 2242 | break; |
| 2243 | 2243 | } |
| 2244 | 2244 | |
| 2245 | - if (!file_exists(api_get_path(SYS_UPLOAD_PATH) . $valueData['value'])) { |
|
| 2245 | + if (!file_exists(api_get_path(SYS_UPLOAD_PATH).$valueData['value'])) { |
|
| 2246 | 2246 | break; |
| 2247 | 2247 | } |
| 2248 | 2248 | |
| 2249 | 2249 | $displayedValue = Display::url( |
| 2250 | 2250 | get_lang('Download'), |
| 2251 | - api_get_path(WEB_UPLOAD_PATH) . $valueData['value'], |
|
| 2251 | + api_get_path(WEB_UPLOAD_PATH).$valueData['value'], |
|
| 2252 | 2252 | array( |
| 2253 | 2253 | 'title' => $field['display_text'], |
| 2254 | 2254 | '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) { |
@@ -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; |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | } |
| 279 | 279 | $destination_trail = $destination.'/'.$dir_name; |
| 280 | 280 | if (is_dir($destination)) { |
| 281 | - chdir($orig_dir_path) ; |
|
| 281 | + chdir($orig_dir_path); |
|
| 282 | 282 | $handle = opendir($orig_dir_path); |
| 283 | 283 | |
| 284 | 284 | while ($element = readdir($handle)) { |
@@ -288,14 +288,14 @@ discard block |
||
| 288 | 288 | copy($element, $destination_trail.'/'.$element); |
| 289 | 289 | |
| 290 | 290 | if ($move) { |
| 291 | - unlink($element) ; |
|
| 291 | + unlink($element); |
|
| 292 | 292 | } |
| 293 | 293 | } elseif (is_dir($element)) { |
| 294 | 294 | $dir_to_copy[] = $orig_dir_path.'/'.$element; |
| 295 | 295 | } |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - closedir($handle) ; |
|
| 298 | + closedir($handle); |
|
| 299 | 299 | |
| 300 | 300 | if (sizeof($dir_to_copy) > 0) { |
| 301 | 301 | foreach ($dir_to_copy as $this_dir) { |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | if ($move) { |
| 307 | - rmdir($orig_dir_path) ; |
|
| 307 | + rmdir($orig_dir_path); |
|
| 308 | 308 | } |
| 309 | 309 | chdir($save_dir); |
| 310 | 310 | } |
@@ -389,17 +389,17 @@ discard block |
||
| 389 | 389 | // Recursive operation if subdirectories exist |
| 390 | 390 | $dir_number = sizeof($dir_array); |
| 391 | 391 | if ($dir_number > 0) { |
| 392 | - for ($i = 0 ; $i < $dir_number ; $i++) { |
|
| 392 | + for ($i = 0; $i < $dir_number; $i++) { |
|
| 393 | 393 | $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
| 394 | 394 | if (is_array($dir_array) && is_array($sub_dir_array)) { |
| 395 | - $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
| 395 | + $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
| 396 | 396 | } |
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | - $result_array = $dir_array; |
|
| 400 | - chdir($save_dir) ; |
|
| 399 | + $result_array = $dir_array; |
|
| 400 | + chdir($save_dir); |
|
| 401 | 401 | } |
| 402 | - return $result_array ; |
|
| 402 | + return $result_array; |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | /** |
@@ -444,8 +444,8 @@ discard block |
||
| 444 | 444 | $buffer = ''; |
| 445 | 445 | if (file_exists($file_name)) { |
| 446 | 446 | $fp = fopen($file_name, 'rb'); |
| 447 | - $buffer = fread ($fp, filesize($file_name)); |
|
| 448 | - fclose ($fp); |
|
| 447 | + $buffer = fread($fp, filesize($file_name)); |
|
| 448 | + fclose($fp); |
|
| 449 | 449 | } |
| 450 | 450 | return $buffer; |
| 451 | 451 | } |
@@ -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 | /** |
@@ -261,54 +261,54 @@ discard block |
||
| 261 | 261 | */ |
| 262 | 262 | function copyDirTo($orig_dir_path, $destination, $move = true) |
| 263 | 263 | { |
| 264 | - if ($orig_dir_path == $destination) { |
|
| 265 | - return false; |
|
| 266 | - } |
|
| 264 | + if ($orig_dir_path == $destination) { |
|
| 265 | + return false; |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - $save_dir = getcwd(); |
|
| 269 | - // Extract directory name - create it at destination - update destination trail |
|
| 270 | - $dir_name = basename($orig_dir_path); |
|
| 268 | + $save_dir = getcwd(); |
|
| 269 | + // Extract directory name - create it at destination - update destination trail |
|
| 270 | + $dir_name = basename($orig_dir_path); |
|
| 271 | 271 | $dir_to_copy = array(); |
| 272 | - if (is_dir($orig_dir_path)) { |
|
| 273 | - if (!is_dir($destination.'/'.$dir_name)) { |
|
| 274 | - mkdir( |
|
| 275 | - $destination.'/'.$dir_name, |
|
| 276 | - api_get_permissions_for_new_directories() |
|
| 277 | - ); |
|
| 278 | - } |
|
| 279 | - $destination_trail = $destination.'/'.$dir_name; |
|
| 280 | - if (is_dir($destination)) { |
|
| 281 | - chdir($orig_dir_path) ; |
|
| 282 | - $handle = opendir($orig_dir_path); |
|
| 283 | - |
|
| 284 | - while ($element = readdir($handle)) { |
|
| 285 | - if ($element == '.' || $element == '..') { |
|
| 286 | - continue; // Skip the current and parent directories |
|
| 287 | - } elseif (is_file($element)) { |
|
| 288 | - copy($element, $destination_trail.'/'.$element); |
|
| 289 | - |
|
| 290 | - if ($move) { |
|
| 291 | - unlink($element) ; |
|
| 292 | - } |
|
| 293 | - } elseif (is_dir($element)) { |
|
| 294 | - $dir_to_copy[] = $orig_dir_path.'/'.$element; |
|
| 295 | - } |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - closedir($handle) ; |
|
| 299 | - |
|
| 300 | - if (sizeof($dir_to_copy) > 0) { |
|
| 301 | - foreach ($dir_to_copy as $this_dir) { |
|
| 302 | - copyDirTo($this_dir, $destination_trail, $move); // Recursivity |
|
| 303 | - } |
|
| 304 | - } |
|
| 305 | - |
|
| 306 | - if ($move) { |
|
| 307 | - rmdir($orig_dir_path) ; |
|
| 308 | - } |
|
| 309 | - chdir($save_dir); |
|
| 310 | - } |
|
| 311 | - } |
|
| 272 | + if (is_dir($orig_dir_path)) { |
|
| 273 | + if (!is_dir($destination.'/'.$dir_name)) { |
|
| 274 | + mkdir( |
|
| 275 | + $destination.'/'.$dir_name, |
|
| 276 | + api_get_permissions_for_new_directories() |
|
| 277 | + ); |
|
| 278 | + } |
|
| 279 | + $destination_trail = $destination.'/'.$dir_name; |
|
| 280 | + if (is_dir($destination)) { |
|
| 281 | + chdir($orig_dir_path) ; |
|
| 282 | + $handle = opendir($orig_dir_path); |
|
| 283 | + |
|
| 284 | + while ($element = readdir($handle)) { |
|
| 285 | + if ($element == '.' || $element == '..') { |
|
| 286 | + continue; // Skip the current and parent directories |
|
| 287 | + } elseif (is_file($element)) { |
|
| 288 | + copy($element, $destination_trail.'/'.$element); |
|
| 289 | + |
|
| 290 | + if ($move) { |
|
| 291 | + unlink($element) ; |
|
| 292 | + } |
|
| 293 | + } elseif (is_dir($element)) { |
|
| 294 | + $dir_to_copy[] = $orig_dir_path.'/'.$element; |
|
| 295 | + } |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + closedir($handle) ; |
|
| 299 | + |
|
| 300 | + if (sizeof($dir_to_copy) > 0) { |
|
| 301 | + foreach ($dir_to_copy as $this_dir) { |
|
| 302 | + copyDirTo($this_dir, $destination_trail, $move); // Recursivity |
|
| 303 | + } |
|
| 304 | + } |
|
| 305 | + |
|
| 306 | + if ($move) { |
|
| 307 | + rmdir($orig_dir_path) ; |
|
| 308 | + } |
|
| 309 | + chdir($save_dir); |
|
| 310 | + } |
|
| 311 | + } |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | |
@@ -319,8 +319,8 @@ discard block |
||
| 319 | 319 | * @param string $filename filename |
| 320 | 320 | */ |
| 321 | 321 | function getextension($filename) { |
| 322 | - $bouts = explode('.', $filename); |
|
| 323 | - return array(array_pop($bouts), implode('.', $bouts)); |
|
| 322 | + $bouts = explode('.', $filename); |
|
| 323 | + return array(array_pop($bouts), implode('.', $bouts)); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | /** |
@@ -331,19 +331,19 @@ discard block |
||
| 331 | 331 | * @param boolean $recursive if true , include subdir in total |
| 332 | 332 | */ |
| 333 | 333 | function dirsize($root, $recursive = true) { |
| 334 | - $dir = @opendir($root); |
|
| 335 | - $size = 0; |
|
| 336 | - while ($file = @readdir($dir)) { |
|
| 337 | - if (!in_array($file, array('.', '..'))) { |
|
| 338 | - if (is_dir($root.'/'.$file)) { |
|
| 339 | - $size += $recursive ? dirsize($root.'/'.$file) : 0; |
|
| 340 | - } else { |
|
| 341 | - $size += @filesize($root.'/'.$file); |
|
| 342 | - } |
|
| 343 | - } |
|
| 344 | - } |
|
| 345 | - @closedir($dir); |
|
| 346 | - return $size; |
|
| 334 | + $dir = @opendir($root); |
|
| 335 | + $size = 0; |
|
| 336 | + while ($file = @readdir($dir)) { |
|
| 337 | + if (!in_array($file, array('.', '..'))) { |
|
| 338 | + if (is_dir($root.'/'.$file)) { |
|
| 339 | + $size += $recursive ? dirsize($root.'/'.$file) : 0; |
|
| 340 | + } else { |
|
| 341 | + $size += @filesize($root.'/'.$file); |
|
| 342 | + } |
|
| 343 | + } |
|
| 344 | + } |
|
| 345 | + @closedir($dir); |
|
| 346 | + return $size; |
|
| 347 | 347 | } |
| 348 | 348 | |
| 349 | 349 | /* CLASS FileManager */ |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | */ |
| 363 | 363 | class FileManager |
| 364 | 364 | { |
| 365 | - /** |
|
| 365 | + /** |
|
| 366 | 366 | Returns a list of all directories, except the base dir, |
| 367 | 367 | of the current course. This function uses recursion. |
| 368 | 368 | |
@@ -370,131 +370,130 @@ discard block |
||
| 370 | 370 | |
| 371 | 371 | @author Roan Embrechts |
| 372 | 372 | @version 1.0.1 |
| 373 | - */ |
|
| 374 | - function list_all_directories($path) |
|
| 373 | + */ |
|
| 374 | + function list_all_directories($path) |
|
| 375 | 375 | { |
| 376 | - $result_array = array(); |
|
| 377 | - if (is_dir($path)) { |
|
| 378 | - $save_dir = getcwd(); |
|
| 379 | - chdir($path); |
|
| 380 | - $handle = opendir($path); |
|
| 381 | - while ($element = readdir($handle)) { |
|
| 382 | - if ($element == '.' || $element == '..') continue; |
|
| 376 | + $result_array = array(); |
|
| 377 | + if (is_dir($path)) { |
|
| 378 | + $save_dir = getcwd(); |
|
| 379 | + chdir($path); |
|
| 380 | + $handle = opendir($path); |
|
| 381 | + while ($element = readdir($handle)) { |
|
| 382 | + if ($element == '.' || $element == '..') continue; |
|
| 383 | 383 | // Skip the current and parent directories |
| 384 | - if (is_dir($element)) { |
|
| 385 | - $dir_array[] = $path.'/'.$element; |
|
| 386 | - } |
|
| 387 | - } |
|
| 388 | - closedir($handle); |
|
| 389 | - // Recursive operation if subdirectories exist |
|
| 390 | - $dir_number = sizeof($dir_array); |
|
| 391 | - if ($dir_number > 0) { |
|
| 392 | - for ($i = 0 ; $i < $dir_number ; $i++) { |
|
| 393 | - $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
|
| 394 | - if (is_array($dir_array) && is_array($sub_dir_array)) { |
|
| 395 | - $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
| 396 | - } |
|
| 397 | - } |
|
| 398 | - } |
|
| 399 | - $result_array = $dir_array; |
|
| 400 | - chdir($save_dir) ; |
|
| 401 | - } |
|
| 402 | - return $result_array ; |
|
| 403 | - } |
|
| 404 | - |
|
| 405 | - /** |
|
| 384 | + if (is_dir($element)) { |
|
| 385 | + $dir_array[] = $path.'/'.$element; |
|
| 386 | + } |
|
| 387 | + } |
|
| 388 | + closedir($handle); |
|
| 389 | + // Recursive operation if subdirectories exist |
|
| 390 | + $dir_number = sizeof($dir_array); |
|
| 391 | + if ($dir_number > 0) { |
|
| 392 | + for ($i = 0 ; $i < $dir_number ; $i++) { |
|
| 393 | + $sub_dir_array = FileManager::list_all_directories($dir_array[$i]); // Function recursivity |
|
| 394 | + if (is_array($dir_array) && is_array($sub_dir_array)) { |
|
| 395 | + $dir_array = array_merge($dir_array, $sub_dir_array); // Data merge |
|
| 396 | + } |
|
| 397 | + } |
|
| 398 | + } |
|
| 399 | + $result_array = $dir_array; |
|
| 400 | + chdir($save_dir) ; |
|
| 401 | + } |
|
| 402 | + return $result_array ; |
|
| 403 | + } |
|
| 404 | + |
|
| 405 | + /** |
|
| 406 | 406 | This function receives a list of directories. |
| 407 | 407 | It returns a list of all files in these directories |
| 408 | 408 | |
| 409 | 409 | @author Roan Embrechts |
| 410 | 410 | @version 1.0 |
| 411 | - */ |
|
| 412 | - function list_all_files($dir_array) |
|
| 411 | + */ |
|
| 412 | + function list_all_files($dir_array) |
|
| 413 | 413 | { |
| 414 | - $element_array = array(); |
|
| 415 | - if (is_dir($dir_array)) { |
|
| 416 | - |
|
| 417 | - $save_dir = getcwd(); |
|
| 418 | - foreach ($dir_array as $directory) { |
|
| 419 | - chdir($directory); |
|
| 420 | - $handle = opendir($directory); |
|
| 421 | - while ($element = readdir($handle)) { |
|
| 422 | - if ($element == '.' || $element == '..' || $element == '.htaccess') continue; |
|
| 414 | + $element_array = array(); |
|
| 415 | + if (is_dir($dir_array)) { |
|
| 416 | + |
|
| 417 | + $save_dir = getcwd(); |
|
| 418 | + foreach ($dir_array as $directory) { |
|
| 419 | + chdir($directory); |
|
| 420 | + $handle = opendir($directory); |
|
| 421 | + while ($element = readdir($handle)) { |
|
| 422 | + if ($element == '.' || $element == '..' || $element == '.htaccess') continue; |
|
| 423 | 423 | // Skip the current and parent directories |
| 424 | - if (!is_dir($element)) { |
|
| 425 | - $element_array[] = $directory.'/'.$element; |
|
| 426 | - } |
|
| 427 | - } |
|
| 428 | - closedir($handle); |
|
| 429 | - chdir('..'); |
|
| 430 | - chdir($save_dir); |
|
| 431 | - } |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - return $element_array; |
|
| 435 | - } |
|
| 436 | - |
|
| 437 | - /** |
|
| 424 | + if (!is_dir($element)) { |
|
| 425 | + $element_array[] = $directory.'/'.$element; |
|
| 426 | + } |
|
| 427 | + } |
|
| 428 | + closedir($handle); |
|
| 429 | + chdir('..'); |
|
| 430 | + chdir($save_dir); |
|
| 431 | + } |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + return $element_array; |
|
| 435 | + } |
|
| 436 | + |
|
| 437 | + /** |
|
| 438 | 438 | Loads contents of file $filename into memory and returns them as a string. |
| 439 | 439 | Function kept for compatibility with older PHP versions. |
| 440 | 440 | Function is binary safe (is needed on Windows) |
| 441 | - */ |
|
| 442 | - function compat_load_file($file_name) |
|
| 441 | + */ |
|
| 442 | + function compat_load_file($file_name) |
|
| 443 | 443 | { |
| 444 | - $buffer = ''; |
|
| 445 | - if (file_exists($file_name)) { |
|
| 446 | - $fp = fopen($file_name, 'rb'); |
|
| 447 | - $buffer = fread ($fp, filesize($file_name)); |
|
| 448 | - fclose ($fp); |
|
| 449 | - } |
|
| 450 | - return $buffer; |
|
| 451 | - } |
|
| 452 | - |
|
| 453 | - /** |
|
| 454 | - * Adds file/folder to document table in database |
|
| 455 | - * improvement from set_default_settings (see below): |
|
| 456 | - * take all info from function parameters |
|
| 457 | - * no global variables needed |
|
| 458 | - * |
|
| 459 | - * NOTE $glued_table should already have backticks around it |
|
| 460 | - * (get it from the database library, and it is done automatically) |
|
| 461 | - * |
|
| 462 | - * @param path, filename, filetype, |
|
| 463 | - $glued_table, default_visibility |
|
| 444 | + $buffer = ''; |
|
| 445 | + if (file_exists($file_name)) { |
|
| 446 | + $fp = fopen($file_name, 'rb'); |
|
| 447 | + $buffer = fread ($fp, filesize($file_name)); |
|
| 448 | + fclose ($fp); |
|
| 449 | + } |
|
| 450 | + return $buffer; |
|
| 451 | + } |
|
| 464 | 452 | |
| 465 | - * action: Adds an entry to the document table with the default settings. |
|
| 466 | - * @author Olivier Cauberghe <[email protected]> |
|
| 467 | - * @author Roan Embrechts |
|
| 468 | - * @version 1.2 |
|
| 469 | - */ |
|
| 470 | - function set_default_settings($upload_path, $filename, $filetype = 'file', $glued_table, $default_visibility = 'v') |
|
| 453 | + /** |
|
| 454 | + * Adds file/folder to document table in database |
|
| 455 | + * improvement from set_default_settings (see below): |
|
| 456 | + * take all info from function parameters |
|
| 457 | + * no global variables needed |
|
| 458 | + * |
|
| 459 | + * NOTE $glued_table should already have backticks around it |
|
| 460 | + * (get it from the database library, and it is done automatically) |
|
| 461 | + * |
|
| 462 | + * @param path, filename, filetype, |
|
| 463 | + $glued_table, default_visibility |
|
| 464 | + * action: Adds an entry to the document table with the default settings. |
|
| 465 | + * @author Olivier Cauberghe <[email protected]> |
|
| 466 | + * @author Roan Embrechts |
|
| 467 | + * @version 1.2 |
|
| 468 | + */ |
|
| 469 | + function set_default_settings($upload_path, $filename, $filetype = 'file', $glued_table, $default_visibility = 'v') |
|
| 471 | 470 | { |
| 472 | - if (!$default_visibility) $default_visibility = 'v'; |
|
| 473 | - |
|
| 474 | - // Make sure path is not wrongly formed |
|
| 475 | - $upload_path = !empty($upload_path) ? "/$upload_path" : ''; |
|
| 476 | - |
|
| 477 | - $endchar = substr($filename, strlen($filename) - 1, 1); |
|
| 478 | - if ($endchar == "\\" || $endchar == '/') { |
|
| 479 | - $filename = substr($filename, 0, strlen($filename) - 1); |
|
| 480 | - } |
|
| 481 | - |
|
| 482 | - $full_file_name = $upload_path.'/'.$filename; |
|
| 483 | - $full_file_name = str_replace("//", '/', $full_file_name); |
|
| 484 | - |
|
| 485 | - $sql_query = "SELECT count(*) as number_existing FROM $glued_table WHERE path='$full_file_name'"; |
|
| 486 | - $sql_result = Database::query($sql_query); |
|
| 487 | - $result = Database::fetch_array($sql_result); |
|
| 488 | - // Determine which query to execute |
|
| 489 | - if ($result['number_existing'] > 0) { |
|
| 490 | - // Entry exists, update |
|
| 491 | - $query = "UPDATE $glued_table SET path='$full_file_name',visibility='$default_visibility', filetype='$filetype' |
|
| 471 | + if (!$default_visibility) $default_visibility = 'v'; |
|
| 472 | + |
|
| 473 | + // Make sure path is not wrongly formed |
|
| 474 | + $upload_path = !empty($upload_path) ? "/$upload_path" : ''; |
|
| 475 | + |
|
| 476 | + $endchar = substr($filename, strlen($filename) - 1, 1); |
|
| 477 | + if ($endchar == "\\" || $endchar == '/') { |
|
| 478 | + $filename = substr($filename, 0, strlen($filename) - 1); |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + $full_file_name = $upload_path.'/'.$filename; |
|
| 482 | + $full_file_name = str_replace("//", '/', $full_file_name); |
|
| 483 | + |
|
| 484 | + $sql_query = "SELECT count(*) as number_existing FROM $glued_table WHERE path='$full_file_name'"; |
|
| 485 | + $sql_result = Database::query($sql_query); |
|
| 486 | + $result = Database::fetch_array($sql_result); |
|
| 487 | + // Determine which query to execute |
|
| 488 | + if ($result['number_existing'] > 0) { |
|
| 489 | + // Entry exists, update |
|
| 490 | + $query = "UPDATE $glued_table SET path='$full_file_name',visibility='$default_visibility', filetype='$filetype' |
|
| 492 | 491 | WHERE path='$full_file_name'"; |
| 493 | - } else { |
|
| 494 | - // No entry exists, create new one |
|
| 495 | - $query = "INSERT INTO $glued_table (path,visibility,filetype) |
|
| 492 | + } else { |
|
| 493 | + // No entry exists, create new one |
|
| 494 | + $query = "INSERT INTO $glued_table (path,visibility,filetype) |
|
| 496 | 495 | VALUES ('$full_file_name','$default_visibility','$filetype')"; |
| 497 | - } |
|
| 498 | - Database::query($query); |
|
| 499 | - } |
|
| 496 | + } |
|
| 497 | + Database::query($query); |
|
| 498 | + } |
|
| 500 | 499 | } |