|
@@ 8-10 (lines=3) @@
|
| 5 |
|
|
| 6 |
|
<p> |
| 7 |
|
<?php |
| 8 |
|
foreach ($contestList->winners as $uid => $player) { |
| 9 |
|
echo CHtml::link($player['name'], ['/player/profile', 'uid'=>$uid]) . ': <strong> '. $player['score'] .' </strong> pont <br/>'; |
| 10 |
|
} |
| 11 |
|
?> |
| 12 |
|
</p> |
| 13 |
|
</li> |
|
@@ 23-26 (lines=4) @@
|
| 20 |
|
|
| 21 |
|
<p> |
| 22 |
|
<?php |
| 23 |
|
foreach ($contestList->winners as $uid => $player) { |
| 24 |
|
echo CHtml::link($player['name'], ['/player/profile', 'uid'=>$uid]) . ': <strong> '. $player['score'] .' </strong> pont, |
| 25 |
|
nyeremény: <strong>'. $contestList->prizePerWinner .'$</strong> <br/>'; |
| 26 |
|
} |
| 27 |
|
|
| 28 |
|
//claim button |
| 29 |
|
if ($contestList->canClaimPrize()) { |