diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-25 11:40:46 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-25 11:40:46 +0000 |
commit | 347b09527e5d812cd1ed67d6faa4ce0cba259b09 (patch) | |
tree | 32b636ea8502bcf4a5abbbbb7f3e819084a63131 /views/php | |
parent | 0c1b67ac3cf61daac65c15f43306ecc4d027fbdd (diff) | |
download | elgg-347b09527e5d812cd1ed67d6faa4ce0cba259b09.tar.gz elgg-347b09527e5d812cd1ed67d6faa4ce0cba259b09.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
*
git-svn-id: https://code.elgg.org/elgg/trunk@526 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/php')
-rw-r--r-- | views/php/api/output.php | 19 | ||||
-rw-r--r-- | views/php/pageshells/pageshell.php | 15 |
2 files changed, 34 insertions, 0 deletions
diff --git a/views/php/api/output.php b/views/php/api/output.php new file mode 100644 index 000000000..6d1edcb05 --- /dev/null +++ b/views/php/api/output.php @@ -0,0 +1,19 @@ +<?php + /** + * Elgg PHP output + * This outputs the api as PHP + * + * @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/ + * + */ + + $result = $vars['result']; + $export = $result->export(); + + echo serialize($export); +?>
\ No newline at end of file diff --git a/views/php/pageshells/pageshell.php b/views/php/pageshells/pageshell.php new file mode 100644 index 000000000..30747720f --- /dev/null +++ b/views/php/pageshells/pageshell.php @@ -0,0 +1,15 @@ +<?php + /** + * Elgg PHP output pageshell + * + * @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/ + * + */ + + echo $vars['body']; +?>
\ No newline at end of file |