On my first try, I've only included system/application/models, system/application/controllers, system/application/helpers, and system/application/libraries. I chose those folders because I think those folders contain the code that you want to be properly documented for future reference. What other folders do you think should be included?
views:
218answers:
2
+1
A:
I think you got it covered. The rest is probably documented in CodeIgniter's documentation already.
If you add any plugin/library/whatever that requires to be outside of these folders, make sure you add them later as well.
KeyStroke
2009-08-05 00:01:00
+2
A:
To be thorough in terms of your own code. I would recommend the following folders and where necessary have annotated:
- system/application/controllers
- system/application/helpers
- system/application/hooks - Don't miss this out! Any time that you change/extend the CI core, you should definitely document it
- system/application/models
- system/application/libraries
- system/application/language - This may come in useful when implementing localisation
- system/plugins - As you're including libraries, it would make sense to include any external plug-ins being used as well
KushalP
2009-08-07 16:48:04