root/releases/0.301/_admin/index.php

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

importing elgg-0.301

Line 
1 <?php
2
3     //    ELGG main admin panel page
4
5     // Run includes
6         require("../includes.php");
7         
8     // Initialise functions for user details, icon management and profile management
9         run("admin:init");
10
11         define("context", "admin");
12         
13     // You must be logged on to view this!
14                                 
15         echo run("templates:draw:page", array(
16                     'Administration',
17                     run("templates:draw", array(
18                         'context' => 'contentholder',
19                         'title' => gettext("Administration"),
20                         'body' => run("admin:main")
21                     )
22                     )
23                 )
24                 );
25
26 ?>
Note: See TracBrowser for help on using the browser.