diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 13:07:09 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 13:07:09 +0000 |
commit | 9bb7b4c8afddc734adfd2717d766d1711cf8127c (patch) | |
tree | 0140067d3c0f32ad29f5e379b9c9a5d86d1a7969 /views/default/layouts/module.php | |
parent | 4e80e365f054dea55bd481cbebd7af5fed7bb288 (diff) | |
download | elgg-9bb7b4c8afddc734adfd2717d766d1711cf8127c.tar.gz elgg-9bb7b4c8afddc734adfd2717d766d1711cf8127c.tar.bz2 |
blog sidebar html updates finished - uses modules!
git-svn-id: http://code.elgg.org/elgg/trunk@7526 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/layouts/module.php')
-rw-r--r-- | views/default/layouts/module.php | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/views/default/layouts/module.php b/views/default/layouts/module.php deleted file mode 100644 index db940aedc..000000000 --- a/views/default/layouts/module.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php -/** - * Elgg module layout - * - * @uses $vars['header'] HTML content of the header - * @uses $vars['body'] HTML content of the body - * @uses $vars['footer'] HTML content of the footer - * @uses $vars['class'] Optional additional class for module - * @uses $vars['header_class'] Optional additional class for header - */ - -$header = elgg_get_array_value('header', $vars, ''); -$body = elgg_get_array_value('body', $vars, ''); -$footer = elgg_get_array_value('footer', $vars, ''); - -$class = 'elgg-module'; -$additional_class = elgg_get_array_value('class', $vars, ''); -if ($additional_class) { - $class = "$class $additional_class"; -} - -$header_class = 'elgg-header'; -$additional_class = elgg_get_array_value('header_class', $vars, ''); -if ($additional_class) { - $header_class = "$header_class $additional_class"; -} - -if ($header) { - $header = "<div class=\"$header_class\">$header</div>"; -} - -if ($footer) { - $footer = "<div class=\"elgg-footer\">$footer</div>"; -} - -echo <<<HTML -<div class="$class"> - <div class="elgg-inner"> - $header - <div class="elgg-body">$body</div> - $footer - </div> -</div> -HTML; |