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/default/api | |
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/default/api')
-rw-r--r-- | views/default/api/output.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/views/default/api/output.php b/views/default/api/output.php new file mode 100644 index 000000000..70246e181 --- /dev/null +++ b/views/default/api/output.php @@ -0,0 +1,46 @@ +<?php + /** + * Elgg API default output + * This outputs the api in a human readable way. + * + * @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(); + +?> +<div id="api_result"> + <table width="100%"> + <tr><td width="100" valign="top"><b>Status:</b></td> <td> + <?php + if ($result instanceof SuccessResult) + echo "OK"; + else + echo "**** ERROR ({$export->status}) ****"; + ?> + </td></tr> + + <?php if ($export->message!="") { ?> + <tr><td width="100" valign="top"><b>Message:</b></td> <td><?php echo $export->message; ?></td></tr> + <?php } ?> + <?php if ($export->result) { ?> + <tr><td width="100" valign="top"><b>Result:</b></td> <td><pre><?php print_r($export->result); ?></pre></td></tr> + <?php } ?> + + + <?php if ($export->pam) { ?> + <tr><td width="100" valign="top"><b>PAM:</b></td> <td><pre><?php print_r($export->pam); ?></pre></td></tr> + <?php } ?> + + <?php if ($export->runtime_errors) { ?> + <tr><td width="100" valign="top"><b>Runtime:</b></td> <td><pre><?php print_r($export->runtime_errors); ?></pre></td></tr> + <?php } ?> + </table> +</div>
\ No newline at end of file |