Simple status box for the sidebar.
[elgg_plugins.git] / calendar / _calendar / archive.php
blobd695a8a3b9b50d18e2bd6bb9091d6a9b4a8ae24a
1 <?php
3 // ELGG weblog view page
5 // Run includes
6 require("../includes.php");
8 run("profile:init");
9 run("calendar:init");
10 run("friends:init");
12 define("context", "calendar");
14 $title = run("profile:display:name") . " :: " . gettext("Event Archives");
16 $body = run("calendar:archives:view");
18 $body = run("templates:draw", array(
19 'context' => 'contentholder',
20 'title' => $title,
21 'body' => $body
25 echo run("templates:draw:page", array(
26 $title,
27 $body