Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 9fe45eb

Browse files
authored
Merge pull request #334 from magento/jc_fix-broken-links
Fix broken links
2 parents bc67d9d + f37b6f2 commit 9fe45eb

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

_includes/php-dev/component-root.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ A component's root directory is the top-level directory for that component under
1717
### Required files
1818
The following files are required for all components:
1919

20-
* `registration.php`: Among other things, this file specifies the directory in which the component is installed by vendors in production environments. By default, composer automatically installs components in the `<Magento root dir>/vendor` directory. For more information, see [Component registration]({{page.baseurl}}extension-dev-guide/component-registration.html).
21-
* `composer.json`: Specifies component dependencies and other metadata. For more information, see [Composer integration]({{page.baseurl}}extension-dev-guide/composer-integration.html).
20+
* `registration.php`: Among other things, this file specifies the directory in which the component is installed by vendors in production environments. By default, composer automatically installs components in the `<Magento root dir>/vendor` directory. For more information, see [Component registration]({{page.baseurl}}extension-dev-guide/build/component-registration.html).
21+
* `composer.json`: Specifies component dependencies and other metadata. For more information, see [Composer integration]({{page.baseurl}}extension-dev-guide/build/composer-integration.html).

guides/v2.0/extension-dev-guide/depend-inj.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The overall configuration is loaded in the following stages:
7979
2. Global (`<moduleDir>/etc/di.xml`)
8080
3. Area-specific (`<moduleDir>/etc/<area>/di.xml`)
8181

82-
During [bootstrapping]({{site.mageurl}}config-guide/bootstrap/magento-bootstrap.html), each application entry point loads the appropriate `di.xml` files for the [area]({{site.mageurl}}architecture/modules/mod_and_areas.html) being requested.
82+
During [bootstrapping]({{page.baseurl}}config-guide/bootstrap/magento-bootstrap.html), each application entry point loads the appropriate `di.xml` files for the [area]({{page.baseurl}}architecture/modules/mod_and_areas.html) being requested.
8383

8484
**Examples:**
8585

guides/v2.0/howdoi/checkout/checkout_customize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ To disable the component in your `checkout_index_index.xml` use the following in
110110

111111
## Remove a component
112112

113-
To remove a component from layout rendering, you need to create a [plugin]({{page.baseurl}}guides/v2.1/extension-dev-guide/plugins.html) for the `\Magento\Checkout\Block\Checkout\LayoutProcessor::process` method. In your plugin, implement the around method removing the corresponding layout nodes at run-time.
113+
To remove a component from layout rendering, you need to create a [plugin]({{page.baseurl}}extension-dev-guide/plugins.html) for the `\Magento\Checkout\Block\Checkout\LayoutProcessor::process` method. In your plugin, implement the around method removing the corresponding layout nodes at run-time.
114114

115115
The following sample is an example of the around method removing a component:
116116

@@ -124,4 +124,4 @@ return $jsLayout;
124124
<div class="bs-callout bs-callout-info">
125125
<p>Disable vs remove a component </p>
126126
<p>If you disable a component, it is loaded but not rendered. If you remove a component, it is not loaded.</p>
127-
</div>
127+
</div>

guides/v2.0/howdoi/php/php_devs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ github_link: howdoi/php/php_devs.md
1212

1313
## PHP development
1414
* <a href="{{page.baseurl}}extension-dev-guide/build/composer-integration.html">Get to know Composer</a>
15-
* <a href="{{page.baseurl}}extension-dev-guide/build.html">Build a module</a>
15+
* <a href="{{page.baseurl}}extension-dev-guide/build/build.html">Build a module</a>
1616
* <a href="{{page.baseurl}}extension-dev-guide/validate/validate.html">Validate a module</a>
1717
* <a href="{{page.baseurl}}extension-dev-guide/package/package_module.html">Package a module</a>
1818
* <a href="{{page.baseurl}}howdoi/php/php_clear-dirs.html">Clear directories during development</a>

guides/v2.0/howdoi/webapi/integration.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ An **integration** enables third-party services to call the Magento web APIs. Th
1515

