You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: _includes/php-dev/component-root.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,5 +17,5 @@ A component's root directory is the top-level directory for that component under
17
17
### Required files
18
18
The following files are required for all components:
19
19
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).
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.
Copy file name to clipboardExpand all lines: guides/v2.0/howdoi/checkout/checkout_customize.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ To disable the component in your `checkout_index_index.xml` use the following in
110
110
111
111
## Remove a component
112
112
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.
114
114
115
115
The following sample is an example of the around method removing a component:
116
116
@@ -124,4 +124,4 @@ return $jsLayout;
124
124
<divclass="bs-callout bs-callout-info">
125
125
<p>Disable vs remove a component </p>
126
126
<p>If you disable a component, it is loaded but not rendered. If you remove a component, it is not loaded.</p>
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).
24
24
25
25
To create an integration, follow these general steps:
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).
47
47
48
48
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:
49
49
@@ -108,7 +108,7 @@ To develop a module, you must:
108
108
</pre>
109
109
110
110
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).
112
112
113
113
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.
114
114
@@ -257,7 +257,7 @@ The file defines which API resources the integration has access to.
257
257
<tr>
258
258
<td>endpoint_url</td>
259
259
<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>
261
261
</tr>
262
262
<tr>
263
263
<td>identity_link_url</td>
@@ -314,8 +314,8 @@ The callback page must be able to perform the following tasks:
314
314
* 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.
315
315
316
316
## Related Topics
317
-
-[Web API authentication](../../get-started/authentication/gs-authentication.html)
317
+
-[Web API authentication]({{page.baseurl}}get-started/authentication/gs-authentication.html)
0 commit comments