I need to check which type of layout/page was loaded currently in magento.
I mean 1column or 2column-left or 2column-right or 3column.
I need to find programmatically...
How can I do, I googled but no help there.
|
|
|
What are you trying to do? Programmatic coupling with rendering context might indicate a better approach is available. That said: You can ask the layout object if a root block has been instantiated, and if so, what its template property is:
|
|||||
|
|
Check the XML files in the /app/design/frontend/default/--your theme--/layout folder. They contain references to the template files used. E.g. page.xml contains:
... which defines the template used for most of the pages. Good luck! |
|||
|
|
|
You can check the first child of the div.page to know how many columns in the current template.
|
|||
|
|