root/releases/0.1.2a/units/friends/friends_edit_wrapper.php

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

importing elgg-0.1.1a

Line 
1 <?php
2
3         global $page_owner;
4         
5         $title = run("profile:display:name") . " :: Friends";
6
7         $body = run("content:friends:manage");
8         $body .= run("friends:edit",array($page_owner));
9         
10         $body = run("templates:draw", array(
11                         'context' => 'infobox',
12                         'name' => $title,
13                         'contents' => $body
14                     )
15                     );
16
17         $run_result = $body;
18                     
19 ?>
Note: See TracBrowser for help on using the browser.