aboutsummaryrefslogtreecommitdiff
path: root/views/default/welcome/logged_in.php
blob: 8f70d300595ad1bf3ef8c34a14fed3f0682705fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Elgg sample welcome page (logged in)
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */

//add various views to area1
$area1 = "<h2>" . sprintf(elgg_echo("welcome:user"),$vars['user']->name) . "</h2>";
$area1 .= "<p>" . elgg_echo("welcome_message") . "</p><br />";
$url = $vars['url'] . "action/logout";
$area1 .= "<a href=" . $url . ">" . elgg_echo('logout') . "</a>";

//send area one to the appropriate canvas layout
$body = elgg_view_layout("one_column", $area1);

//draw to screen
echo $body;