From c6da50384e06c60e242cb4442abb9c6c9b450674 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 9 Mar 2010 20:44:27 -0600 Subject: completely removed Plugins from CodeIgniter --- user_guide/libraries/loader.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'user_guide/libraries') diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html index bb1a98360..83b3831e2 100644 --- a/user_guide/libraries/loader.html +++ b/user_guide/libraries/loader.html @@ -59,7 +59,7 @@ Loader Class

Loader Class

Loader, as the name suggests, is used to load elements. These elements can be libraries (classes) View files, -Helpers, Plugins, or your own files.

+Helpers, Models, or your own files.

Note: This class is initialized automatically by the system so there is no need to do it manually.

@@ -177,9 +177,6 @@ and merged into one array for conversion to variables.

This function loads helper files, where file_name is the name of the file, without the _helper.php extension.

-

$this->load->plugin('file_name')

-

This function loads plugins files, where file_name is the name of the file, without the _plugin.php extension.

-

$this->load->file('filepath/filename', true/false)

This is a generic file loading function. Supply the filepath and name in the first parameter and it will open and read the file. By default the data is sent to your browser, just like a View file, but if you set the second parameter to true (boolean) -- cgit v1.2.3-24-g4f1b