I’ve very less experience in Joomla. I’m going to create a joomla component. I’ve heard about the MVC structure in component development. What is the best method to follow? 1)Using simple component development or 2) using MVC
Is there any problems if I uses the first one?
I’ve very less experience in Joomla. I’m going to create a joomla component. I’ve
Share
Generally speaking MVC makes it easier for you to later expand the component. You might not think now that it will be needed but it is a common situation in IT that your client suddenly has new requirements. With MVC introducing those new requirements is much easier thanks to the separation of the code and design.
Another advantage to doing it in MVC is that it will be a great chance for you to learn. Knowledge and experience with the MVC pattern is a huge advantage for any web developer.
If you find yourself struggling at some point, I will recommend Mastering Joomla which is a great reference for Joomla developers.