Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ Describe how to customize the “My Account” section.
* See COPYING.txt for license details.
*/
-->
<page layout="2columns-left" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="customer_account_navigation">
<referenceBlock name="customer_account_navigation">
<block class="Magento\Customer\Block\Account\SortLinkInterface" name="customer-account-navigation-address-link">
<arguments>
<argument name="label" xsi:type="string" translate="true">Russell Special</argument>
<argument name="path" xsi:type="string">special/link</argument>
<argument name="sortOrder" xsi:type="number">165</argument>
</arguments>
</block>
</referenceContainer>
</referenceBlock>
</body>
</page>
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Utilize modes and application initialization

## Identify the steps for application initialization.
[app/bootstrap.php](https://github.com/magento/magento2/blob/2.2-develop/app/bootstrap.php):
[app/bootstrap.php](https://github.com/magento/magento2/blob/2.3-develop/app/bootstrap.php):

- composer autoloader, functions, umask, timezone UTC, php precision

[\Magento\Framework\App\Bootstrap](https://github.com/magento/magento2/blob/2.2-develop/lib/internal/Magento/Framework/App/Bootstrap.php)::*create*
[\Magento\Framework\App\Bootstrap](https://github.com/magento/magento2/blob/2.3-develop/lib/internal/Magento/Framework/App/Bootstrap.php)::*create*

- configure autoloader - PSR-4 prepend generation\Magento

Expand Down