Completed
Pull Request — master (#1795)
by Christian
11:36
created
html/inc/forum.inc 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -208,6 +208,9 @@  discard block
 block discarded – undo
208 208
 // (to accommodate long [pre] lines)
209 209
 // and the left column (author info) has fixed size
210 210
 //
211
+/**
212
+ * @param string[] $headings
213
+ */
211 214
 function start_forum_table($headings) {
212 215
     $a = array();
213 216
     foreach ($headings as $h) {
@@ -488,6 +491,9 @@  discard block
 block discarded – undo
488 491
 // Display an individual post.
489 492
 // Generates a table row with two cells: author and message
490 493
 //
494
+/**
495
+ * @param integer $controls
496
+ */
491 497
 function show_post(
492 498
     $post, $thread, $forum, $logged_in_user, $latest_viewed,
493 499
     $controls=FORUM_CONTROLS, $filter=true
@@ -852,6 +858,9 @@  discard block
 block discarded – undo
852 858
 // These take care of counts and timestamps.
853 859
 // Don't do these things directly - use these functions
854 860
 //
861
+/**
862
+ * @param integer $parent_id
863
+ */
855 864
 function create_post($content, $parent_id, $user, $forum, $thread, $signature) {
856 865
     $content = substr($content, 0, 64000);
857 866
     $content = BoincDb::escape_string($content);
@@ -1084,6 +1093,9 @@  discard block
 block discarded – undo
1084 1093
 // $sort_style - string (checked by switch statement)
1085 1094
 // $show_hidden - bool (not directly passed to SQL)
1086 1095
 //
1096
+/**
1097
+ * @param boolean $show_hidden
1098
+ */
1087 1099
 function get_thread_posts($threadid, $sort_style, $show_hidden) {
1088 1100
     $sql = "thread=$threadid";
1089 1101
     if (!$show_hidden) {
@@ -1109,6 +1121,9 @@  discard block
 block discarded – undo
1109 1121
 // Show links for post moderation actions;
1110 1122
 // logged in user has moderation rights.
1111 1123
 //
1124
+/**
1125
+ * @param string $config
1126
+ */
1112 1127
 function show_post_moderation_links(
1113 1128
     $config, $logged_in_user, $post, $forum, $tokens
1114 1129
 ){
Please login to merge, or discard this patch.
html/inc/forum_db.inc 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -115,6 +115,10 @@  discard block
 block discarded – undo
115 115
         $db = BoincDb::get();
116 116
         return $db->enum('post', 'BoincPost', $clause);
117 117
     }
118
+
119
+    /**
120
+     * @param string $query
121
+     */
118 122
     static function enum_general($query) {
119 123
         $db = BoincDb::get();
120 124
         return $db->enum_general('BoincPost', $query);
@@ -175,6 +179,10 @@  discard block
 block discarded – undo
175 179
         $db = BoincDb::get();
176 180
         return $db->delete_aux('forum_preferences', "userid=$this->userid");
177 181
     }
182
+
183
+    /**
184
+     * @param string $clause
185
+     */
178 186
     static function enum($clause=null) {
179 187
         $db = BoincDb::get();
180 188
         return $db->enum('forum_preferences', 'BoincForumPrefs', $clause);
@@ -290,6 +298,10 @@  discard block
 block discarded – undo
290 298
 }
291 299
 
292 300
 class BoincNotify {
301
+
302
+    /**
303
+     * @param string $clause
304
+     */
293 305
     static function insert($clause) {
294 306
         $db = BoincDb::get();
295 307
         $ret = $db->insert('notify', $clause);
@@ -304,6 +316,10 @@  discard block
 block discarded – undo
304 316
         $db = BoincDb::get();
305 317
         return $db->enum('notify', 'BoincNotify', $clause);
306 318
     }
319
+
320
+    /**
321
+     * @param integer $type
322
+     */
307 323
     static function lookup($userid, $type, $opaque) {
308 324
         $db = BoincDb::get();
309 325
         return $db->lookup('notify', 'BoincNotify', "userid=$userid and type=$type and opaque=$opaque");
@@ -316,6 +332,10 @@  discard block
 block discarded – undo
316 332
         $db = BoincDb::get();
317 333
         $db->delete_aux('notify', $clause);
318 334
     }
335
+
336
+    /**
337
+     * @param string $query
338
+     */
319 339
     static function enum_general($query) {
320 340
         $db = BoincDb::get();
321 341
         return $db->enum_general('BoincNotify', $query);
Please login to merge, or discard this patch.
html/inc/forum_email.inc 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -196,6 +196,10 @@
 block discarded – undo
196 196
 
197 197
 //////////////////// a banishment vote has been started  ///////////
198 198
 //
199
+/**
200
+ * @param integer $duration
201
+ * @param integer $end_time
202
+ */
199 203
 function send_banish_vote_email($user, $duration, $reason, $end_time) {
200 204
 	global $master_url;
201 205
     $now=time();
Please login to merge, or discard this patch.
html/inc/forum_rss.inc 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
     return false;
30 30
 }
31 31
 
32
+/**
33
+ * @param boolean $no_images
34
+ */
32 35
 function show_forum_rss_item($thread, $userid, $threads_only, $no_images) {
33 36
     $unique_url=secure_url_base()."forum_thread.php?id=".$thread->id;
34 37
 
Please login to merge, or discard this patch.
html/inc/geoip.inc 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -229,6 +229,9 @@  discard block
 block discarded – undo
229 229
   shmop_close ($shmid);
230 230
 }
231 231
 
232
+/**
233
+ * @param GeoIP $gi
234
+ */
232 235
 function _setup_segments($gi){
233 236
   $gi->databaseType = GEOIP_COUNTRY_EDITION;
234 237
   $gi->record_length = STANDARD_RECORD_LENGTH;
@@ -311,6 +314,10 @@  discard block
 block discarded – undo
311 314
   return $gi;
312 315
 }
313 316
 
317
+/**
318
+ * @param string $filename
319
+ * @param integer $flags
320
+ */
314 321
 function geoip_open($filename, $flags) {
315 322
   $gi = new GeoIP;
316 323
   $gi->flags = $flags;
@@ -419,6 +426,9 @@  discard block
 block discarded – undo
419 426
   return false;
420 427
 }
421 428
 
429
+/**
430
+ * @param integer $ipnum
431
+ */
422 432
 function _get_org($gi,$ipnum){
423 433
   $seek_org = _geoip_seek_country($gi,$ipnum);
424 434
   if ($seek_org == $gi->databaseSegments) {
@@ -443,6 +453,9 @@  discard block
 block discarded – undo
443 453
   return _get_org($gi, $ipnum);
444 454
 }
445 455
 
456
+/**
457
+ * @param integer $ipnum
458
+ */
446 459
 function _get_region($gi,$ipnum){
447 460
   if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
448 461
     $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
Please login to merge, or discard this patch.
html/inc/host.inc 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -324,6 +324,11 @@  discard block
 block discarded – undo
324 324
 // so it's OK to show the domain name etc.
325 325
 // If private is false, show the owner's name only if they've given permission
326 326
 //
327
+/**
328
+ * @param integer $i
329
+ * @param boolean $show_owner
330
+ * @param boolean $any_product_name
331
+ */
327 332
 function show_host_row($host, $i, $private, $show_owner, $any_product_name) {
328 333
     $anonymous = false;
329 334
     if (!$private) {
@@ -503,6 +508,9 @@  discard block
 block discarded – undo
503 508
 // that their time intervals are disjoint.
504 509
 // So the CPU/OS checks don't have to be very strict.
505 510
 //
511
+/**
512
+ * @param boolean $show_detail
513
+ */
506 514
 function hosts_compatible($host1, $host2, $show_detail) {
507 515
     // A host is "new" if it has no credit and no results.
508 516
     // Skip disjoint-time check if one host or other is new
@@ -642,6 +650,9 @@  discard block
 block discarded – undo
642 650
     return "hosts_user.php?sort=$sort&rev=$rev&show_all=$show_all$x";
643 651
 }
644 652
 
653
+/**
654
+ * @param string $sort
655
+ */
645 656
 function link_url_rev($actual_sort, $sort, $rev, $show_all) {
646 657
     if ($actual_sort == $sort) {
647 658
         $rev = 1 - $rev;
@@ -661,6 +672,9 @@  discard block
 block discarded – undo
661 672
     echo "<p>";
662 673
 }
663 674
 
675
+/**
676
+ * @param boolean $any_product_name
677
+ */
664 678
 function user_host_table_start(
665 679
     $private, $sort, $rev, $show_all, $any_product_name
666 680
 ) {
Please login to merge, or discard this patch.
html/inc/news.inc 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -65,6 +65,10 @@
 block discarded – undo
65 65
     return $forum->parent_type == 0 && ($forum->title === $forum_name);
66 66
 }
67 67
 
68
+/**
69
+ * @param integer $start
70
+ * @param integer $count
71
+ */
68 72
 function show_news($start, $count) {
69 73
     $forum = news_forum();
70 74
     if (!$forum) {
Please login to merge, or discard this patch.
html/inc/pm.inc 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@  discard block
 block discarded – undo
27 27
     echo "</div>\n";
28 28
 }
29 29
 
30
+/**
31
+ * @param null|integer $teamid
32
+ * @param string $error
33
+ */
30 34
 function pm_team_form($user, $teamid, $error=null) {
31 35
     global $bbcode_html, $bbcode_js;
32 36
     $team = BoincTeam::lookup_id($teamid);
@@ -78,6 +82,9 @@  discard block
 block discarded – undo
78 82
     page_tail();
79 83
 }
80 84
 
85
+/**
86
+ * @param string $error
87
+ */
81 88
 function pm_form($replyto, $userid, $error = null) {
82 89
     global $bbcode_html, $bbcode_js;
83 90
     global $g_logged_in_user;
@@ -196,6 +203,9 @@  discard block
 block discarded – undo
196 203
     return "<a href=pm.php>".tra("Private message%1 from %2, subject:" , "</a>", $from_user->name )." $pm->subject";
197 204
 }
198 205
 
206
+/**
207
+ * @param boolean $send_email
208
+ */
199 209
 function pm_send_msg($from_user, $to_user, $subject, $content, $send_email) {
200 210
     $sql_subject = BoincDb::escape_string(sanitize_tags($subject));
201 211
     $sql_content = BoincDb::escape_string($content);
@@ -224,6 +234,9 @@  discard block
 block discarded – undo
224 234
     BoincNotify::insert("(userid, create_time, type, opaque) values ($to_user->id, ".time().", ".NOTIFY_PM.", $mid)");
225 235
 }
226 236
 
237
+/**
238
+ * @param integer $duration
239
+ */
227 240
 function pm_count($userid, $duration) {
228 241
     $time = time() - $duration;
229 242
 
Please login to merge, or discard this patch.
html/inc/prefs.inc 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -291,6 +291,9 @@  discard block
 block discarded – undo
291 291
     return $dp;
292 292
 }
293 293
 
294
+/**
295
+ * @param string $t
296
+ */
294 297
 function group_header($t) {
295 298
     echo "<tr><th class=\"bg-info\">$t</th><td class=\"bg-info\" colspan=4><br></td></tr>\n";
296 299
 }
@@ -413,6 +416,9 @@  discard block
 block discarded – undo
413 416
 
414 417
 // Display all venues as columns next to descriptions
415 418
 //
419
+/**
420
+ * @param stdClass $prefs
421
+ */
416 422
 function prefs_show_columns_global($prefs) {
417 423
     global $cpu_prefs;
418 424
     global $disk_prefs;
@@ -483,6 +489,11 @@  discard block
 block discarded – undo
483 489
     return PROJECT;
484 490
 }
485 491
 
492
+/**
493
+ * @param stdClass $prefs
494
+ * @param string $venue
495
+ * @param string $subset
496
+ */
486 497
 function prefs_display_venue($prefs, $venue, $subset) {
487 498
     global $g_logged_in_user;
488 499
     $tokens = url_tokens($g_logged_in_user->authenticator);
Please login to merge, or discard this patch.