summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-21 01:35:42 +0200
committeradmin <devnull@localhost>2006-09-21 01:35:42 +0200
commit7c5595fa77942407c251a7832ee41db5c664822e (patch)
treec2bc23468aa39251b2d39d6eac4a3e0a5aecf5b6 /user_guide
parentbf3ad9bc881d75d1ded09905bf965699ea46a6d3 (diff)
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/general/helpers.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/user_guide/general/helpers.html b/user_guide/general/helpers.html
index 1bed4a8b0..7d16d023f 100644
--- a/user_guide/general/helpers.html
+++ b/user_guide/general/helpers.html
@@ -74,6 +74,12 @@ Each helper function performs one specific task, with no dependence on other fun
<p>Code Igniter does not load Helper Files by default, so the first step in using
a Helper is to load it. Once loaded, it becomes globally available in your <a href="../general/controllers.html">controller</a> and <a href="../general/views.html">views</a>.</p>
+<p>Helpers are typically stored in your <dfn>system/helpers</dfn> directory. Alternately you can create a folder called <kbd>helpers</kbd> inside
+your <kbd>application</kbd> folder and store them there. Code Igniter will look first in your <dfn>system/application/helpers</dfn>
+directory. If the direcotry does not exist or the specified helper is not located there CI will instead look in your global
+<dfn>system/helpers</dfn> folder.</p>
+
+
<h2>Loading a Helper</h2>
<p>Loading a helper file is quite simple using the following function:</p>