|
Revision 1539, 0.6 kB
(checked in by renato, 10 months ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
// ELGG manage groups 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("groups:init"); |
|---|
| 13 |
|
|---|
| 14 |
require_login(); |
|---|
| 15 |
|
|---|
| 16 |
define("context", "network"); |
|---|
| 17 |
templates_page_setup(); |
|---|
| 18 |
|
|---|
| 19 |
$title = run("profile:display:name") . " :: ". __gettext("Access Controls"); |
|---|
| 20 |
$body = run('groups:editpage'); |
|---|
| 21 |
|
|---|
| 22 |
templates_page_output($title, $body); |
|---|
| 23 |
|
|---|
| 24 |
?> |
|---|