1616
Implementing a simple integration requires little knowledge of PHP or Magento internal processes. However, you will need a working knowledge of
1717

18-
* [Magento REST or SOAP Web APIs](../../get-started/bk-get-started-api.html)
19-
* [Web API authentication](../../get-started/authentication/gs-authentication.html)
20-
* [OAuth-based authentication]( {{page.baseurl}}/get-started/authentication/gs-authentication-oauth.html )
18+
* [Magento REST or SOAP Web APIs]({{page.baseurl}}get-started/bk-get-started-api.html)
19+
* [Web API authentication]({{page.baseurl}}get-started/authentication/gs-authentication.html)
20+
* [OAuth-based authentication]( {{page.baseurl}}get-started/authentication/gs-authentication-oauth.html )
2121

2222

23-
Before you begin creating a module, make sure that you have a working installation of Magento 2.0, and the [Magento System Requirements](../../install-gde/system-requirements.html).
23+
Before you begin creating a module, make sure that you have a working installation of Magento 2.0, and the [Magento System Requirements]({{page.baseurl}}install-gde/system-requirements.html).
2424

2525
To create an integration, follow these general steps:
2626

@@ -43,7 +43,7 @@ To develop a module, you must:
4343
mkdir -p vendor/&lt;vendor_name>/module-&lt;module_name>/etc/integration
4444
mkdir -p vendor/&lt;vendor_name>/module-&lt;module_name>/Setup
4545
</pre>
46-
For more detailed information, see [Create your component file structure](../../extension-dev-guide/module-file-structure.html).
46+
For more detailed information, see [Create your component file structure]({{page.baseurl}}extension-dev-guide/build/module-file-structure.html).
4747

4848
2. **Define your module configuration file.** The `etc/module.xml` file provides basic information about the module. Change directories to the `etc` directory and create the `module.xml` file. You must specify values for the following attributes:
4949

@@ -108,7 +108,7 @@ To develop a module, you must:
108108
</pre>
109109

110110

111-
For more information, see [Create a component]({{ site.gdejrl }}extension-dev-guide/build/create_component.html).
111+
For more information, see [Create a component]({{page.baseurl}}extension-dev-guide/build/create_component.html).
112112

113113
4. **Create a `registration.php` file** The `registration.php` registers the module with the Magento system. It must be placed in the module's root directory.
114114

@@ -257,7 +257,7 @@ The file defines which API resources the integration has access to.
257257
<tr>
258258
<td>endpoint_url</td>
259259
<td><p>Optional. The URL where OAuth credentials can be sent when using OAuth for token exchange. We strongly recommend using <code>https://</code>.</p>
260-
<p>See [OAuth-based authentication](../../get-started/authentication/gs-authentication-oauth.html) for details.</p></td>
260+
<p>See [OAuth-based authentication]({{page.baseurl}}get-started/authentication/gs-authentication-oauth.html) for details.</p></td>
261261
</tr>
262262
<tr>
263263
<td>identity_link_url</td>
@@ -314,8 +314,8 @@ The callback page must be able to perform the following tasks:
314314
* Save the access token and other OAuth parameters. The access token and OAuth parameters must be specified in the `Authorization` header in each call to Magento.
315315

316316
## Related Topics
317-
- [Web API authentication](../../get-started/authentication/gs-authentication.html)
317+
- [Web API authentication]({{page.baseurl}}get-started/authentication/gs-authentication.html)
318318
- [OAuth-based authentication]( {{page.baseurl}}/get-started/authentication/gs-authentication-oauth.html )
319-
- [Magento System Requirements](../../install-gde/system-requirements.html)
320-
- [Create the module file structure](../../extension-dev-guide/module-file-structure.html)
321-
- [Create a component](../../extension-dev-guide/create_component.html)
319+
- [Magento System Requirements]({{page.baseurl}}install-gde/system-requirements.html)
320+
- [Create the module file structure]({{page.baseurl}}extension-dev-guide/build/module-file-structure.html)
321+
- [Create a component]({{page.baseurl}}extension-dev-guide/build/create_component.html)

0 commit comments

Comments
 (0)