|
Revision 11, 497 bytes
(checked in by sven, 3 years ago)
|
snapshot of elgg 0.301
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
// Run includes |
|---|
| 6 |
require("../includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
run("search:init"); |
|---|
| 9 |
run("search:all:tagtypes"); |
|---|
| 10 |
|
|---|
| 11 |
$title = gettext("Search"); |
|---|
| 12 |
|
|---|
| 13 |
$body = run("content:profile:search"); |
|---|
| 14 |
$body .= run("search:display"); |
|---|
| 15 |
|
|---|
| 16 |
$body = run("templates:draw", array( |
|---|
| 17 |
'context' => 'contentholder', |
|---|
| 18 |
'title' => $title, |
|---|
| 19 |
'body' => $body |
|---|
| 20 |
) |
|---|
| 21 |
); |
|---|
| 22 |
|
|---|
| 23 |
echo run("templates:draw:page", array( |
|---|
| 24 |
$title, $body |
|---|
| 25 |
) |
|---|
| 26 |
); |
|---|
| 27 |
|
|---|
| 28 |
?> |
|---|