5

Scaffolding feature was in routes.php ($route['scaffolding_trigger'] = '';)in previous version but it is not in routes now in 2.02 so please tell my how do i use scaffolding feature in 2.0.2 version of codeigniter

Ross Rogers
  • 23,523
  • 27
  • 108
  • 164
Imran Ali
  • 97
  • 1
  • 7

2 Answers2

9

Scaffolding was deprecated as of at least 1.7, and is removed in 2.0. There is no such functionality out of the box in this version.

Ross
  • 18,117
  • 7
  • 44
  • 64
  • So i think that i am using old tutorial so please refer me any updated tutorial if u can – Imran Ali Jun 10 '11 at 09:19
  • 1
    There is no updated tutorial. Scaffolding does not exist in CI2.0. If you wish to use it, you should downgrade the version. – Ross Jun 10 '11 at 09:20
  • actually i am watching video tutorial which i downloaded from codeigniter's offical site – Imran Ali Jun 10 '11 at 09:24
  • 4
    If you are referring to the [blog in 20 minutes](http://codeigniter.com/tutorials/watch/blog/) tutorial or the hello world one, then they are extremely outdated. – Ross Jun 10 '11 at 09:27
2

With scaffolding being deprecated, if you absolutely need a solution for this, give Sparkplug a try.

From the link: "A scaffolding library inspired by Ruby on Rails scaffolding. Adds the ability to generate basic CRUD functionality for any given database table."

Fuseblown
  • 771
  • 4
  • 14