root/releases/0.1.1b/search/index.php

Revision 2, 485 bytes (checked in by sven, 3 years ago)

importing elgg-0.1.1a

Line 
1 <?php
2
3     //    ELGG profile search page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("search:init");
9         run("search:all:tagtypes");
10         
11         $title = "Search";
12
13         $body = run("content:profile:search");
14         $body .= run("search:display");
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.