root/releases/0.401/_friends/requests.php

Revision 131, 0.6 kB (checked in by ben, 3 years ago)

Membership moderation for communities

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG manage friendship requests 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         define("context", "network");
14         
15     // Whose friends are we looking at?
16         global $page_owner;
17         
18     // You must be logged on to view this!
19     //    protect(1);
20         
21         $title = run("profile:display:name") . " :: ". gettext("Friendship requests");
22                                 
23         echo run("templates:draw:page", array(
24                     $title, run("friends:requests:view")
25                 )
26                 );
27
28 ?>
Note: See TracBrowser for help on using the browser.