@@ -34,10 +34,10 @@ discard block |
||
| 34 | 34 | $contestModel=new ContestModel(); |
| 35 | 35 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 36 | 36 | $basicInfo=$contestModel->basic($cid); |
| 37 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 38 | - if($clearance == 3){ |
|
| 37 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 38 | + if ($clearance==3) { |
|
| 39 | 39 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 40 | - }else{ |
|
| 40 | + } else { |
|
| 41 | 41 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 42 | 42 | } |
| 43 | 43 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | if ($remainingTime<=0) { |
| 51 | 51 | $remainingTime=0; |
| 52 | 52 | } |
| 53 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 53 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 54 | 54 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 55 | 55 | } |
| 56 | 56 | return view('contest.board.challenge', [ |
@@ -83,15 +83,15 @@ discard block |
||
| 83 | 83 | $accountModel=new AccountModel(); |
| 84 | 84 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 85 | 85 | $basicInfo=$contestModel->basic($cid); |
| 86 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 87 | - if($clearance == 3){ |
|
| 86 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 87 | + if ($clearance==3) { |
|
| 88 | 88 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 89 | - }else{ |
|
| 89 | + } else { |
|
| 90 | 90 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | 93 | $basicInfo=$contestModel->basic($cid); |
| 94 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 94 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 95 | 95 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 96 | 96 | } |
| 97 | 97 | $contest_name=$contestModel->contestName($cid); |
@@ -122,8 +122,8 @@ discard block |
||
| 122 | 122 | ]; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - $editor_left_width = $accountModel->getExtra(Auth::user()->id, 'editor_left_width'); |
|
| 126 | - if(empty($editor_left_width)) $editor_left_width='40'; |
|
| 125 | + $editor_left_width=$accountModel->getExtra(Auth::user()->id, 'editor_left_width'); |
|
| 126 | + if (empty($editor_left_width)) $editor_left_width='40'; |
|
| 127 | 127 | |
| 128 | 128 | return view('contest.board.editor', [ |
| 129 | 129 | 'page_title'=>"Problem Detail", |
@@ -157,15 +157,15 @@ discard block |
||
| 157 | 157 | $contestModel=new ContestModel(); |
| 158 | 158 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 159 | 159 | $basicInfo=$contestModel->basic($cid); |
| 160 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 161 | - if($clearance == 3){ |
|
| 160 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 161 | + if ($clearance==3) { |
|
| 162 | 162 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 163 | - }else{ |
|
| 163 | + } else { |
|
| 164 | 164 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 165 | 165 | } |
| 166 | 166 | } |
| 167 | 167 | $basicInfo=$contestModel->basic($cid); |
| 168 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 168 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 169 | 169 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 170 | 170 | } |
| 171 | 171 | $contest_name=$contestModel->contestName($cid); |
@@ -176,14 +176,14 @@ discard block |
||
| 176 | 176 | |
| 177 | 177 | // To determine the ranking |
| 178 | 178 | foreach ($contestRank as $i => &$r) { |
| 179 | - if($i != 0) { |
|
| 180 | - if($r['score'] == $contestRank[$i-1]['score'] && ($contest_rule == 1 ? ($r['penalty'] == $contestRank[$i-1]['penalty']) : 1) ){ |
|
| 181 | - $r['rank'] = $contestRank[$i-1]['rank']; |
|
| 182 | - }else{ |
|
| 183 | - $r['rank'] = $i + 1; |
|
| 179 | + if ($i!=0) { |
|
| 180 | + if ($r['score']==$contestRank[$i-1]['score'] && ($contest_rule==1 ? ($r['penalty']==$contestRank[$i-1]['penalty']) : 1)) { |
|
| 181 | + $r['rank']=$contestRank[$i-1]['rank']; |
|
| 182 | + } else { |
|
| 183 | + $r['rank']=$i+1; |
|
| 184 | 184 | } |
| 185 | - }else{ |
|
| 186 | - $r['rank'] = 1; |
|
| 185 | + } else { |
|
| 186 | + $r['rank']=1; |
|
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | $rankFrozen=$contestModel->isFrozen($cid); |
@@ -220,15 +220,15 @@ discard block |
||
| 220 | 220 | $contestModel=new ContestModel(); |
| 221 | 221 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 222 | 222 | $basicInfo=$contestModel->basic($cid); |
| 223 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 224 | - if($clearance == 3){ |
|
| 223 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 224 | + if ($clearance==3) { |
|
| 225 | 225 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 226 | - }else{ |
|
| 226 | + } else { |
|
| 227 | 227 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | $basicInfo=$contestModel->basic($cid); |
| 231 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 231 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 232 | 232 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 233 | 233 | } |
| 234 | 234 | $contest_name=$contestModel->contestName($cid); |
@@ -262,14 +262,14 @@ discard block |
||
| 262 | 262 | $contestModel=new ContestModel(); |
| 263 | 263 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 264 | 264 | $basicInfo=$contestModel->basic($cid); |
| 265 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 266 | - if($clearance == 3){ |
|
| 265 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 266 | + if ($clearance==3) { |
|
| 267 | 267 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 268 | - }else{ |
|
| 268 | + } else { |
|
| 269 | 269 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 270 | 270 | } |
| 271 | 271 | } |
| 272 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 272 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 273 | 273 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 274 | 274 | } |
| 275 | 275 | $contest_name=$contestModel->contestName($cid); |
@@ -300,14 +300,14 @@ discard block |
||
| 300 | 300 | $contestModel=new ContestModel(); |
| 301 | 301 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 302 | 302 | $basicInfo=$contestModel->basic($cid); |
| 303 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 304 | - if($clearance == 3){ |
|
| 303 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 304 | + if ($clearance==3) { |
|
| 305 | 305 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 306 | - }else{ |
|
| 306 | + } else { |
|
| 307 | 307 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 310 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 311 | 311 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 312 | 312 | } |
| 313 | 313 | $contest_name=$contestModel->contestName($cid); |
@@ -324,19 +324,19 @@ discard block |
||
| 324 | 324 | ]); |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | - public function analysis($cid){ |
|
| 327 | + public function analysis($cid) { |
|
| 328 | 328 | $contestModel=new ContestModel(); |
| 329 | 329 | $clearance=$contestModel->judgeClearance($cid, Auth::user()->id); |
| 330 | 330 | $basicInfo=$contestModel->basic($cid); |
| 331 | - if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
|
| 332 | - if($clearance == 3){ |
|
| 331 | + if (!$clearance || time()<strtotime($basicInfo['begin_time'])) { |
|
| 332 | + if ($clearance==3) { |
|
| 333 | 333 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 334 | - }else{ |
|
| 334 | + } else { |
|
| 335 | 335 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | $basicInfo=$contestModel->basic($cid); |
| 339 | - if($basicInfo['public'] && !$basicInfo['audit_status']){ |
|
| 339 | + if ($basicInfo['public'] && !$basicInfo['audit_status']) { |
|
| 340 | 340 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 341 | 341 | } |
| 342 | 342 | $contest_name=$contestModel->contestName($cid); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 38 | 38 | if($clearance == 3){ |
| 39 | 39 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 40 | - }else{ |
|
| 40 | + } else{ |
|
| 41 | 41 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 42 | 42 | } |
| 43 | 43 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 87 | 87 | if($clearance == 3){ |
| 88 | 88 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 89 | - }else{ |
|
| 89 | + } else{ |
|
| 90 | 90 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -123,7 +123,9 @@ discard block |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | $editor_left_width = $accountModel->getExtra(Auth::user()->id, 'editor_left_width'); |
| 126 | - if(empty($editor_left_width)) $editor_left_width='40'; |
|
| 126 | + if(empty($editor_left_width)) { |
|
| 127 | + $editor_left_width='40'; |
|
| 128 | + } |
|
| 127 | 129 | |
| 128 | 130 | return view('contest.board.editor', [ |
| 129 | 131 | 'page_title'=>"Problem Detail", |
@@ -160,7 +162,7 @@ discard block |
||
| 160 | 162 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 161 | 163 | if($clearance == 3){ |
| 162 | 164 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 163 | - }else{ |
|
| 165 | + } else{ |
|
| 164 | 166 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 165 | 167 | } |
| 166 | 168 | } |
@@ -179,10 +181,10 @@ discard block |
||
| 179 | 181 | if($i != 0) { |
| 180 | 182 | if($r['score'] == $contestRank[$i-1]['score'] && ($contest_rule == 1 ? ($r['penalty'] == $contestRank[$i-1]['penalty']) : 1) ){ |
| 181 | 183 | $r['rank'] = $contestRank[$i-1]['rank']; |
| 182 | - }else{ |
|
| 184 | + } else{ |
|
| 183 | 185 | $r['rank'] = $i + 1; |
| 184 | 186 | } |
| 185 | - }else{ |
|
| 187 | + } else{ |
|
| 186 | 188 | $r['rank'] = 1; |
| 187 | 189 | } |
| 188 | 190 | } |
@@ -223,7 +225,7 @@ discard block |
||
| 223 | 225 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 224 | 226 | if($clearance == 3){ |
| 225 | 227 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 226 | - }else{ |
|
| 228 | + } else{ |
|
| 227 | 229 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 228 | 230 | } |
| 229 | 231 | } |
@@ -265,7 +267,7 @@ discard block |
||
| 265 | 267 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 266 | 268 | if($clearance == 3){ |
| 267 | 269 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 268 | - }else{ |
|
| 270 | + } else{ |
|
| 269 | 271 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 270 | 272 | } |
| 271 | 273 | } |
@@ -303,7 +305,7 @@ discard block |
||
| 303 | 305 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 304 | 306 | if($clearance == 3){ |
| 305 | 307 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 306 | - }else{ |
|
| 308 | + } else{ |
|
| 307 | 309 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 308 | 310 | } |
| 309 | 311 | } |
@@ -331,7 +333,7 @@ discard block |
||
| 331 | 333 | if (!$clearance || time() < strtotime($basicInfo['begin_time'])) { |
| 332 | 334 | if($clearance == 3){ |
| 333 | 335 | return Redirect::route('contest.admin', ['cid' => $cid]); |
| 334 | - }else{ |
|
| 336 | + } else{ |
|
| 335 | 337 | return Redirect::route('contest.detail', ['cid' => $cid]); |
| 336 | 338 | } |
| 337 | 339 | } |