root/releases/0.1.2a/_groups/index.php

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

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG manage groups 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         run("groups:init");
13
14     // Whose friends are we looking at?
15         global $page_owner;
16         
17     // You must be logged on to view this!
18         protect(1);
19         
20         $title = run("profile:display:name") . " :: Groups";
21                                 
22         echo run("templates:draw:page", array(
23                     $title,
24                     run("templates:draw", array(
25                         'context' => 'infobox',
26                         'name' => $title,
27                         'contents' => run("groups:editpage")
28                     )
29                     )
30                 )
31                 );
32
33 ?>
Note: See TracBrowser for help on using the browser.