From bf3ad9bc881d75d1ded09905bf965699ea46a6d3 Mon Sep 17 00:00:00 2001
From: admin
Plugins should be saved to your system/plugins directory or you can create a folder called plugins inside +your application folder and store them there. Code Igniter will look first in your system/application/plugins +directory. If the direcotry does not exist or the specified plugin is not located there CI will instead look in your global +system/plugins folder.
+$this->load->plugin('captcha');
+
+
A plugin can be loaded anywhere within your controller functions (or even within your View files, although that's not a good practice), as long as you load it before you use it. You can load your plugins in your controller constructor so that they become available automatically in any function, or you can load a plugin in a specific function that needs it.
-- cgit v1.2.3-24-g4f1b