@@ -76,7 +76,7 @@ |
||
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | 78 | * Exports the complete report as an XLS file |
| 79 | - * @return boolean False on error |
|
| 79 | + * @return boolean|null False on error |
|
| 80 | 80 | */ |
| 81 | 81 | public function exportCompleteReportXLS($data) |
| 82 | 82 | { |
@@ -45,6 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | 47 | * Get actual array data |
| 48 | + * @param integer $count |
|
| 48 | 49 | * @return array 2-dimensional array - each array contains the elements: |
| 49 | 50 | * 0 ['id'] : user id |
| 50 | 51 | * 1 ['result_id'] : result id |
@@ -130,6 +131,7 @@ discard block |
||
| 130 | 131 | * @param float Current absolute score (max score is taken from $this->evaluation->get_max() |
| 131 | 132 | * @param bool Whether we want the real score (2/4 (50 %)) or the transformation (A, B, C, etc) |
| 132 | 133 | * @param bool Whether we want to ignore the score color |
| 134 | + * @param boolean $realscore |
|
| 133 | 135 | * @result string The score as we want to show it |
| 134 | 136 | */ |
| 135 | 137 | private function get_score_display ($score, $realscore, $ignore_score_color = false) |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | |
| 233 | 233 | /** |
| 234 | 234 | * @param int $category_id |
| 235 | - * @return bool |
|
| 235 | + * @return false|null |
|
| 236 | 236 | */ |
| 237 | 237 | public function insert_defaults($category_id) |
| 238 | 238 | { |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | /** |
| 266 | - * @return int|null|string |
|
| 266 | + * @return integer |
|
| 267 | 267 | */ |
| 268 | 268 | public function get_number_decimals() |
| 269 | 269 | { |
@@ -337,8 +337,8 @@ discard block |
||
| 337 | 337 | |
| 338 | 338 | /** |
| 339 | 339 | * @param $score |
| 340 | - * @param $type |
|
| 341 | - * @return float|string |
|
| 340 | + * @param integer $type |
|
| 341 | + * @return string |
|
| 342 | 342 | */ |
| 343 | 343 | private function display_default($score, $type) |
| 344 | 344 | { |
@@ -72,6 +72,7 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * Get actual array data |
| 75 | + * @param integer $count |
|
| 75 | 76 | * @return array 2-dimensional array - each array contains the elements: |
| 76 | 77 | * 0: eval/link object |
| 77 | 78 | * 1: item name |
@@ -285,7 +286,7 @@ discard block |
||
| 285 | 286 | |
| 286 | 287 | /** |
| 287 | 288 | * @param $item |
| 288 | - * @param $ignore_score_color |
|
| 289 | + * @param boolean $ignore_score_color |
|
| 289 | 290 | * @return string |
| 290 | 291 | */ |
| 291 | 292 | private function build_average_column($item, $ignore_score_color) |
@@ -306,7 +307,7 @@ discard block |
||
| 306 | 307 | |
| 307 | 308 | /** |
| 308 | 309 | * @param $item |
| 309 | - * @param $ignore_score_color |
|
| 310 | + * @param boolean $ignore_score_color |
|
| 310 | 311 | * @return string |
| 311 | 312 | */ |
| 312 | 313 | private function build_result_column($item, $ignore_score_color) |
@@ -323,7 +324,7 @@ discard block |
||
| 323 | 324 | |
| 324 | 325 | /** |
| 325 | 326 | * @param $item |
| 326 | - * @param $ignore_score_color |
|
| 327 | + * @param boolean $ignore_score_color |
|
| 327 | 328 | * @return string |
| 328 | 329 | */ |
| 329 | 330 | private function build_mask_column($item, $ignore_score_color) |
@@ -339,7 +340,7 @@ discard block |
||
| 339 | 340 | |
| 340 | 341 | /** |
| 341 | 342 | * @param $coursecode |
| 342 | - * @return mixed |
|
| 343 | + * @return string |
|
| 343 | 344 | */ |
| 344 | 345 | private function get_course_name_from_code_cached($coursecode) |
| 345 | 346 | { |
@@ -471,7 +471,7 @@ |
||
| 471 | 471 | * Display a user icon that links to the user page |
| 472 | 472 | * |
| 473 | 473 | * @param integer $user_id the id of the user |
| 474 | - * @return html code |
|
| 474 | + * @return string code |
|
| 475 | 475 | * |
| 476 | 476 | * @author Patrick Cool <[email protected]>, Ghent University, Belgium |
| 477 | 477 | * @version April 2008 |
@@ -189,6 +189,8 @@ |
||
| 189 | 189 | * @param float Timeout |
| 190 | 190 | * @param bool Include HTTP Request headers? |
| 191 | 191 | * @param bool Include HTTP Response headers? |
| 192 | + * @param string $ip |
|
| 193 | + * @return string |
|
| 192 | 194 | */ |
| 193 | 195 | function _http_request($ip, $port = 80, $uri = '/', $getdata = array(), $timeout = 5, $req_hdr = false, $res_hdr = false) |
| 194 | 196 | { |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | * a given string |
| 23 | 23 | * @param string String to search for |
| 24 | 24 | * @param int Deprecated param |
| 25 | - * @return string A formatted, xajax answer block |
|
| 25 | + * @return xajaxResponse A formatted, xajax answer block |
|
| 26 | 26 | * @assert () === false |
| 27 | 27 | */ |
| 28 | 28 | function search_courses($needle, $id) |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | * search string |
| 24 | 24 | * @param string Search string |
| 25 | 25 | * @param int Deprecated param |
| 26 | - * @return string Xajax response block |
|
| 26 | + * @return xajaxResponse Xajax response block |
|
| 27 | 27 | * @assert () === false |
| 28 | 28 | */ |
| 29 | 29 | function search_users($needle, $id) |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | |
| 190 | 190 | /** |
| 191 | 191 | * Gets an array with all the course tables (deprecated?) |
| 192 | - * @return array |
|
| 192 | + * @return string[] |
|
| 193 | 193 | * @assert (null) !== null |
| 194 | 194 | */ |
| 195 | 195 | public static function get_course_tables() |
@@ -310,6 +310,8 @@ discard block |
||
| 310 | 310 | * @param string Complete path to directory we want to list |
| 311 | 311 | * @param array A list of files to which we want to add the files found |
| 312 | 312 | * @param string Type of base directory from which we want to recover the files |
| 313 | + * @param string $path |
|
| 314 | + * @param string $media |
|
| 313 | 315 | * @return array |
| 314 | 316 | * @assert (null,null,null) === false |
| 315 | 317 | * @assert ('abc',array(),'') === array() |
@@ -371,6 +373,7 @@ discard block |
||
| 371 | 373 | * Sorts pictures by type (used?) |
| 372 | 374 | * @param array List of files (sthg like array(0=>array('png'=>1))) |
| 373 | 375 | * @param string File type |
| 376 | + * @param string $type |
|
| 374 | 377 | * @return array The received array without files not matching type |
| 375 | 378 | * @assert (array(),null) === array() |
| 376 | 379 | */ |