Fix calendar sidebar issue - changed holder from 'contentholder' to 'sidebarholder'
[elgg.git] / _files / index.php
blob9786095e4f2930cf6ce3fec1a375e01e5076ea39
1 <?php
3 // ELGG manage files page
5 // Run includes
6 require("../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");
15 // Whose files are we looking at?
17 global $page_owner;
18 $title = run("profile:display:name") . " :: ". gettext("Files") ."";
20 $body = run("content:files:view");
21 $body .= run("files:view");
23 echo run("templates:draw:page", array(
24 $title,
25 run("templates:draw", array(
26 'context' => 'contentholder',
27 'title' => $title,
28 'body' => $body