root/releases/0.301/_files/edit_file.php

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

snapshot of elgg 0.301

Line 
1 <?php
2
3     //    ELGG manage files 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("files:init");
12         
13         define("context", "files");
14
15     // Whose files are we looking at?
16
17         global $page_owner;
18         $title = run("profile:display:name") . " :: " . gettext("Edit File");
19
20         $body = run("content:files:edit");
21         $body .= run("files:edit");
22         
23         echo run("templates:draw:page", array(
24                     $title,
25                     run("templates:draw", array(
26                             'context' => 'contentholder',
27                             'title' => $title,
28                             'body' => $body
29                         )
30                         )
31                 )
32                 );
33                 
34 ?>
Note: See TracBrowser for help on using the browser.