aboutsummaryrefslogtreecommitdiff
path: root/mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2013-11-09 16:19:23 +0100
committerSem <sembrestels@riseup.net>2013-11-09 16:19:23 +0100
commitd44f0965e80edd003dca4c85f5bdbc462affbe8a (patch)
tree9ef0b1374ab77f3512e10335107175f2281b80cf /mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php
parented6d980dcb06a66e1746fe4959aa138c39fb4e9e (diff)
parentc76018e381332ccb4aed03fbebd80a6b151cd5e5 (diff)
downloadelgg-d44f0965e80edd003dca4c85f5bdbc462affbe8a.tar.gz
elgg-d44f0965e80edd003dca4c85f5bdbc462affbe8a.tar.bz2
Add 'mod/custom_index_widgets/' from commit 'c76018e381332ccb4aed03fbebd80a6b151cd5e5'
git-subtree-dir: mod/custom_index_widgets git-subtree-mainline: ed6d980dcb06a66e1746fe4959aa138c39fb4e9e git-subtree-split: c76018e381332ccb4aed03fbebd80a6b151cd5e5
Diffstat (limited to 'mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php')
-rw-r--r--mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php b/mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php
new file mode 100644
index 000000000..7f8c22437
--- /dev/null
+++ b/mod/custom_index_widgets/views/default/page/layouts/index_2rbhh.php
@@ -0,0 +1,30 @@
+<?php
+ $area1widgets = $vars['area1'];
+ $area2widgets = $vars['area2'];
+ $area3widgets = $vars['area3'];
+ $layoutmode = $vars['layoutmode']; //edit, index
+?>
+
+ <table cellspacing="10" cellpadding="10" width="100%" class="<?php echo elgg_echo($layoutmode); ?>">
+ <tr>
+ <td colspan="2" align="left" valign="top" class="big">
+ <div id="leftcolumn_widgets" class="big_<?php echo elgg_echo($layoutmode); ?>_box">
+ <?php custom_index_show_widget_area($area1widgets) ?>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td align="left" valign="top" class="half">
+ <div id="middlecolumn_widgets" class="half_<?php echo elgg_echo($layoutmode); ?>_box">
+ <?php custom_index_show_widget_area($area2widgets) ?>
+ </div>
+ </td>
+ <td align="left" valign="top" class="half">
+ <div id="rightcolumn_widgets" class="half_<?php echo elgg_echo($layoutmode); ?>_box">
+ <?php custom_index_show_widget_area($area3widgets) ?>
+ </div>
+ </td>
+ </tr>
+ </table>
+
+