root/releases/0.1.2a/_icons/index.php

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

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG manage icons 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("icons:init");
12
13     // You must be logged on to view this!
14         protect(1);
15         
16         $title = run("profile:display:name") . " :: Manage user icons";
17         
18         $body = run("content:icons:manage");
19         $body .= run("icons:edit");
20         $body .= run("icons:add");
21         
22         $mainbody = run("templates:draw", array(
23                             'context' => 'infobox',
24                             'name' => $title,
25                             'contents' => $body
26                         )
27                         );
28                         
29         echo run("templates:draw:page", array(
30                     $title, $mainbody
31                 )
32                 );
33
34 ?>
Note: See TracBrowser for help on using the browser.