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've been working with Magento for a while now and really enjoy developing modules for it. Lately I've been wondering if it's possible/feasible to strip out the ecommerce aspect and use the core components as an application framework, similar to ZF or CakePHP.

For example, inside /app/code/core/, everything except the following would be removed:

  • Mage/Adminhtml
  • Mage/Admin
  • Mage/Core
  • (I might be missing a couple other important pieces)
  • All Varien and Zend code would also remain intact.

You would be able to develop custom web applications while taking advantage of support for:

  • Modules
  • Blocks, layouts, and templates
  • Backend with users, permissions, and configuration
  • Mage static methods to getModel, etc
  • Translations
  • Web services

Is this feasible or even a good idea?

share|improve this question
1  
I highly recommend Magento. In my opinion, it is by far the best e-commerce platform out there. – seanbreeden Feb 3 '12 at 21:13
1  
I completely agree. Magento is a fantastic platform with a ton of useful features. Developing new features is also a nice experience, but there is a bit of a learning curve (totally worth it though). – Colin O'Dell Feb 3 '12 at 21:59
1  
I develop for all platforms (CE, PE, EE and Go). I like them all. – seanbreeden Feb 3 '12 at 22:17
1  
@MikePurcell, I develop for CE, PE and EE. They all share the same core features. PE and EE offer extras like gift cards, gift wrapping options, etc. Go with whichever version has the features you need – Colin O'Dell Feb 3 '12 at 22:20
1  
@seanbreeden no, I didn't. I had a couple projects in mind when asking this question, one of which would integrate heavily with Magento and would've been a good fit - this project was not undertaken though. The other was a custom web app, and we chose Symfony2 for that project - the Magento platform was just too verbose and restrictive for what we needed. I love SF2 and will likely stick with that for future projects. – Colin O'Dell Apr 10 at 14:02
show 5 more comments

2 Answers

up vote 6 down vote accepted

Colin Mollenhour has something along these lines already:

https://github.com/colinmollenhour/magento-lite

Thanks to Vinai Kopp for telling me about this during the XDevCamp at the 2011 Magento Innovate Conference! :)

share|improve this answer
This is exactly what I've been envisioning, thanks for the link! – Colin O'Dell Feb 3 '12 at 19:48
1  
Interesting, this brings lots of possibilities. But I can't help wonder how likely is Colin Mollenhour to keep this up to date with official code? Would you rely on him and his project as the basis for your own application in the long term? I would want reassurance that bug fixes get passed on rapidly. – clockworkgeek Feb 3 '12 at 21:10
@clockworkgeek, that's a good question. Luckily he's hosting the code on Github which makes it easy for anyone to make their own changes if he doesn't. He can choose to merge them in if he wants. If he doesn't and somebody else starts maintaining their own copy, you could use their updated codebase instead. That is the beauty of open-source code. Personally I wouldn't mind having to update it if I were to use it in a project. – Colin O'Dell Feb 3 '12 at 22:02

There have been rumors of this being done. Given that the idea is academically interesting and that the possibility exists, I mention it whenever I teach the Magento U Fundamentals of Magento Development course.

Magento is fundamentally an MVC app framework with eCommerce components. I first heard this idea at Magento's Imagine conference in 2011. Alan Storm mentioned this during the developer track or the developer un-conference. I liked the notion immediately.

In addition to the items you cited, one would need to include Mage_Eav if one were going to require Magento-style EAV entity modeling and attribute management. Mage_Page would also be a strong candidate for inclusion if one were used to that module's handling of various page elements.

share|improve this answer
Thanks for the info Ben! It looks like such a framework already exists (see @seanbreeden's link above). – Colin O'Dell Feb 3 '12 at 19:50
Ah, good - I knew there was something like this out there. – benmarks Feb 3 '12 at 19:59

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.