Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I inherited a rather large application using Kohana v3. There are directories with the name "_view" and filenames that begin with _(underscore). Does Kohana do something magical with these files and directories? I good reference would be nice too.

Thanks

share|improve this question

1 Answer

In kohana there are four different file types where underscore will be translated into DIRECTORY_SEPARATOR: classes, config, translation, message. This rules will be applied with autoloader only, e.g. $user = new Model_User() loads the /classes/model/user.php. But you can use the underscore with Kohana::find_file(). Please take a closer look to the Kohana's Cascading filesystem.

In two words: if those files located outside the [application|module|system]/classes, [application|module|system]/views, [application|module|system]/messages, [application|module|system]/i18n and not defined additional autoloaders in the bootstrap.php or index.php they does not have any magical things.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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