root/devel/mod/community/owned.php

Revision 1539, 0.8 kB (checked in by renato, 10 months ago)

Setting prop svn:eol-style in LOTS of files.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG manage community members page
4
5     // Run includes
6         require_once(dirname(dirname(__FILE__))."/../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("communities:init");
13
14         $context = (defined('COMMUNITY_CONTEXT'))?COMMUNITY_CONTEXT:"network";
15
16         define("context", $context);
17         templates_page_setup();
18
19     // Whose friends are we looking at?
20         global $page_owner;
21
22     // You must be logged on to view this!
23     //    protect(1);
24
25         $title = run("profile:display:name") . " :: " . __gettext("Owned Communities");
26         $body = run('communities:owned', array($page_owner));
27
28         templates_page_output($title, $body);
29
30 ?>
Note: See TracBrowser for help on using the browser.