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
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).
Copy file name to clipboardExpand all lines: app/code/Magento/AuthorizenetAcceptjs/i18n/en_US.csv
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,3 +19,4 @@ Authorize.net,Authorize.net
19
19
"ccLast4","Last 4 Digits of Card"
20
20
"There was an error while trying to process the refund.","There was an error while trying to process the refund."
21
21
"This transaction cannot be refunded with its current status.","This transaction cannot be refunded with its current status."
22
+
"The transaction has not been settled, a partial refund is not yet available.","The transaction has not been settled, a partial refund is not yet available."
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).
0 commit comments