root/releases/0.1.2a/_invite/join.php
| Revision 2, 454 bytes (checked in by sven, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | // ELGG invite-a-friend page |
| 4 | |
| 5 | // Run includes |
| 6 | require("../includes.php"); |
| 7 | |
| 8 | run("invite:init"); |
| 9 | |
| 10 | $title = "Join Elgg"; |
| 11 | |
| 12 | $body = run("content:invite:join"); |
| 13 | $body .= run("invite:join"); |
| 14 | |
| 15 | $body = run("templates:draw", array( |
| 16 | 'context' => 'infobox', |
| 17 | 'name' => $title, |
| 18 | 'contents' => $body |
| 19 | ) |
| 20 | ); |
| 21 | |
| 22 | echo run("templates:draw:page", array( |
| 23 | $title, $body |
| 24 | ) |
| 25 | ); |
| 26 | |
| 27 | ?> |
Note: See TracBrowser for help on using the browser.
