diff options
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 1 | ||||
-rw-r--r-- | user_guide/general/controllers.html | 20 | ||||
-rw-r--r-- | user_guide/general/views.html | 8 | ||||
-rw-r--r-- | user_guide/helpers/smiley_helper.html | 4 | ||||
-rw-r--r-- | user_guide/installation/upgrade_200.html | 6 | ||||
-rw-r--r-- | user_guide/installation/upgrading.html | 1 | ||||
-rw-r--r-- | user_guide/libraries/file_uploading.html | 4 | ||||
-rw-r--r-- | user_guide/libraries/form_validation.html | 8 | ||||
-rw-r--r-- | user_guide/libraries/xmlrpc.html | 8 |
9 files changed, 33 insertions, 27 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 5bfbee702..67fcb7e25 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -75,6 +75,7 @@ Hg Tag: </p> <li>Added ability to set "Package" paths - specific paths where the Loader and Config classes should try to look first for a requested file. This allows distribution of sub-applications with their own libraries, models, config files, etc. in a single "package" directory. See the <a href="libraries/loader.html">Loader class</a> documentation for more details.</li> <li>In-development code is now hosted at <a href="http://bitbucket.org/ellislab/codeigniter/">BitBucket</a>.</li> <li>Removed the deprecated Validation Class.</li> + <li>Added CI_ Prefix to all core classes.</li> </ul> <li>Libraries <ul> diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index cdc4b3ee5..56a1145ad 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -96,7 +96,7 @@ Controllers <textarea class="textarea" style="width:100%" cols="50" rows="10"> <?php -class Blog extends Controller { +class Blog extends CI_Controller { function index() { @@ -119,7 +119,7 @@ class Blog extends Controller { <p>Note: Class names must start with an uppercase letter. In other words, this is valid:</p> <code><?php<br /> -class <var>Blog</var> extends Controller {<br /> +class <var>Blog</var> extends CI_Controller {<br /> <br /> }<br /> ?></code> @@ -127,7 +127,7 @@ class <var>Blog</var> extends Controller {<br /> <p>This is <strong>not</strong> valid:</p> <code><?php<br /> -class <var>blog</var> extends Controller {<br /> +class <var>blog</var> extends CI_Controller {<br /> <br /> }<br /> ?></code> @@ -151,7 +151,7 @@ class <var>blog</var> extends Controller {<br /> <textarea class="textarea" style="width:100%" cols="50" rows="15"> <?php -class Blog extends Controller { +class Blog extends CI_Controller { function index() { @@ -185,7 +185,7 @@ class Blog extends Controller { <code> <?php<br /> -class Products extends Controller {<br /> +class Products extends CI_Controller {<br /> <br /> function shoes($sandals, $id)<br /> {<br /> @@ -330,7 +330,7 @@ called if the URL contains only the sub-folder. Simply name your default contro <p>If you intend to use a constructor in any of your Controllers, you <strong>MUST</strong> place the following line of code in it:</p> -<code>parent::Controller();</code> +<code>parent::CI_Controller();</code> <p>The reason this line is necessary is because your local constructor will be overriding the one in the parent controller class so we need to manually call it.</p> @@ -339,11 +339,11 @@ called if the URL contains only the sub-folder. Simply name your default contro <code> <?php<br /> -class <kbd>Blog</kbd> extends Controller {<br /> +class <kbd>Blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>Blog()</kbd><br /> {<br /> - <var>parent::Controller();</var><br /> + <var>parent::CI_Controller();</var><br /> }<br /> }<br /> ?></code> @@ -352,11 +352,11 @@ class <kbd>Blog</kbd> extends Controller {<br /> <code> <?php<br /> -class <kbd>Blog</kbd> extends Controller {<br /> +class <kbd>Blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>__construct()</kbd><br /> {<br /> - <var>parent::Controller();</var><br /> + <var>parent::CI_Controller();</var><br /> }<br /> }<br /> ?></code> diff --git a/user_guide/general/views.html b/user_guide/general/views.html index 8f317109e..228eb64b5 100644 --- a/user_guide/general/views.html +++ b/user_guide/general/views.html @@ -98,7 +98,7 @@ you should do so before continuing.</p> <textarea class="textarea" style="width:100%" cols="50" rows="10"> <?php -class Blog extends Controller { +class Blog extends CI_Controller { function index() { @@ -117,7 +117,7 @@ class Blog extends Controller { <p>CodeIgniter will intelligently handle multiple calls to $this->load->view from within a controller. If more than one call happens they will be appended together. For example, you may wish to have a header view, a menu view, a content view, and a footer view. That might look something like this:</p> <p><code><?php<br /> <br /> -class Page extends Controller {<br /><br /> +class Page extends CI_Controller {<br /><br /> function index()<br /> {<br /> @@ -163,7 +163,7 @@ $this->load->view('blogview', <var>$data</var>);</code> <textarea class="textarea" style="width:100%" cols="50" rows="14"> <?php -class Blog extends Controller { +class Blog extends CI_Controller { function index() { @@ -203,7 +203,7 @@ pull data from your database it will typically be in the form of a multi-dimensi <textarea class="textarea" style="width:100%" cols="50" rows="17"> <?php -class Blog extends Controller { +class Blog extends CI_Controller { function index() { diff --git a/user_guide/helpers/smiley_helper.html b/user_guide/helpers/smiley_helper.html index d95562d94..d7c2d16e7 100644 --- a/user_guide/helpers/smiley_helper.html +++ b/user_guide/helpers/smiley_helper.html @@ -99,11 +99,11 @@ your <dfn>smiley</dfn> folder.</p> <textarea class="textarea" style="width:100%" cols="50" rows="25"> <?php -class Smileys extends Controller { +class Smileys extends CI_Controller { function Smileys() { - parent::Controller(); + parent::CI_Controller(); } function index() diff --git a/user_guide/installation/upgrade_200.html b/user_guide/installation/upgrade_200.html index 58ed6e5ce..fa57dfb25 100644 --- a/user_guide/installation/upgrade_200.html +++ b/user_guide/installation/upgrade_200.html @@ -102,7 +102,11 @@ to </p> -<h2>Step 5: Update your user guide</h2> +<h2>Step 5: Update Class extension</h2> +<p>All core classes are now prefixed with <kbd>CI_</kbd>. Update Models and Controllers to extend CI_Model and CI_Controller, respectively.</p> + + +<h2>Step 6: Update your user guide</h2> <p>Please replace your local copy of the user guide with the new version, including the image files.</p> </div> diff --git a/user_guide/installation/upgrading.html b/user_guide/installation/upgrading.html index 6df93b12d..eb1cd9d93 100644 --- a/user_guide/installation/upgrading.html +++ b/user_guide/installation/upgrading.html @@ -60,6 +60,7 @@ Upgrading from a Previous Version <p>Please read the upgrade notes corresponding to the version you are upgrading from.</p> <ul> +<li><a href="upgrade_200.html">Upgrading from 1.7.2 to 2.0</a></li> <li><a href="upgrade_172.html">Upgrading from 1.7.1 to 1.7.2</a></li> <li><a href="upgrade_171.html">Upgrading from 1.7.0 to 1.7.1</a></li> <li><a href="upgrade_170.html">Upgrading from 1.6.3 to 1.7.0</a></li> diff --git a/user_guide/libraries/file_uploading.html b/user_guide/libraries/file_uploading.html index 254b2666a..ea0e2a283 100644 --- a/user_guide/libraries/file_uploading.html +++ b/user_guide/libraries/file_uploading.html @@ -144,11 +144,11 @@ folder:</p> <textarea class="textarea" style="width:100%" cols="50" rows="43"><?php -class Upload extends Controller { +class Upload extends CI_Controller { function Upload() { - parent::Controller(); + parent::CI_Controller(); $this->load->helper(array('form', 'url')); } diff --git a/user_guide/libraries/form_validation.html b/user_guide/libraries/form_validation.html index 18f391a57..eae2036c1 100644 --- a/user_guide/libraries/form_validation.html +++ b/user_guide/libraries/form_validation.html @@ -221,7 +221,7 @@ folder:</p> <textarea class="textarea" style="width:100%" cols="50" rows="21"><?php -class Form extends Controller { +class Form extends CI_Controller { function index() { @@ -312,7 +312,7 @@ $this->form_validation->set_rules('email', 'Email', 'required');<br /> <textarea class="textarea" style="width:100%" cols="50" rows="28"><?php -class Form extends Controller { +class Form extends CI_Controller { function index() { @@ -514,7 +514,7 @@ create a callback function that does that. Let's create a example of this.</p> <textarea class="textarea" style="width:100%" cols="50" rows="44"><?php -class Form extends Controller { +class Form extends CI_Controller { function index() { @@ -805,7 +805,7 @@ have a controller named <kbd>Member</kbd> and a function named <kbd>signup</kbd> <code> <?php<br /><br /> -class <kbd>Member</kbd> extends Controller {<br /> +class <kbd>Member</kbd> extends CI_Controller {<br /> <br /> function <kbd>signup</kbd>()<br /> { <br /> diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index 971ab0296..87ca09480 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -211,7 +211,7 @@ an object to that method containing the data sent by the client.</p> <p>Using the above example, if the <var>new_post</var> method is requested, the server will expect a class to exist with this prototype:</p> -<code>class <kbd>My_blog</kbd> extends Controller {<br /> +<code>class <kbd>My_blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>new_post</kbd>(<var>$request</var>)<br /> {<br /> @@ -230,7 +230,7 @@ back information about that particular user (nickname, user ID, email address, e function might look:</p> -<code>class <kbd>My_blog</kbd> extends Controller {<br /> +<code>class <kbd>My_blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>getUserInfo</kbd>(<var>$request</var>)<br /> {<br /> @@ -323,7 +323,7 @@ In it, place this code and save it to your <samp>applications/controllers/</samp <textarea class="textarea" style="width:100%" cols="50" rows="32"><?php -class Xmlrpc_client extends Controller { +class Xmlrpc_client extends CI_Controller { function index() { @@ -361,7 +361,7 @@ In it, place this code and save it to your <samp>applications/controllers/</samp <textarea class="textarea" style="width:100%" cols="50" rows="30"><?php -class Xmlrpc_server extends Controller { +class Xmlrpc_server extends CI_Controller { function index() { |