diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-26 19:42:34 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-26 19:42:34 +0100 |
commit | eb7494ff6912f5a30f21ae1d7877c34bf72234e3 (patch) | |
tree | 9d1454c1536aea36ddef36e6621eff7a1f37f0bc /user_guide_src/source/libraries | |
parent | 5b8c6058794e0b68916b69936ae30e03cf4a9b59 (diff) | |
parent | 81dd22393368862760e1cfb30a0d73d070cd38af (diff) |
Merge pull request #680 from bubbafoley/load_get_vars
Added method get_vars() to CI_Loader.
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/loader.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/user_guide_src/source/libraries/loader.rst b/user_guide_src/source/libraries/loader.rst index bbe2ed530..2090404bf 100644 --- a/user_guide_src/source/libraries/loader.rst +++ b/user_guide_src/source/libraries/loader.rst @@ -165,6 +165,12 @@ This function checks the associative array of variables available to your views. This is useful if for any reason a var is set in a library or another controller method using $this->load->vars(). +$this->load->get_vars() +=========================== + +This function retrieves all variables available to +your views. + $this->load->helper('file_name') ================================= |