Index: trunk/extensions/Contest/specials/SpecialContestSignup.php |
— | — | @@ -47,8 +47,21 @@ |
48 | 48 | // TODO: we might want to have a title field here |
49 | 49 | $out->setPageTitle( $contest->getField( 'name' ) ); |
50 | 50 | |
51 | | - |
| 51 | + $this->showSignupForm( $contest ); |
52 | 52 | } |
53 | 53 | } |
54 | 54 | |
| 55 | + /** |
| 56 | + * Display the signup form for this contest. |
| 57 | + * |
| 58 | + * @since 0.1 |
| 59 | + * |
| 60 | + * @param Contest $contest |
| 61 | + */ |
| 62 | + protected function showSignupForm( Contest $contest ) { |
| 63 | + $out = $this->getOutput(); |
| 64 | + |
| 65 | + |
| 66 | + } |
| 67 | + |
55 | 68 | } |