Magento is an e-commerce platform written in PHP atop the Zend framework, available under both open-source and commercial licenses. It is written in an advanced object-oriented idiom that uses the MVC pattern and XML configuration files, aiming for flexibility and extensibility. It is owned and maintained by Magento Inc. (previously Varien), which is owned in turn by eBay.
Magento is aimed at merchants who need an online presence, but who find that a completely bespoke storefront does not suit their needs, budget, or scale. Magento's features include baked-in support of multiple languages and currencies, search engine optimization techniques, and automated email marketing. Basic Magento configuration and administration can be performed by end-users with minimal technical background, and the third-party ecosystem around Magento offers extensive customization of appearance and functionality for storefronts. Magento offer a developer certification program to help store owners find partners in the Magento ecosystem, and to help developers consolidate their grasp of Magento internals.
A central feature of Magento is the templating and extension system, based on OOP inheritance and composition principles and largely configured by XML files, it provides a plugin API, it allows developers to modify almost any feature of Magento by working with the abstraction layers provided by the framework. Several subsystems (Layout, DataFlow) employ meta-programming facilities via XML, and the MVC pattern is supported by factory methods for instantiation of helper classes (Models, Helpers, Blocks).
Magento is a heavily abstracted software system. Most of Magento's code, and nearly all third-party code, is organized into modules, and the functionality of modules is programmatically exposed. Modules can be enabled or disabled individually, easing integration into existing stores. Magento's persistent storage is usually MySQL, and its data about a store's products is based on the Entity-Attribute-Value model.
Links
- Magento Answers Stack Exchange (which is in public beta)
Stack Exchange's dedicated Mangeto site. Questions about programming themes, drop-ins and plugins and about the administration of Magento are on topic there. Here is the Area51 Proposal. - Magento homepage
The main site where you can download the code. There is also a forum and a wiki. - Tutorials on SiteGround
Lots of tutorials on installation, create and manage a website with Magento - Code source on Github
Only find Magento 2 on Github, Magento 1 is on their dedicated svn.
Great questions
- A highly-referenced Stack Overflow question about the EAV pattern
- How to create a simple 'Hello World' module in Magento?
- Beginning Magento development
- What Tools and Extensions are Critical for Magento Development?