root/devel/mod/file/edit_file.php

Revision 1539, 0.7 kB (checked in by renato, 10 months ago)

Setting prop svn:eol-style in LOTS of files.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG manage files 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("files:init");
12         
13         define("context", "files");
14         templates_page_setup();
15
16     // Whose files are we looking at?
17
18         global $page_owner;
19         $title = user_info("name", page_owner()) . " :: " . __gettext("Edit File");
20
21         $body = run("content:files:edit");
22         $body .= run("files:edit");
23         
24         templates_page_output($title, $body);
25                 
26 ?>
Note: See TracBrowser for help on using the browser.