aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/walled_garden/body.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/core/walled_garden/body.php')
-rw-r--r--views/default/core/walled_garden/body.php32
1 files changed, 5 insertions, 27 deletions
diff --git a/views/default/core/walled_garden/body.php b/views/default/core/walled_garden/body.php
index bee1c9805..67d8e0c37 100644
--- a/views/default/core/walled_garden/body.php
+++ b/views/default/core/walled_garden/body.php
@@ -3,31 +3,9 @@
* Walled garden body
*/
-$title = elgg_get_site_entity()->name;
-$welcome = elgg_echo('walled_garden:welcome');
-$welcome .= ': <br/>' . $title;
+echo elgg_view('core/walled_garden/login');
+echo elgg_view('core/walled_garden/lost_password');
-$menu = elgg_view_menu('walled_garden', array(
- 'sort_by' => 'priority',
- 'class' => 'elgg-menu-general elgg-menu-hz',
-));
-
-$login_box = elgg_view('core/account/login_box', array('module' => 'walledgarden-login'));
-
-$content = <<<HTML
-<div class="elgg-col elgg-col-1of2">
- <div class="elgg-inner">
- <h1 class="elgg-heading-walledgarden">
- $welcome
- </h1>
- $menu
- </div>
-</div>
-<div class="elgg-col elgg-col-1of2">
- <div class="elgg-inner">
- $login_box
- </div>
-</div>
-HTML;
-
-echo elgg_view_module('walledgarden', '', $content, $vars);
+if (elgg_get_config('allow_registration')) {
+ echo elgg_view('core/walled_garden/register');
+}