Skip to content

Commit 7255d1a

Browse files
New fixes
1 parent 2abc3ef commit 7255d1a

File tree

226 files changed

+493
-493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+493
-493
lines changed

docs/administration/admin_panel/segments_admin_panel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition: experience
66
# Segments
77

88
You can use Segments to display specific content to specific [ussers](users.md).
9-
They are used out of the box in the Targeting and Dynamic targeting blocks in the Page.
9+
they're used out of the box in the Targeting and Dynamic targeting blocks in the Page.
1010

1111
Segments are collected in Segment Groups:
1212

docs/administration/admin_panel/users_admin_panel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: All user groups and users can be accessed in the users tab.
55
# Users
66

77
[Users](users.md) in [[= product_name =]] are treated the same way as content items.
8-
They are organized in groups such as *Guests*, *Editors*, *Anonymous*,
8+
they're organized in groups such as *Guests*, *Editors*, *Anonymous*,
99
which makes it easier to manage them and their permissions.
1010
All user groups and users can be accessed in the Admin panel by selecting **Users**.
1111

docs/administration/back_office/content_tab_switcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ First, create an event listener in the `src/EventListener/TextAnchorMenuTabListe
7474

7575
A new custom tab is defined in the line 28, the line 31 defines items for the second level.
7676

77-
For new tabs it is also required to render its section in the content editing form. To do it, register the UI Component:
77+
For new tabs it's also required to render its section in the content editing form. To do it, register the UI Component:
7878

7979
```yaml
8080
[[= include_file('code_samples/back_office/content_type/config/custom_services.yaml') =]]

docs/administration/back_office/content_type_anchor_menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Enable the toggle to display the SEO section on the content item edit page.
4343

4444
!!! note
4545

46-
If you add multiple Field Types as anchor menus, they are automatically displayed as separate sections.
46+
If you add multiple Field Types as anchor menus, they're automatically displayed as separate sections.

docs/administration/back_office/multifile_upload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It provides an interface to publish content based on dropped files while uploadi
1010
!!! caution
1111

1212
If you want to load the multi-file upload module, you need to load the JS code for it in your view,
13-
as it is not available by default.
13+
as it's not available by default.
1414

1515
## Use multi-file upload
1616

docs/administration/back_office/subitems_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It provides an interface for listing the sub-items of any Location.
1010
!!! caution
1111

1212
If you want to load the Sub-items module, you need to load the JS code for it in your view,
13-
as it is not available by default.
13+
as it's not available by default.
1414

1515
## Use sub-items list
1616

docs/administration/configuration/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It contains everything from selecting the content Repository to SiteAccesses to
99

1010
### Configuration format
1111

12-
The recommended configuration format is YAML. It is used by default in the kernel (and in examples throughout the documentation).
12+
The recommended configuration format is YAML. It's used by default in the kernel (and in examples throughout the documentation).
1313
However, you can also use XML or PHP formats for configuration.
1414

1515
### Configuration files
@@ -29,7 +29,7 @@ These files contain additional settings and point to the general (not environmen
2929

3030
!!! note "New configuration files"
3131

32-
It is good practice to provide your own configuration in separate files.
32+
It's good practice to provide your own configuration in separate files.
3333
Any YAML files placed in the `config/packages` folder is automatically included in the system configuration.
3434

3535
!!! tip

docs/administration/configuration/dynamic_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can also use the [autowire feature]([[= symfony_doc =]]/service_container/au
7777

7878
!!! note
7979

80-
Do not store the retrieved config value unless you know what you are doing.
80+
Do not store the retrieved config value unless you know what you're doing.
8181
SiteAccess can change during code execution, which means you might work on the wrong value.
8282

8383
``` php

docs/administration/configuration/repository_configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For example:
5757
But the following configuration would be invalid:
5858

5959
- `ibexa.co` domain can use `ibexa_repo`
60-
- `ibexa.co/doc` **cannot** use `doc_repo`, as it is under the same domain.
60+
- `ibexa.co/doc` **cannot** use `doc_repo`, as it's under the same domain.
6161

6262
Invalid configuration causes problems for different parts of the system,
6363
for example back-end UI, REST interface and other non-SiteAccess-aware Symfony routes
@@ -66,7 +66,7 @@ such as `/_fos_user_context_hash` used by [HTTP cache](http_cache.md).
6666
### Entity manager
6767

6868
If you use the [Doctrine entity manager](https://www.doctrine-project.org/projects/doctrine-orm/en/2.10/tutorials/getting-started.html#obtaining-the-entitymanager),
69-
you are unable to connect different SiteAccesses to different databases.
69+
you're unable to connect different SiteAccesses to different databases.
7070

7171
To have this possibility, you need to use the SiteAccess-aware entity manager: `ibexa.doctrine.orm.entity_manager`.
7272

@@ -184,7 +184,7 @@ user_data: User data
184184
## Limit of archived content versions
185185
186186
`default_version_archive_limit` controls the number of archived versions per content item that are stored in the Repository.
187-
By default it is set to 5. This setting is configured in the following way (typically in `ibexa.yaml`):
187+
By default it's set to 5. This setting is configured in the following way (typically in `ibexa.yaml`):
188188

189189
``` yaml
190190
ibexa:

docs/administration/content_organization/content_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ They determine what Fields of what Field Types will be included in all content i
7676
!!! caution
7777

7878
In case of content types containing many Field Types you should be aware of possible memory-related issues with publishing/editing.
79-
They are caused by the limitation of how many `$_POST` input variables can be accepted.
79+
they're caused by the limitation of how many `$_POST` input variables can be accepted.
8080

8181
The easiest way to fix them is by increasing the `max_input_vars` value in the `php.ini` configuration file.
8282
Note that this solution is not universally recommended and you're proceeding on your own risk.

0 commit comments

Comments
 (0)