From cf579558fa8c1e20af748146e4fe196d7c772c34 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 11 Mar 2010 09:13:34 -0600 Subject: full on scaffolding removal --- user_guide/general/common_functions.html | 2 +- user_guide/general/hooks.html | 2 - user_guide/general/reserved_names.html | 3 - user_guide/general/routing.html | 7 +- user_guide/general/scaffolding.html | 147 ------------------------------- user_guide/libraries/loader.html | 5 -- user_guide/nav/nav.js | 1 - user_guide/overview/features.html | 1 - user_guide/toc.html | 1 - 9 files changed, 2 insertions(+), 167 deletions(-) delete mode 100644 user_guide/general/scaffolding.html (limited to 'user_guide') diff --git a/user_guide/general/common_functions.html b/user_guide/general/common_functions.html index 132287c60..c04144a5a 100644 --- a/user_guide/general/common_functions.html +++ b/user_guide/general/common_functions.html @@ -111,7 +111,7 @@ Previous Topic:  Auto-loading Resources<    ·   Top of Page   ·   User Guide Home   ·   -Next Topic:  Scaffolding

+Next Topic:  URI Routing

CodeIgniter  ·  Copyright © 2006-2010  ·  Ellislab, Inc.

diff --git a/user_guide/general/hooks.html b/user_guide/general/hooks.html index 1cda08e65..440723805 100644 --- a/user_guide/general/hooks.html +++ b/user_guide/general/hooks.html @@ -143,8 +143,6 @@ $hook['pre_controller'][] = array(
use your own display methodology. Note that you will need to reference the CI superobject with $this->CI =& get_instance() and then the finalized data will be available by calling $this->CI->output->get_output()
  • cache_override
    Enables you to call your own function instead of the _display_cache() function in the output class. This permits you to use your own cache display mechanism.
  • -
  • scaffolding_override
    - Permits a scaffolding request to trigger your own script instead.
  • post_system
    Called after the final rendered page is sent to the browser, at the end of system execution after the finalized data is sent to the browser.
  • diff --git a/user_guide/general/reserved_names.html b/user_guide/general/reserved_names.html index 8abfbe6ce..573732793 100644 --- a/user_guide/general/reserved_names.html +++ b/user_guide/general/reserved_names.html @@ -67,7 +67,6 @@ is a list of reserved names. Do not name your controller functions any of these
  • Controller
  • CI_Base
  • _ci_initialize
  • -
  • _ci_scaffolding
  • Default (PHP 5)
  • index
  • @@ -85,14 +84,12 @@ is a list of reserved names. Do not name your controller functions any of these
  • language
  • library
  • model
  • -
  • scaffolding
  • script
  • view
  • vars
  • _ci_assign_to_models
  • _ci_autoloader
  • _ci_init_class
  • -
  • _ci_init_scaffolding
  • _ci_is_instance
  • _ci_load
  • _ci_load_class
  • diff --git a/user_guide/general/routing.html b/user_guide/general/routing.html index 85e91af70..402e50a27 100644 --- a/user_guide/general/routing.html +++ b/user_guide/general/routing.html @@ -145,11 +145,6 @@ Higher routes will always take precedence over lower ones.

    when people load your root URL. In the above example, the "welcome" class would be loaded. You are encouraged to always have a default route otherwise a 404 page will appear by default.

    -$route['scaffolding_trigger'] = 'scaffolding'; - -

    This route lets you set a secret word, which when present in the URL, triggers the scaffolding feature. -Please read the Scaffolding page for details.

    -

    Important:  The reserved routes must come before any wildcard or regular expression routes.

    @@ -158,7 +153,7 @@ Please read the Scaffolding page for details.