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 am currently developing a loan application site with a number of modules required for the system. I had managed to create 4 modules. To illustrate my question, here is the situation.

Module 1
Module 2 - dependent on Module 1
Module 3 - dependent on Module 1
Module 4 - dependent on Module 2

Now if I enable Module 4 without enabling the 3 other modules, drupal asked me to install Module 2 and Module 1 for it is the pre-requisite of Module 4. My question is will the sequence of installation be like as follows ?:

Module 1
Module 2
Module 4

Thanks in advance.

share|improve this question

1 Answer

up vote 3 down vote accepted

Yes, they will install in that order.

Issue 833192 dealt with this, and was resolved in June of 2010.

You can also check out the source for includes\install.core.inc to verify this. Search for "Always install required modules first" and you will find the code responsible for ensuring that dependencies are installed first.

share|improve this answer
thanks a lot man.. you removed my doubts with this.. – Aldee Mativo Oct 31 '12 at 9:28
See submit handler yourself: api.drupal.org/api/drupal/modules!system!system.admin.inc/… – Ayesh K Oct 31 '12 at 12:12

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.