root/releases/0.2/_communities/members.php

Revision 8, 0.7 kB (checked in by sven, 3 years ago)

importing elgg-0.2

Line 
1 <?php
2
3     //    ELGG manage community members 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") . " :: Members";
20                                 
21         echo run("templates:draw:page", array(
22                     $title, run("templates:draw", array(
23                         'context' => 'infobox',
24                         'name' => $title,
25                         'contents' => run("communities:members",array($page_owner))
26                     )
27                     )
28                 )
29                 );
30
31 ?>
Note: See TracBrowser for help on using the browser.