root/releases/0.1.2a/profile/edit.php

Revision 2, 500 bytes (checked in by sven, 3 years ago)

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG profile edit page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("profile:init");
9                 
10         protect(1);
11
12         $title = $_SESSION['name'] . " :: Edit profile";
13         
14         $body = run("content:profile:edit");
15         $body .= run("profile:edit");
16         
17         $body = run("templates:draw", array(
18                         'context' => 'infobox',
19                         'name' => $title,
20                         'contents' => $body
21                     )
22                     );
23                     
24         echo run("templates:draw:page", array(
25                     $title, $body
26                 )
27                 );
28
29 ?>
Note: See TracBrowser for help on using the browser.