root/releases/0.1.1b/_friends/index.php

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

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG manage friends and 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
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") . " :: Friends";
20                                 
21         echo run("templates:draw:page", array(
22                     $title, run("friends:editpage")
23                 )
24                 );
25
26 ?>
Note: See TracBrowser for help on using the browser.