diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:16:07 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:16:07 +0000 |
commit | 71d39f1c4ca21bd25b9bda01451ae651cbbabb64 (patch) | |
tree | 93d67f848ed0bf60a26c57ca3c809985a8c55603 /views/default/output/text.php | |
parent | 5a6d2bf8e397792fdc557b658e5ab5caea5d9f29 (diff) | |
download | elgg-71d39f1c4ca21bd25b9bda01451ae651cbbabb64.tar.gz elgg-71d39f1c4ca21bd25b9bda01451ae651cbbabb64.tar.bz2 |
Tidied up output views
git-svn-id: https://code.elgg.org/elgg/trunk@463 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/output/text.php')
-rw-r--r-- | views/default/output/text.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/default/output/text.php b/views/default/output/text.php index 79048485c..01cbdc35d 100644 --- a/views/default/output/text.php +++ b/views/default/output/text.php @@ -1,3 +1,19 @@ <?php
+
+ /**
+ * Elgg text output
+ * Displays some text that was input using a standard text field
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['text'] The text to display
+ *
+ */
+
echo $vars['value'];
?>
\ No newline at end of file |