diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:53:07 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:53:07 +0100 |
commit | 16fcb2e706651c5d81bae56d0223f467c1e291da (patch) | |
tree | 9eb454b6602646d4402d4cb89856e99bee0f47c5 | |
parent | 63277b81edde11b77ff94cbf1c3e5db16c97c4bf (diff) |
Updating code examples in user guide to use CI_Controller instead of Controller
-rw-r--r-- | user_guide/general/views.html | 8 | ||||
-rw-r--r-- | user_guide/helpers/smiley_helper.html | 4 | ||||
-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 |
5 files changed, 16 insertions, 16 deletions
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/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() { |