Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / _communities / members.php
blobf567d0fb9e90a34cd6b10719e1b85aea4b8ebcfa
1 <?php
3 // ELGG manage community members page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 // Initialise functions for user details, icon management and profile management
9 run("userdetails:init");
10 run("profile:init");
11 run("friends:init");
13 define("context", "network");
14 templates_page_setup();
16 // Whose friends are we looking at?
17 global $page_owner;
19 // You must be logged on to view this!
20 // protect(1);
22 $title = run("profile:display:name") . " :: " . gettext("Members");
24 echo templates_page_draw( array(
25 $title, templates_draw(array(
26 'context' => 'contentholder',
27 'title' => $title,
28 'body' => run("communities:members",array($page_owner))