aboutsummaryrefslogtreecommitdiff
path: root/views/odd
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 17:29:15 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 17:29:15 +0000
commit3ffa4f4ef17d816438e7873b1233725a66341e30 (patch)
treed9a83ee8349ca7923caeda7c527bd6815814b1a6 /views/odd
parentee18a9dc58e75113b3377d08f460788dde419869 (diff)
downloadelgg-3ffa4f4ef17d816438e7873b1233725a66341e30.tar.gz
elgg-3ffa4f4ef17d816438e7873b1233725a66341e30.tar.bz2
Refs #82 - oops... forgot to add these...
git-svn-id: https://code.elgg.org/elgg/trunk@1111 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/odd')
-rw-r--r--views/odd/canvas/default.php21
-rw-r--r--views/odd/object/default.php17
-rw-r--r--views/odd/user/default.php17
3 files changed, 55 insertions, 0 deletions
diff --git a/views/odd/canvas/default.php b/views/odd/canvas/default.php
new file mode 100644
index 000000000..f1fbe6c96
--- /dev/null
+++ b/views/odd/canvas/default.php
@@ -0,0 +1,21 @@
+<?php
+
+ /**
+ * Elgg default layout
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ for ($i = 1; $i < 8; $i++) {
+
+ if (isset($vars["area{$i}"]))
+ echo $vars["area{$i}"];
+
+ }
+
+?> \ No newline at end of file
diff --git a/views/odd/object/default.php b/views/odd/object/default.php
new file mode 100644
index 000000000..8cf04ef16
--- /dev/null
+++ b/views/odd/object/default.php
@@ -0,0 +1,17 @@
+<?php
+
+ /**
+ * Elgg default object view
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ $serialised = exportAsArray($vars['entity']->guid);
+ foreach ($serialised as $s)
+ echo $s;
+?> \ No newline at end of file
diff --git a/views/odd/user/default.php b/views/odd/user/default.php
new file mode 100644
index 000000000..8cf04ef16
--- /dev/null
+++ b/views/odd/user/default.php
@@ -0,0 +1,17 @@
+<?php
+
+ /**
+ * Elgg default object view
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ $serialised = exportAsArray($vars['entity']->guid);
+ foreach ($serialised as $s)
+ echo $s;
+?> \ No newline at end of file