Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / _files / edit_folder.php
blob58cec309b1d071177efddfb82359e56e25389905
1 <?php
3 // ELGG manage files page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 // Initialise functions for user details, icon management and profile management
9 run("userdetails:init");
10 run("profile:init");
11 run("files:init");
13 define("context", "files");
14 templates_page_setup();
16 // Whose files are we looking at?
18 global $page_owner;
19 $title = run("profile:display:name") . " :: " . gettext("Edit Folder");
21 $body = run("content:folders:edit");
22 $body .= run("files:folders:edit");
24 echo templates_page_draw( array(
25 $title,
26 templates_draw(array(
27 'context' => 'contentholder',
28 'title' => $title,
29 'body' => $body