root/releases/0.401/_groups/index.php

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

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
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         define("context", "network");
15
16     // Whose friends are we looking at?
17         global $page_owner;
18         
19     // You must be logged on to view this!
20         protect(1);
21         
22         $title = run("profile:display:name") . " :: ". gettext("Access Controls");
23                                 
24         echo run("templates:draw:page", array(
25                     $title,
26                     run("templates:draw", array(
27                         'context' => 'contentholder',
28                         'title' => $title,
29                         'body' => run("groups:editpage")
30                     )
31                     )
32                 )
33                 );
34
35 ?>
Note: See TracBrowser for help on using the browser.