Magento

I discovered few weeks ago an interesting tool to develop Magento modules with Eclipse PDT or Zend Studio: the Magento Eclpise plugin. I use it personnaly with Zend Studio 8 and it works pretty well, so we are going to see the different feature you can get from this module. With this module you can:

  • Find two wizards to help you to extend or create Magento modules
  • Code completion for core class or method even when you use Mage::getModel() or Mage::getSingleton() and so on.

Install the plugin


In Zend Studio, click on Help menu > Install Software. A new window will open, click  "Add", set a name like "Magento plugin" then paste the url of the plugin "http://magento-plugin.googlecode.com/svn/update_site" into the location field. After to have submitted the changes, you should see in the list the plugin. Select it and follow the wizard by clicking on "Next".
magento-plugin-install
After the installation process, you will have in the dialog box of the menu New > Other ..., a new directory Magento and you will see the two wizards available to start or extend a module.
For your Magento projects, you will have to enable the plugin features for the code completion. Just show on your project folder in your Navigator or PHP Explorer, the contextual menu. You should see the Magento Plugin menu item and sub-item "Add Magento Nature". Select it to enable the feature for your project.
The code completion seems to work only for core modules of Magento, not for the modules which are in the community or local folder in app/code/ of your Magento installation.
magento-plugin-code-completion magento-plugin-code-completion-expl

Wizard to create module

To create a module in an easy way. Nothing better than the wizard of the Magento plugin for Ecipse. It makes your life easier because you can directly generate the basic structure folders and configuration xml files. Maybe some of you, will prefer to get more generated files like controllers, block grid for the backend, a model and its resource to get access to the database, you can use instead Module Creator from Netz98 at this address http://www.magentocommerce.com/magento-connect/modulecreator.html. The counterpart of this last solution is that it won't feet all of your needs and you should have to remove some part of the codes or files.
Let's come back on the Magento plugin for Eclipse. To start the wizard, choose in the menu New > Other ..., in the new dialog box, search the folder Magento and choose the wizard "Magento Module". The wizard will start with the informaion to fill in about the module:
  • project
  • name
  • code pool
  • version
  • dependencies
  • namespace

After you have clicked on "Finish", your module will have some predefined folder and files in different place in your project. Here is the skeleton:

  • app / code / CODE_POOL / NAMESPACE / MODULE_NAME / Block
  • app / code / CODE_POOL / NAMESPACE / MODULE_NAME / controllers
  • app / code / CODE_POOL / NAMESPACE / MODULE_NAME / Helper / Data.php which is usefull to help you to translate the string of your module
  • app / code / CODE_POOL / NAMESPACE / MODULE_NAME / Model
  • app / code / CODE_POOL / NAMESPACE / MODULE_NAME / sql and a sub-folder to set your database script for installation and upgrade
  • app / etc / modules / MODULE_NAME.xml which is the file to enable or not your module and define the dependencies
Magento-plugin-WizardMagento-plugin-Wizard-step2Magento-plugin-Creation-Module

 

Wizard to extend module

The wizard is very similar to the one of the creation module. The difference is that after to have fill in your module information, you will have an additional step to select the module to overwrite and select the classes to overwrite. I could not see completely the result because there were a bug while finishing the wizard. The module was correctly created but didn't create neither the overwritten class nor updated the config.xml. An issue has been submitted. I will update this article when it will be resolved.

It is with a great pleasure that the Magento Core Team published a public version of the development Magento 2 and information about it. This new version is still in development and will be available when stability, code quality, features and documentation will be finished. It is expected in one year (end 2012). Lots of lack blamed for version < Magento 2 are going to be history (we hope).

The target of this new version is to provide a better documentation (a complete wiki for store owner, developer, system administrator or designer target public is available and still in progress), an improvement of the performance / security / scalability (EAV still exists), PHPUnit Tests and Automatic Static Code Analysis Tests (including PHP Detector Copy/Paste, PHP Code Sniffer, PHP Mess Detector), easier and better support of multilanguage, etc.

But don't worry dear Magento 1.x developers, not everything has been changed. At the program,  refactoring of some classes, naming convention and templating and skin folders restructuration have been done at the moment. We will see some changes in this first article and how to handle it to upgrade your extensions. Remember, it's still in development, so the information are there just to keep you informed. I will try to prvovide you up to date information until the official release on this website.

If you are a third party developer, you should follow the recommandations and best practises based on Zend Framework Best Practises and Magento Best Practises (Licenses and category/package/author tags in the docblock of class' header) to migrate your extensions.

You will find all necessary links about the Magento 2 development version (documentation, svn, tools) at the bottom of this article. But first, I did for you, a resume of the significant changes done between Magento 1.x and 2.x based on the documenation available in the Magento 2 Wiki.

FILE STRUCTURE CHANGES FROM 1.X TO 2.X

New folders:

/dev internal tools and tests. Previously: /shell, /tests, /tools to /dev/shell, /dev/tests, /dev/tools
/pub All public content: /pub/images, /pub/jslib, /pub/skin, /pub/error - Fallback/Materialized files are stored in this folder

Removed folders:

/includes Compiler feature is removed
/downloader Folder removed but the Magento Connect feature is moved to /app/code/core/Mage/Connect/

Template / Layout folders

One of the main changes is that base theme files and folders (layout, template) are moved to each module folder in a folder named "view". It means you will get for your module the following structure app / code / <code_pool> / <Namespace> / <Module> / view / <area> / *

  • Namespace = your company name or else
  • Module = module name ;-)
  • code pool = core, local or community
  • area = frontend or backend
  • package
  • theme

