Fixing a small css issue in the user class.
[elgg.git] / _groups / index.php
blob6365da29f779809db810cd4d67a42797b0b4cd96
1 <?php
3 // ELGG manage groups 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");
12 run("groups:init");
14 define("context", "network");
15 templates_page_setup();
17 // Whose friends are we looking at?
18 global $page_owner;
20 // You must be logged on to view this!
21 protect(1);
23 $title = run("profile:display:name") . " :: ". __gettext("Access Controls");
25 echo templates_page_draw( array(
26 $title,
27 templates_draw(array(
28 'context' => 'contentholder',
29 'title' => $title,
30 'body' => run("groups:editpage")