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.

How to integrate module inside application? I have modules having two controllers and two respective views inside module. Now I want to integrate this module inside my application, so that views and actions can be handled by this module only.

share|improve this question

2 Answers

up vote 0 down vote accepted

Once you have created the module enable it in the application bootstrap.php then you should be able to visit [your-website]/modualController/action you might need to look at routes.

This is a great resource for modules and routing, and everything else Kohana http://kerkness.ca/wiki/doku.php

share|improve this answer
Thanks Koorb. Yes It need to be handled by routes. – Asif Mulla Oct 19 '10 at 12:00

Note that your Application, modules and System files may intersect. Use this picture to understand Kohana cascading filesystem:

alt text

So, if both application and your module have a views/welcome.php, application one will be found. When two modules have files with the same path, Kohana will select module with highest position in Kohana::modules() list.

share|improve this answer
Yes, I'll keep this in mind. – Asif Mulla Oct 19 '10 at 12:02

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.