Here are some examples of the migrated folders:

  • for emails template, FROM app / locale / en_US / emails / * .html TO app / code / <code pool> / <Namespace> / <Module> / view / *.html
  • for skin files of a specific module in adminhtml area (js, css, skin images), FROM skin / adminhtml / default / default / * TO app / code / <code pool> / <Namespace> / <Module> / skin / adminhtml / *
  • for skin files of a specific module in frontend area (js, css, skin images), FROM skin / frontend / default / default / * TO app / code / <code pool> / <Namespace> / <Module> / skin / frontend / *
  • for layout and template files (*.phtml), FROM app / design / frontend / default / default / layout (or template) / * TO app / code / <code pool> / <Namespace> / <Module> / view / layout.xml as a convention (or path/to/file/*.phtml)

And non-base theme files (confer Magento wiki: theme files that overlap base files in modules) are structured as follow:

  • An overwritten template file, FROM app / design / frontend / <package> / <theme> / template / <module_alias> / path / to / template.phtml TO app / design / frontend / <package> / <theme> / <Namespace_Module> / path / to / template.phtml

A Module directory structure will lookt at this:

__/app/code/<Pool>/<Namespace>
|__/<Module>
|__/Block
| |-- Sample.php
|__/view
| |__/adminhtml
| |__/frontend
| | |-- layout.xml
| | |-- sample.phtml
| |__/install
| |-- contact_email.html
|__/skin
|__/adminhtml
|__/frontend
|__/images
| |-- image.jpg
|-- favicon.ico
Source Magento Wiki Module View

Fallback/Materialization mechanism

The fallback mechanism still exists and if you want to overwrite a template or layout file, you still need to use the folder structure app / design / <area> / <package> / <theme> / <Namespace_Module> / layout.xml (or path / to / template.phtml). Layout and template folders doesn't anymore exist but you will notice that you need to use the combination Namespace and Module as a folder name for the layout and template files.
All public content are stored in the folder /pub, it contains static files like images, javascript or css and are copied from the module skin folder. They will be automatically redundantly saved once or after an update, following its folder structure in the module view folder, to the /pub folder to keep only this folder visible to public and make skin modular too.

You will get the following structure for the static files:

  • / pub / skin / <area> / <package> / <theme> /  *
  • / pub / skin / <area> / <package> / <theme> / <Namespace_Module> / *
For the fallback mechanism, you can still use a design package folder structure:
__/design
|__/frontend
|__/<packageName>
|__/<themeName>
|__/layout
|__/skin
| |__/<skinName>
|   |__/css
|   |__/images
|   | |--image.jpg
|   |__/locale
|     |__/<localeCode>
|       |--translate.csv
|
|__/<Namespace_Module>
|--layout.xml
|--sample_template.phtml
For a more information about module view, you can check the Magento Wiki Module View

Skin File Duplication Option

This option, if enabled, creates automatically a copy of static files which is not locale dependant to all other locale store View. For example, you have a file logo.png for the locale en_US, the file be copied automatically to the fr_FR locale folder of the / pub / skin / <area> / <package> / <theme> / default / locale folder.
To enabled it, you have to edit the file app / code / <code_pool> / <Namespace> / <Module> / etc / config.xml and provide this xml code:

<default>
        <design>
            <theme>
                <allow_skin_files_duplication>1</allow_skin_files_duplication>
            </theme>
	</design>
</default>

Conclusion

Here were some few examples of the new features and way how will go our preferred open source commerce. And it will stay like that, Open Source, even if Magento has been bought by eBay. I don't know yet what will be exactly the next steps but I make a new article about the framework and his new behaviour and coding practises. If your impatient, well, you can still visit the links below to show you more information and detailed explanation of what we see here.

Magento 2 links (some are working in progress):

New modules version for Magento 1.6
All modules I did has been rewritten to improve and set it compatible with MAgento 1.6 if necessary. As reminder, you will find a list of the modules with a short description:
  • Add Information to Sales Email : you can add in the sales email (invoice, order, credit memo) complementary information about the products which are ordered by your customers.
  • Zopim Chat: display and customize per Store View the Chat service from Zopim. It's not an official module of Zopim.
  • Joomla Integration: it helps you to integrate Joomla modules into Magento, you will need Jfusion. Documentation is available on this website.
  • JS/CSS Compression & Minify (UIOptimization): compress and monify your css et javascript files to improve Magento performance. Several methods are available to suit your system.
  • Username support: accept your customer to login or create an account thanks to an email and a username

The Zopim Chat (unofficial) module for Magento has been updated and it's free. This update should improve the performance of Zopim calls and add some new small feature. It follows the available API from the zopim.com website. The Core Team has changed the javascript code.

Please, feel free to download it at the Magento Connect.