View Single Post
  #6 (permalink)  
Old 03-27-2008, 03:21 PM
notrub225 notrub225 is offline
Member
 
Join Date: Jan 2008
Location: chicago
Posts: 98
Default

I prefer to just add the models directory by adding it to the include_path. This is the line of code in my bootstrap file:

PHP Code:
// Add the application/models/ directory to the include path
set_include_path('.' PATH_SEPARATOR '../application/models/' PATH_SEPARATOR get_include_path()); 
Reply With Quote