vote up 0 vote down star
1

I am considering using CodeIgniter as the framework for my next web-application. However, I already have a large number of helper classes and data structures defined. I could add them to the application's library but I have to rename a large number of files and classes' name to match the criterion

Can I just directly include files as in working on a normal web application, bypassing load->library()? Or is the library reserved for commonly reused classes?

flag

2 Answers

vote up 1 vote down check

You can directly include them if you wish. The loading functionality makes things easier, but nothing is stopping you from doing a standard include in php. I've done it several times with third-party classes.

Kohana (a fork of CodeIgniter) is worth checking out if you are still looking for a good PHP framework. In my opinion, it is much better than CodeIgniter.

link|flag
vote up 1 vote down

You don't need to use CodeIgniter's class loaders, you can also require them as you would in any web app, or wrap them in CI-loadable wrappers. In my own projects, I have a few small stand-alone libraries I require from my base controller, and I wrap a few public libraries (like Markdown) for use as a standard CI library.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.