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
🔃 [Magento Community Engineering] Community Contributions - 2.3-develop expedited
Accepted Community Pull Requests:
- #24253: Add tip for upper limit of the Email Text Length Limit field range (by @TomashKhamlai)
- #24252: Correct the return of type of function _columnBrake in module-theme block topMenu.php (by @Krielkip)
- #23369: #16832 - Reworked query in getAttributeRawValue so that it returns a store specific value even if there is no default value (by @semajeg)
- #24249: Resolve Mass Delete Subscribers doesn't have "confirm" message issue24248 (by @edenduong)
- #24242: "Save Product" with the invalid data must scroll to the error message issue24241 (by @edenduong)
- #24341: Correct spelling (by @ravi-chandra3197)
- #24327: Update Magento_AuthorizenetCardinal ReadMe (by @diazwatson)
- #24328: Update Magento_AuthorizenetGraphQl ReadMe (by @diazwatson)
- #24326: Update Magento_AuthorizenetAcceptjs Readme (by @diazwatson)
- #24278: Update Magento_AsynchronousOperations ReadMe (by @diazwatson)
- #24265: Correction in the shipping method if it is empty it no longer shows t� (by @wbeltranc)
- #18678: Throw exception to prevent infinite loop caused by third party code. (by @convenient)
Fixed GitHub Issues:
- #24251: Module-Theme: TopMenu invalid type of value returned (reported by @Krielkip) has been fixed in #24252 by @Krielkip in 2.3-develop branch
Related commits:
1. 60ea2be
2. e9dd493
- #16382: Product resource getAttributeRawValue function does not return anything if there is no default value (reported by @VincentMarmiesse) has been fixed in #23369 by @semajeg in 2.3-develop branch
Related commits:
1. 01f1f15
2. 64184b3
3. 35c5185
4. 9ae33c8
5. 8c4bfa6
6. 7b0e528
7. c34f83c
8. 4d380bf
9. 540f03e
- #24248: Mass Delete Subscribers doesn't have "confirm" message (reported by @edenduong) has been fixed in #24249 by @edenduong in 2.3-develop branch
Related commits:
1. 01edbdc
- #24241: "Save Product" with the invalid data must scroll to the error message (reported by @edenduong) has been fixed in #24242 by @edenduong in 2.3-develop branch
Related commits:
1. 157e1cd
- #19853: Shipping method undefined issue (reported by @namratavora) has been fixed in #24265 by @wbeltranc in 2.3-develop branch
Related commits:
1. 10f880c
2. 775eab4
3. d8c8574
4. 86228e9
This component is designed to provide response for client who launched the bulk operation as soon as possible and postpone handling of operations moving them to background handler.
1
+
# Magento_AsynchronousOperations module
2
+
3
+
This component is designed to provide a response for a client that launched the bulk operation as soon as possible and postpone handling of operations moving them to the background handler.
4
+
5
+
## Installation details
6
+
7
+
The Magento_AsynchronousOperations module creates the following tables in the database:
8
+
9
+
-`magento_bulk`
10
+
-`magento_operation`
11
+
-`magento_acknowledged_bulk`
12
+
13
+
Before disabling or uninstalling this module, note that the following modules depends on this module:
14
+
15
+
- Magento_WebapiAsync
16
+
17
+
For information about module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.3/install-gde/install/cli/install-cli-subcommands-enable.html).
18
+
19
+
## Extensibility
20
+
21
+
Extension developers can interact with the Magento_AsynchronousOperations module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html).
22
+
23
+
[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_AsynchronousOperations module.
24
+
25
+
### Layouts
26
+
27
+
This module introduces the following layouts and layout handles in the `view/adminhtml/layout` directory:
28
+
29
+
-`bulk_bulk_details`
30
+
-`bulk_bulk_details_modal`
31
+
-`bulk_index_index`
32
+
33
+
For more information about layouts in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html).
34
+
35
+
### UI components
36
+
37
+
You can extend Magento_AsynchronousOperations module using the following configuration files in the `view/adminhtml/ui_component/` directory:
38
+
39
+
-`bulk_details_form`
40
+
-`bulk_details_form_modal`
41
+
-`bulk_listing`
42
+
-`failed_operation_listing`
43
+
-`failed_operation_modal_listing`
44
+
-`notification_area`
45
+
-`retriable_operation_listing`
46
+
-`retriable_operation_modal_listing`
47
+
48
+
For information about UI components in Magento 2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.3/ui_comp_guide/bk-ui_comps.html).
The Magento_AuthorizenetAcceptjs module implements the integration with the Authorize.Net payment gateway and makes the latter available as a payment method in Magento.
4
+
5
+
## Installation details
6
+
7
+
Before disabling or uninstalling this module, note that the `Magento_AuthorizenetCardinal` module depends on this module.
8
+
9
+
For information about module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.3/install-gde/install/cli/install-cli-subcommands-enable.html).
10
+
11
+
## Structure
12
+
13
+
`Gateway/` - the directory that contains payment gateway command interfaces and service classes.
14
+
15
+
For information about typical file structure of a module in Magento 2, see [Module file structure](http://devdocs.magento.com/guides/v2.3/extension-dev-guide/build/module-file-structure.html#module-file-structure).
16
+
17
+
## Extensibility
18
+
19
+
Extension developers can interact with the Magento_AuthorizenetAcceptjs module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html).
20
+
21
+
[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_AuthorizenetAcceptjs module.
22
+
23
+
### Events
24
+
25
+
This module observes the following events:
26
+
27
+
-`payment_method_assign_data_authorizenet_acceptjs` event in the `Magento\AuthorizenetAcceptjs\Observer\DataAssignObserver` file.
28
+
29
+
For information about an event in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/events-and-observers.html#events).
The AuthorizenetCardinal module provides a possibility to enable 3-D Secure 2.0 support for AuthorizenetAcceptjs payment integration.
1
+
# Magento_AuthorizenetCardinal module
2
+
3
+
Use the Magento_AuthorizenetCardinal module to enable 3D Secure 2.0 support for AuthorizenetAcceptjs payment integrations.
4
+
5
+
## Structure
6
+
7
+
`Gateway/` - the directory that contains payment gateway command interfaces and service classes.
8
+
9
+
For information about typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/build/module-file-structure.html#module-file-structure).
10
+
11
+
## Extensibility
12
+
13
+
Extension developers can interact with the Magento_AuthorizenetCardinal module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html).
14
+
15
+
[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_AuthorizenetCardinal module.
16
+
17
+
### Events
18
+
19
+
This module observes the following events:
20
+
21
+
-`payment_method_assign_data_authorizenet_acceptjs` event in the `Magento\AuthorizenetCardinal\Observer\DataAssignObserver` file.
22
+
23
+
For information about an event in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/events-and-observers.html#events).
**AuthorizenetGraphQl** defines the data types needed to pass payment information data from the client to Magento.
3
+
The Magento_AuthorizenetGraphQl module defines the data types needed to pass payment information data from the client to Magento.
4
+
5
+
## Extensibility
6
+
7
+
Extension developers can interact with the Magento_AuthorizenetGraphQl module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html).
8
+
9
+
[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_AuthorizenetGraphQl module.
0 commit comments