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

Commit 4c2a90a

Browse files
authored
Merge pull request #2284 from magento-devdocs/db_integration
5-13 integration
2 parents 270a225 + 6541e4e commit 4c2a90a

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

src/guides/v2.3/extension-dev-guide/build/di-xml-file.md

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ Magento loads the configuration in the following stages:
2323
1. Global (`<moduleDir>/etc/di.xml`)
2424
1. Area-specific (`<moduleDir>/etc/<area>/di.xml`)
2525

26+
The areas are:
27+
28+
* adminhtml
29+
* frontend
30+
* webapi_rest
31+
* webapi_soap
32+
* crontab
33+
2634
During [bootstrapping]({{ page.baseurl }}/config-guide/bootstrap/magento-bootstrap.html), each application entry point loads the appropriate `di.xml` files for the requested [area]({{ page.baseurl }}/architecture/archi_perspectives/components/modules/mod_and_areas.html).
2735

2836
**Examples:**

src/guides/v2.3/frontend-dev-guide/responsive-web-design/rwd_css.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ Breakpoints are used in the CSS code to set up the screen width at which the des
3030

3131
The Blank and Luma themes use Less variables to implement the following [breakpoints][breakpoints-link]:
3232

33-
The default breakpoint variables are located in the Magento UI library: `lib/web/css/source/lib/variables/_responsive.less`.
34-
3533
- `@screen__xxs`: 320px
3634
- `@screen__xs`: 480px
3735
- `@screen__s`: 640px
3836
- `@screen__m`: 768px (in the Blank and Luma themes, this breakpoint switches between mobile and desktop views)
3937
- `@screen__l`: 1024px
4038
- `@screen__xl`: 1440px
4139

40+
The default breakpoint variables are located in the Magento UI library: `lib/web/css/source/lib/variables/_responsive.less`.
41+
4242
You can change these breakpoints or add new ones in your custom theme. For instructions see the [Add a new breakpoint][rwd-breakpoints] topic.
4343

4444
## Media queries in Magento default themes {#lib_rwd}

src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In Magento it is used by the [gallery]({{ page.baseurl }}/javascript-dev-guide/w
99

1010
![Magnifier widget]({{site.baseurl}}/common/images/magnifier-widget.png){:width="650px"}
1111

12-
The Magnifier widget source is located in `lib/web/magnifier/magnify.js`.
12+
The Magnifier widget source is located in [lib/web/magnifier/magnify.js]({{ site.mage2bloburl }}/{{ page.guide_version }}/lib/web/magnifier/magnify.js).
1313

1414
## Initialize magnifier {#magnifier_init}
1515

src/guides/v2.4/config-guide/redis/redis-pg-cache.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ It is disabled by default, and we recommend keeping it disabled until you have e
168168
To enable it, run:
169169

170170
```bash
171-
bin/magento setup:config:set --allow-parallel-generation`
171+
bin/magento setup:config:set --allow-parallel-generation
172172
```
173173

174174
Since it is a flag, you cannot disable it with a command. You will need to manually set the configuration value to `false`:

0 commit comments

Comments
 (0)