root/releases/0.2/_communities/index.php
| Revision 8, 0.6 kB (checked in by sven, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | // ELGG manage community memberships page |
| 4 | |
| 5 | // Run includes |
| 6 | require("../includes.php"); |
| 7 | |
| 8 | // Initialise functions for user details, icon management and profile management |
| 9 | run("userdetails:init"); |
| 10 | run("profile:init"); |
| 11 | run("friends:init"); |
| 12 | |
| 13 | // Whose friends are we looking at? |
| 14 | global $page_owner; |
| 15 | |
| 16 | // You must be logged on to view this! |
| 17 | // protect(1); |
| 18 | |
| 19 | $title = run("profile:display:name") . " :: Communities"; |
| 20 | |
| 21 | echo run("templates:draw:page", array( |
| 22 | $title, run("communities:editpage") |
| 23 | ) |
| 24 | ); |
| 25 | |
| 26 | ?> |
Note: See TracBrowser for help on using the browser.
