]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
adding a generic module layout
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 2 Dec 2010 22:38:14 +0000 (22:38 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 2 Dec 2010 22:38:14 +0000 (22:38 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7504 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/layouts/module.php [new file with mode: 0644]

diff --git a/views/default/layouts/module.php b/views/default/layouts/module.php
new file mode 100644 (file)
index 0000000..8c74aae
--- /dev/null
@@ -0,0 +1,39 @@
+<?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
+ */
+
+$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";
+}
+
+if ($header) {
+       $header = "<div class=\"elgg-header\">$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;