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/installation/upgrade_200.html | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'user_guide/installation') diff --git a/user_guide/installation/upgrade_200.html b/user_guide/installation/upgrade_200.html index bf57fe3c4..3f6bb129e 100644 --- a/user_guide/installation/upgrade_200.html +++ b/user_guide/installation/upgrade_200.html @@ -63,16 +63,7 @@ Upgrading from 1.7.2 to 2.0.0

Step 1: Update your CodeIgniter files

-

Replace these files and directories in your "system" folder with the new versions:

- - +

Replace all files and directories in your "system" folder except your application folder.

Note: If you have any custom developed files in these folders please make copies of them first.

@@ -84,6 +75,20 @@ Upgrading from 1.7.2 to 2.0.0 get_dir_file_info('/path/to/directory', FALSE); +

+ +

Step 3: Convert your Plugins to Helpers

+ +

2.0.0 gets rid of the "Plugin" system as their functionality was identical to Helpers, but non-extensible. You will need to rename your plugin files from filename_pi.php to filename_helper.php, move them to your helpers folder, and change all instances of: + + $this->load->plugin('foo'); + +to + + $this->load->helper('foo'); + +

+

Step 3: Update your user guide

Please replace your local copy of the user guide with the new version, including the image files.

-- cgit v1.2.3-24-g4f1b