root/releases/0.1.1b/_weblog/archive_month.php

Revision 2, 0.5 kB (checked in by sven, 3 years ago)

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG weblog view page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("profile:init");
9         run("friends:init");
10         run("weblogs:init");
11         
12         $title = run("profile:display:name") . " :: Weblog Archives";
13         
14         $body .= run("weblogs:archives:month:view");
15         
16         $body = run("templates:draw", array(
17                         'context' => 'infobox',
18                         'name' => $title,
19                         'contents' => $body
20                     )
21                     );
22         
23         echo run("templates:draw:page", array(
24                         $title, $body
25                     )
26                     );
27
28 ?>
Note: See TracBrowser for help on using the browser.