0

I am using codeigniter 2.1.2 and I want to use scaffolding feature to add information to table. When I set this $route['scaffolding_trigger'] = 'scaffolding'; in routes.php and call it in controller $this->load->scaffolding('applicants'); I get the following Error:
Fatal error: Call to undefined method CI_Loader::scaffolding() in C:\xampp\htdocs\hmplatform\application\controllers\Applicant.php on line 6 So I am asking if I can find a library that contains scaffolding features because in this version I downloaded from GIT there is no scaffolding folder.

user1577291
  • 366
  • 1
  • 3
  • 15

1 Answers1

2

Scaffolding was depreciated in codeigniter. It isn't longer offered. The tutorials are outdated, so I'm guessing this is where you saw it?

Laurence
  • 58,936
  • 21
  • 171
  • 212
  • I was following video tutorial but when I try to read instructions about this new version it has been deprecated as you said. Thanks. – user1577291 Sep 12 '12 at 08:46