blob: 98ed8479f4456f6c8ce33c8b8422796a0367c855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Elgg Walled Garden
*
* @package WalledGarden
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
// Get the Elgg engine
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
//grab the login form
$login = elgg_view("account/forms/login_walledgarden");
//display the contents in our new canvas layout
$body = elgg_view_layout('walled_garden',$login);
page_draw_walledgarden($title, $body);
|