Get Free Audit

Themes in Magento. Part II (Magento Certified Developer Exam)

Feb 6, 2013

304 Mishel Soiko

Themes in Magento. Part II (Magento Certified Developer Exam)

How it works

In this article I am going to shed light on the classes and functions which work with Magento themes.

Main classes:

  1. Mage_Core_Model_Layout
  2. Mage_Core_Model_Layout_Update
  3. Mage_Core_Model_Design
  4. Mage_Core_Model_Design_Package
  5. Mage_Core_Block_Templat

So, where does it all start?

Well, I am not going bother you with the detailed description of how Magento is launched from the outset.  Instead, I would like to begin with Controllers, since they launch the assembling of a shop theme .

Of course you have already met the below two functions:

loadLayout() –  prepares the whole layout for the current page.
renderLayout() –  generates and outputs HTML.

 

LoadLayout


$this->getLayout() – it is the class  Mage_Core_Model_Layout , which contains the main functions for generating layout and creating the (Block) classes, that are attributed to the templates described in layout.

$this->getLayout()->getUpdate() – is the class Mage_Core_Model_Layout_Update, which retrieves from xml files the handles related to the current url (<modul_controller_action>) and related to handle <default>  As a result, it generates or takes xml for the page from cache.

1. As you see, in the first place the following two functions are executed:


addHandle – simply creates an array of the names of the handles, which will be brought together. Any name indicated in the loadLayout function argument or default handle name gets added to the array in the first place. Next, the second function adds 3-rd handles into the array. For instance, the product page will have the following array:


Array
(
[0] => default
[1] => STORE_air_english_storeview
[2] => THEME_frontend_air_christmas
[3] => catalog_product_view
)

Mage::app()->getStore()->getCode() Displays the code of the current Store View
$package = Mage::getSingleton(‘core/design_package’); will describe this class a bit later
$package->getArea() the frontend code
$package->getPackageName() package name of the  displayed theme
$package->getTheme(‘layout’) the name of the theme that layout files are downloaded from
$this->getFullActionName() our main handle: modul_controller_action

image1Themes in Magento - part 2.1En2

Those of you who are familiar with the theme may have noticed that these are not yet all handles which are going to be assembled for the page.  So, let’s move on.

2. Calling the assembling of all received handles into a single xml file. 


Here you see the Observer which is frequently used to add extra handles for processing. For instance, in my case for the product page:

Array
(
[0] => default
[1] => STORE_air_english_storeview
[2] => THEME_frontend_air_christmas
[3] => catalog_product_view
[4] => PRODUCT_TYPE_configurable
[5] => PRODUCT_108
[6] => customer_logged_in
)

The array processing starts after the Observer completes the task.

$this->getLayout()->getUpdate()->load() – adds more extra handles if their array has been set as an attribute, processes all the <update> tags described in the found handles and creates a single XML file.


A bit later we will see how the marge function, responsible for assembling handles, works.

3. Generating XML

Igor Dragun
Partner With Us Let's discuss how to grow your business. Get a Free Quote.
Talk to Igor


The function  $this->getLayout()->generateXml() processes all the <remove> tags in the previously obtained XML file.


Adds the ‘ignore’ property for <block> and <reference> tags that have their names indicated in the <remove> tags.

But at the end there is also a very important function which inputs our final XML into the variable $this->_xml.

Now we have the complete version of the structure which can be accessed through the getNode() function. And this is what we are going to use


4. Generating blocks


Ok, when all the preliminary procedures have been completed it is time to generate a set of blocks (declare classes).


The called function $this->getLayout()->generateBlocks() has an internal cycle which goes through all XML tags in the obtained Layout  and recursively goes through all the tags <block>  and <reference>.

The key functions here are the below two:

  • $this->_generateBlock($node, $parent)

This function creates an instance of the current block

  • $this->_generateAction($node, $parent)

This one performs the indicted function of the ($parent) block, created a level higher.

Ok, looks like we are done with that. All classes have been created. Now it is time to render HTML.

But I have also promised to tell more about this function:
Mage_Core_Model_Layout_Update :: marge()

Also have given only a brief notice for these functions:
Mage_Core_Model_Layout :: _generateBlock($node, $parent)
Mage_Core_Model_Layout :: _generateAction($node, $parent)

…to be continued

Igor Dragun
Partner With Us Looking for a partner to grow your business? We are the right company to bring your webstore to success. Talk to Igor

2 Comments

  1. Thanks for the article. There is a typo in several articles: “marge” function, it should be “merge”.

Post a new comment

BelVG Newsletter
Subscribe to our mailing list and get interesting stuff and updates to your email inbox.
Email *