2

I've written a few joomla components but feel like I could write them better and more efficient. I was hoping someone can recommend me an example I can download which follows mvc and is written well .and I'm not talking hello world, something with many features. joomla 1.5 only

Alex Bogias
  • 1,826
  • 2
  • 30
  • 45
milan
  • 2,179
  • 9
  • 24
  • 34

2 Answers2

4

com_weblinks in default Joomla! 1.5 installation is the only component which is fully written with Joomla 1.5 MVC. I suggest you to look at it when you're writing a new component - that's what i do.

di3sel
  • 2,002
  • 15
  • 24
0

Have you followed the tutorial at joomla docs? I know it's a "helloworld" example, but it shows how to implement a model using the database, the controller, and the view. I think it's a good point to start. http://docs.joomla.org/Tutorial:Developing_a_Model-View-Controller_Component_-_Part_1

alghimo
  • 2,899
  • 18
  • 11
  • Utes I've followed and its just for beginners. I was looking for something more complex. Thanks. – milan Nov 19 '11 at 04:28