cancel
Showing results for 
Search instead for 
Did you mean: 

trying to understand html generation

trying to understand html generation

Hi,

 

I'm trying to understand Magento's html building process.

Currently I'm stuck at this file:

https://github.com/magento/magento2/blob/develop/app/code/Magento/Theme/view/frontend/layout/default...

Here in line 19 you will find this:

       <referenceBlock name="top.links">
            <block class="Magento\Theme\Block\Html\Header" name="header" as="header" before="-">
                <arguments>
                    <argument name="show_part" xsi:type="string">welcome</argument>
                </arguments>
            </block>
        </referenceBlock>

And this at line 33:

<referenceContainer name="header.container">
            ...
                    <!-- line 43 below -->
                    <block class="Magento\Framework\View\Element\Html\Links" name="top.links">
                        <arguments>
                            <argument name="css_class" xsi:type="string">header links</argument>
                        </arguments>
                    </block>

As far as I get this does the following:

  • it will create an "ul" element (due to the code in the class Links) referenced as "top.links" with css classes "header links"
  • it will add a "header" element referenced as "header" at the top (because of the before) of the ul-Element that is referenced as "top.links"
  • stuff in those top links is added elsewhere, like in the customer module

What I don't get is this:

if I cut the first block '<referenceBlock name="top.links">...' starting from line 19 to line 25 and paste it below the code in line 33, say below line 58.

Why does the generated element in the html output also move somewhere else and will not be generated at the top of the container but at the bottom?