aboutsummaryrefslogtreecommitdiff
path: root/views/default/layout/shells/content.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-18 18:03:24 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-18 18:03:24 +0000
commit562bc001f3002f43c343cc63bbbe3e9cb421de32 (patch)
tree232e0534386a6250315f20a8eaf9037197b8003d /views/default/layout/shells/content.php
parent412d337ee7f1463dc4ea4cf1d23415b10749f996 (diff)
downloadelgg-562bc001f3002f43c343cc63bbbe3e9cb421de32.tar.gz
elgg-562bc001f3002f43c343cc63bbbe3e9cb421de32.tar.bz2
Refs #2950: layout/shells => page/layouts
git-svn-id: http://code.elgg.org/elgg/trunk@8286 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/layout/shells/content.php')
-rw-r--r--views/default/layout/shells/content.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/views/default/layout/shells/content.php b/views/default/layout/shells/content.php
deleted file mode 100644
index 69772985a..000000000
--- a/views/default/layout/shells/content.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
- * Main content area layout
- *
- * @uses $vars['content'] HTML of main content area
- * @uses $vars['sidebar'] HTML of the sidebar
- * @uses $vars['header'] HTML of the content area header (override)
- * @uses $vars['nav'] HTML of the content area nav (override)
- * @uses $vars['footer'] HTML of the content area footer
- * @uses $vars['filter'] HTML of the content area filter (override)
- * @uses $vars['title'] Title text (override)
- * @uses $vars['context'] Page context (override)
- * @uses $vars['buttons'] Content header buttons (override)
- * @uses $vars['filter_context'] Filter context: everyone, friends, mine
- * @uses $vars['class'] Additional class to apply to layout
- */
-
-// give plugins an opportunity to add to content sidebars
-$sidebar_content = elgg_extract('sidebar', $vars, '');
-$params = $vars;
-$params['content'] = $sidebar_content;
-$sidebar = elgg_view('layout/shells/content/sidebar', $params);
-
-// navigation defaults to breadcrumbs
-$nav = elgg_extract('nav', $vars, elgg_view('navigation/breadcrumbs'));
-
-// allow page handlers to override the default header
-if (isset($vars['header'])) {
- $vars['header_override'] = $vars['header'];
-}
-$header = elgg_view('layout/shells/content/header', $vars);
-
-// allow page handlers to override the default filter
-if (isset($vars['filter'])) {
- $vars['filter_override'] = $vars['filter'];
-}
-$filter = elgg_view('layout/shells/content/filter', $vars);
-
-// the all important content
-$content = elgg_extract('content', $vars, '');
-
-// optional footer for main content area
-$footer_content = elgg_extract('footer', $vars, '');
-$params = $vars;
-$params['content'] = $footer_content;
-$footer = elgg_view('layout/shells/content/footer', $params);
-
-$body = $nav . $header . $filter . $content . $footer;
-
-$params = array(
- 'content' => $body,
- 'sidebar' => $sidebar,
-);
-if (isset($vars['class'])) {
- $params['class'] = $vars['class'];
-}
-echo elgg_view_layout('one_sidebar', $params);