Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Missing table added #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ markdown_ext: "markdown,mkdown,mkdn,mkd,md"

gdeurl: "/guides/v2.0/"
githuburl: "https://github.corp.ebay.com/Magento/devdocs_internal/tree/develop/guides/v2.0/"
publicgithuburl: "https://github.com/magento/devdocs/tree/develop/guides/v2.0/"
namem2fedg: "Magento 2 Frontend Developer's Guide"
namem2devgde: "Magento 2 Developer's Guide"
namem2apiref: "Magento 2 API Reference"
Expand Down
3 changes: 1 addition & 2 deletions guides/v2.0/extension-dev-guide/depend-inj.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ Constructor injection *must* be used for all optional and required service depen

A sample proxy (which you declare in `di.xml`) follows:

{% highlight PHP %}
<?php
{% highlight XML %}
<type name="Magento\Backend\Model\Config\Structure\Element\Iterator\Field" shared="false">
<arguments>
<argument name="groupFlyweight" xsi:type="object">Magento\Backend\Model\Config\Structure\Element\Group\Proxy</argument>
Expand Down
2 changes: 2 additions & 0 deletions guides/v2.0/howdoi/bk-how-do-i.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ Please help us keep this list up-to-date by providing feedback in any of the fol
* Open an <a href="https://github.com/magento/devdocs/issues" target="_blank">issue</a> in the devdocs GitHub repository.
* Send us a <a href="https://twitter.com/MagentoDevDocs" target="_blank">tweet</a> or <a href="mailto:[email protected]">e-mail</a>.

If you'd like to contribute, see our <a href="{{ site.gdeurl }}howdoi/howdoi_contribute.html">sign-up sheet</a>.

5 changes: 2 additions & 3 deletions guides/v2.0/howdoi/howdoi_contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ github_link: howdoi/howdoi_contribute.md

Please sign up to write a How Do I topic for us! We'll mention you by name, provide links to your web site and blogs, and you'll get your face and bio in the ring of honor as one of our featured contributors.

All you need to do is to submit a <a href="{{ site.githuburl }}howdoi/howdoi_contribute.md">pull request on this page</a> or <a href="mailto:[email protected]">e-mail us</a>.
All you need to do is to submit a <a href="{{ site.githuburl }}howdoi/howdoi_contribute.md">pull request on this page</a> or <a href="mailto:[email protected]">e-mail us</a>. Use <a href="{{ site.publicgithuburl }}howdoi/howdoi_template.md">this template</a> if you'd like. Submissions should be Markdown but HTML is welcome also.


| Contributor name | Description or subject |
|---|---|
| Your name here | My amazing How Do I topic |
| | |
| <a href="http://www.maxpronko.com/" title="Max Pronko">Max Pronko</a> | How do I develop and maintain my custom Magento 2 extension in a separate repository |
| | |

69 changes: 69 additions & 0 deletions guides/v2.0/howdoi/howdoi_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
layout: default
group: howdoi
subgroup: SUBJECT
title: PAGE TITLE
menu_title: NAME ON MENU
menu_node: parent
menu_order: 1
github_link: howdoi/PATH/FILENAME.md
---

<!-- Author in Markdown but HTML also welcome -->

<!-- Start with H2, not H1 -->

## YOUR HEADING
INTRODUCTORY TEXT, EXPLAIN WHAT YOUR ARTICLE IS ABOUT

To have a successful migration, use the following guidelines:

## ANOTHER HEADING

<!-- Bulleted list -->

* Text
* Text
* Text

<!-- Ordered list -->

1. Step 1
2. Step 2
3. Step 3

<!-- Image link -->

Please submit all images to our <a href="https://github.com/magento/devdocs/tree/develop/common/images">`common/images`</a> directory.

Format the link as follows:

<img href="{{ site.baseurl }}common/images/FILENAME.png" alt="Alt text for the image">

<!-- Sample HTML cross-reference; don't worry too much about these, we can add or edit them -->
<!-- {{ site.gdeurl }} is a site variable that is defined in _config.yml; it's the base path to the devdocs guides/v2.0 directory -->

For full information please see the complete <a href="{{ site.gdeurl }}migration/bk-migration-guide.html">Migration Guide</a>

<!-- Sample 4 x 3 table -->

| | | |
|---|---|---|
| | | |
| | | |
| | | |

<!-- Note, Important, Tip: These must be HTML -->

<div class="bs-callout bs-callout-info" id="info">
<p>This is a note.</p>
</div>


<div class="bs-callout bs-callout-warning">
<p>This is important.</p>
</div>

<div class="bs-callout bs-callout-tip">
<p>This is a tip.</p>
</div>