0

I am trying to setup a simple ORM for cakephp so I want to do this

App::import('Model','TheBaseModel');

class YourModel extends TheBaseModel {

}

class TheBaseModel extends AppModel {

function OptionSetter() {

}

}

But I want to put TheBaseModel in a DB folder under model (app/model/DB). How can I do this. I am using cakephp 2.x

user332951
  • 359
  • 1
  • 3
  • 18

1 Answers1

0

put this under plugin and use it as a plugin.

Saanch
  • 1,814
  • 1
  • 24
  • 38