diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/odd/canvas/default.php | 21 | ||||
-rw-r--r-- | views/odd/object/default.php | 17 | ||||
-rw-r--r-- | views/odd/user/default.php | 17 |
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 |