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

Commit fd91075

Browse files
Merge pull request magento-commerce/devdocs#2492 from magento-devdocs/DOC-483-rebrand
Updated references to Magento extensions
2 parents feecf4b + b8be203 commit fd91075

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

src/extensions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ group: extensions
33
title: Introduction
44
---
55

6-
Magento extensions allow you to add custom features, functionality, services, and integrations to your Admin and storefront. Extension developers package and install custom code as extensions, modules, components, addons, etc. You can design and develop extensions or purchase and install extensions from the Commerce Marketplace or third-party providers.
6+
Extensions allow you to add custom features, functionality, services, and integrations to your Admin and storefront. Extension developers package and install custom code as extensions, modules, components, addons, etc. You can design and develop extensions or purchase and install extensions from the Commerce Marketplace or third-party providers.
77

88
The [Commerce Marketplace](https://marketplace.magento.com/) is the global eCommerce resource for applications and services that expand Magento solutions with powerful new features and functionality. Marketplace reviews and verifies all submitted extensions, modules, addons, and plugins are stable, supported, with clear documentation and release notes.
99

src/extensions/install/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ redirect_from:
1616
- guides/v2.3/comp-mgr/extens-man/step3-parent.html
1717
---
1818

19-
Code that extends or customizes Magento behavior is called an extension. You can optionally package and distribute extensions on the [Commerce Marketplace](https://marketplace.magento.com) or another Magento extension distribution system.
19+
Code that extends or customizes {{site.data.var.ee}} and {{site.data.var.ce}} behavior is called an extension. You can optionally package and distribute extensions on the [Commerce Marketplace](https://marketplace.magento.com) or another extension distribution system.
2020

2121
Extensions include:
2222

src/guides/v2.3/coding-standards/code-standard-html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ functional_areas:
99
- Standards
1010
---
1111

12-
This style guide defines Magento internal requirements for [HTML](https://glossary.magento.com/html) code style for teams that develop Less and [CSS](https://glossary.magento.com/css) code. We recommend that developers who create Magento extensions and customizations also use these standards.
12+
This style guide defines Magento internal requirements for [HTML](https://glossary.magento.com/html) code style for teams that develop Less and [CSS](https://glossary.magento.com/css) code. We recommend that developers who create extensions and customizations also use these standards.
1313

1414
The guide is based on the [Google HTML/CSS Style Guide](https://google.github.io/styleguide/htmlcssguide.xml) with certain modifications that are described further.
1515

src/guides/v2.3/coding-standards/code-standard-php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ functional_areas:
99
- Standards
1010
---
1111

12-
The Magento core development team uses the [Magento Coding Standard](https://github.com/magento/magento-coding-standard){:target="_blank"}. We recommend that developers who create Magento extensions and customizations also use this standard.
12+
The Magento core development team uses the [Magento Coding Standard](https://github.com/magento/magento-coding-standard){:target="_blank"}. We recommend that developers who create extensions and customizations also use this standard.
1313

1414
The Magento Coding Standard provides a set of rules that covers the following:
1515

src/guides/v2.3/coding-standards/technical-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ class SampleEventObserverThatModifiesInputs implements ObserverInterface
939939

940940
## 17. Services
941941

942-
17.1. New features with limited customization scenarios SHOULD be implemented as a thin Magento extension that will communicate to a service that contains business logic. This allows developers to release features independently of Magento and makes feature upgrades easier.
942+
17.1. New features with limited customization scenarios SHOULD be implemented as a thin extension that will communicate to a service that contains business logic. This allows developers to release features independently of Magento and makes feature upgrades easier.
943943

944944
<!-- LINKS: DEFINITIONS AND ADDRESSES -->
945945

src/guides/v2.3/ext-best-practices/bk-ext-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The table below is data from a recent poll that shows the distribution of the am
2020
| Community | 10% | 53% | 26% | 11% |
2121
| Enterprise| 9% | 32% | 27% | 32% |
2222

23-
This guide provides best practices, guidelines, and tips for creating Magento extensions. We encourage you to follow our best practices when developing code for your Magento components.
23+
This guide provides best practices, guidelines, and tips for creating extensions. We encourage you to follow our best practices when developing code for your Magento components.
2424

2525
### Related Content
2626

src/guides/v2.3/extension-dev-guide/build/composer-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ For language packages, you must use the correct [ISO code][4]{:target="_blank"}
152152

153153
## Magento-specific package types
154154

155-
Magento extensions can be any of the following types:
155+
Extensions can be any of the following types:
156156

157157
* `magento2-module` for modules
158158
* `magento2-theme` for themes
@@ -195,7 +195,7 @@ The convention for Magento package names is the following
195195

196196
Where:
197197

198-
:`type-prefix` is any of the Magento extension types:
198+
:`type-prefix` is any of the extension types:
199199

200200
* `module-` for module extensions
201201
* `theme-` for theme extensions

src/guides/v2.3/migration/extend-the-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ functional_areas:
55
- Tools
66
---
77

8-
Sometimes the data format and structure created by [Magento extensions](https://marketplace.magento.com/extensions.html){:target="_blank"} or custom code is different between Magento 1 and Magento 2. Use extension points within the Data Migration Tool to migrate this data. If the data format and structure are the same, the tool can automatically migrate the data without user intervention.
8+
Sometimes the data format and structure created by [extensions](https://marketplace.magento.com/extensions.html){:target="_blank"} or custom code is different between Magento 1 and Magento 2. Use extension points within the Data Migration Tool to migrate this data. If the data format and structure are the same, the tool can automatically migrate the data without user intervention.
99

1010
During migration, the [Map Step]({{ page.baseurl }}/migration/migration-tool-internal-spec.html#map-step) scans and compares all Magento 1 and Magento 2 tables, including those created by extensions. If the tables are the same, the tool automatically migrates the data. If the tables differ, the tool terminates and notifies the user.
1111

src/guides/v2.3/release-notes/release-notes-2-3-3-commerce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ The [Yotpo](https://www.yotpo.com) user-generated content management platform is
207207

208208
## Backward-incompatible Changes
209209

210-
This release introduces a new, immutable `EmailMessageInterface` that supports the sending of multi-part MIME-type content in email. The `Magento\Framework\Mail\Template\TransportBuilder` and `Magento\Newsletter\Model\Queue\TransportBuilder` structures were refactored to use this new `EmailMessageInterface` instead of `MessageInterface`, which was previously used. If you are a Magento extension developer and rely on `\Magento\Email\Model\Transport::getMessage()` or `\Magento\Framework\Mail\TransportInterface::getMessage()`, those methods will now return the new `EmailMessageInterface`.
210+
This release introduces a new, immutable `EmailMessageInterface` that supports the sending of multi-part MIME-type content in email. The `Magento\Framework\Mail\Template\TransportBuilder` and `Magento\Newsletter\Model\Queue\TransportBuilder` structures were refactored to use this new `EmailMessageInterface` instead of `MessageInterface`, which was previously used. If you are an extension developer and rely on `\Magento\Email\Model\Transport::getMessage()` or `\Magento\Framework\Mail\TransportInterface::getMessage()`, those methods will now return the new `EmailMessageInterface`.
211211

212212
## Fixed issues
213213

src/guides/v2.3/release-notes/release-notes-2-3-3-open-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ The [Yotpo](https://www.yotpo.com) user-generated content management platform is
193193

194194
## Backward-incompatible Changes
195195

196-
This release introduces a new, immutable `EmailMessageInterface` that supports the sending of multi-part MIME-type content in email. The `Magento\Framework\Mail\Template\TransportBuilder` and `Magento\Newsletter\Model\Queue\TransportBuilder` structures were refactored to use this new `EmailMessageInterface` instead of `MessageInterface`, which was previously used. If you are a Magento extension developer and rely on `\Magento\Email\Model\Transport::getMessage()` or `\Magento\Framework\Mail\TransportInterface::getMessage()`, those methods will now return the new `EmailMessageInterface`.
196+
This release introduces a new, immutable `EmailMessageInterface` that supports the sending of multi-part MIME-type content in email. The `Magento\Framework\Mail\Template\TransportBuilder` and `Magento\Newsletter\Model\Queue\TransportBuilder` structures were refactored to use this new `EmailMessageInterface` instead of `MessageInterface`, which was previously used. If you are an extension developer and rely on `\Magento\Email\Model\Transport::getMessage()` or `\Magento\Framework\Mail\TransportInterface::getMessage()`, those methods will now return the new `EmailMessageInterface`.
197197

198198
## Fixed issues
199199

0 commit comments

Comments
 (0)