summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-01-16 20:24:21 +0100
committerDerek Allard <derek.allard@ellislab.com>2010-01-16 20:24:21 +0100
commit1ca94e82c8fc8c2acf4bb7b3927abff736779163 (patch)
treefd7bc21fc1fa2067d76d738f0780089dc2d64eb7 /user_guide
parent76af409a0157f981c145973e5668052621c38415 (diff)
Documented append_output() in the Output Class.
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/changelog.html1
-rw-r--r--user_guide/libraries/output.html8
2 files changed, 9 insertions, 0 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index aef9d71ac..ceb016cf8 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -71,6 +71,7 @@ SVN Revision: </p>
<li>Table library will generate an empty cell with a blank string, or NULL value.</li>
<li>Added a <kbd>parse_string()</kbd> method to the <a href="libraries/parser.html">Parser Class</a>.</li>
<li>Added HTTP headers and Config information to the <a href="general/profiling.html">Profiler</a> output.</li>
+ <li>Documented <kbd>append_output()</kbd> in the <a href="libraries/output.html">Output Class</a>.</li>
</ul>
</li>
<li>Database
diff --git a/user_guide/libraries/output.html b/user_guide/libraries/output.html
index 1e425910f..7be42b441 100644
--- a/user_guide/libraries/output.html
+++ b/user_guide/libraries/output.html
@@ -87,6 +87,14 @@ For example, if you build a page in one of your controller functions, don't set
CodeIgniter functions like <var>$this->load->view()</var>.</p>
+<h2>$this->output->append_output();</h2>
+
+<p>Appends data onto the output string. Usage example:</p>
+
+<code>$this->output->append_output($data);</code>
+
+
+
<h2>$this->output->set_header();</h2>
<p>Permits you to manually set server headers, which the output class will send for you when outputting the final rendered display. Example:</p>