Skip to content

Commit 24a69e5

Browse files
committed
Merge branch '5.0' into mcp
2 parents 7d2cdbe + 5723b6c commit 24a69e5

2,406 files changed

Lines changed: 7287 additions & 7243 deletions

File tree

Some content is hidden

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

.github/workflows/code_samples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
name: Validate code samples
99
runs-on: "ubuntu-22.04"
1010
strategy:
11+
fail-fast: false
1112
matrix:
12-
fail-fast: false
1313
php:
1414
- "8.4" # Upper supported version
1515
- "8.3" # Lower supported version

docs/administration/back_office/back_office_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Configure default upload locations, pagination limits, and more set
88
## Pagination limits
99

1010
Default pagination limits for different sections of the back office can be defined through respective settings in
11-
[`ezplatform_default_settings.yaml`](https://github.com/ibexa/admin-ui/blob/main/src/bundle/Resources/config/ezplatform_default_settings.yaml#L7).
11+
[`ezplatform_default_settings.yaml`](https://github.com/ibexa/admin-ui/blob/5.0/src/bundle/Resources/config/ezplatform_default_settings.yaml#L7).
1212

1313
You can set the pagination limit for user settings under the `ibexa.system.<scope>.pagination_user` [configuration key](configuration.md#configuration-files):
1414

docs/administration/back_office/back_office_elements/extending_thumbnails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ At this point you can go to the back office and check the results.
5858
!!! note "Thumbnail mechanism "
5959

6060
This strategy overrides all generated thumbnails. You can specify a specific content type.
61-
See the example [here](https://github.com/ibexa/user/blob/main/src/lib/Strategy/DefaultThumbnailStrategy.php)
61+
See the example [here](https://github.com/ibexa/user/blob/5.0/src/lib/Strategy/DefaultThumbnailStrategy.php)
6262

6363

6464
## Other fields as thumbnails

docs/administration/back_office/back_office_elements/importing_assets_from_bundle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To import CSS files only, use:
3232

3333
After you add new files, run `php bin/console cache:clear`.
3434

35-
For a full example of importing asset configuration, see [`ibexa.config.js`](https://github.com/ibexa/admin-ui/blob/main/src/bundle/Resources/encore/ibexa.config.js)
35+
For a full example of importing asset configuration, see [`ibexa.config.js`](https://github.com/ibexa/admin-ui/blob/5.0/src/bundle/Resources/encore/ibexa.config.js)
3636

3737
To edit existing configuration entries, either in the bundle's `Resources/encore/` folder, or in the `encore` folder in the root folder of your project, create an `ibexa.config.manager.js` file:
3838

@@ -74,7 +74,7 @@ module.exports = (ibexaConfig, ibexaConfigManager) => {
7474

7575
After you add new files, run `php bin/console cache:clear`.
7676

77-
For a full example of overriding configuration, see [`ibexa.config.manager.js`](https://github.com/ibexa/fieldtype-matrix/blob/main/src/bundle/Resources/encore/ibexa.config.manager.js).
77+
For a full example of overriding configuration, see [`ibexa.config.manager.js`](https://github.com/ibexa/fieldtype-matrix/blob/5.0/src/bundle/Resources/encore/ibexa.config.manager.js).
7878

7979
To add a new configuration under your own namespace and with its own dependencies, create an `ibexa.webpack.custom.config.js` file that you create either in the bundle's `Resources/encore/` folder, or in the `encore` folder in the root directory of your project, for example:
8080

docs/administration/back_office/back_office_tabs/back_office_tabs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You can also influence tab display (for example, order tabs, remove, or modify t
6464

6565
## Tab groups
6666

67-
You can create new tab groups by using the [`TabsComponent`](https://github.com/ibexa/admin-ui/blob/main/src/lib/Component/TabsComponent.php).
67+
You can create new tab groups by using the [`TabsComponent`](https://github.com/ibexa/admin-ui/blob/5.0/src/lib/Component/TabsComponent.php).
6868

6969
To create a tab group, register it as a service:
7070

docs/administration/back_office/subitems_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Optionally, Sub-items module can take a following list of props:
145145
- **items** _{Array}_ - list of location's sub-items
146146
- **limit** _{Number}_ - items limit count
147147
- **offset** _{Number}_ - items limit offset
148-
- **labels** _{Object}_ - list of module labels, see [sub.items.module.js](https://github.com/ibexa/admin-ui/blob/main/src/bundle/ui-dev/src/modules/sub-items/sub.items.module.js) for details. Contains definitions for sub components:
148+
- **labels** _{Object}_ - list of module labels, see [sub.items.module.js](https://github.com/ibexa/admin-ui/blob/5.0/src/bundle/ui-dev/src/modules/sub-items/sub.items.module.js) for details. Contains definitions for sub components:
149149
- **subItems** _{Object}_ - list of sub-items module labels
150150
- **tableView** _{Object}_ - list of table view component labels
151151
- **tableViewItem** _{Object}_ - list of table item view component labels

docs/administration/project_organization/bundles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can also reuse the bundles you create in other projects or share them with t
1111

1212
Many [[= product_name =]] functionalities are provided through separate bundles included in the installation.
1313
You can see the bundles that are automatically installed with [[= product_name =]] in the respective `composer.json` files.
14-
For example, for [[= product_name_headless =]], see the [JSON file on GitHub](https://github.com/ibexa/headless/blob/master/composer.json).
14+
For example, for [[= product_name_headless =]], see the [JSON file on GitHub](https://github.com/ibexa/headless/blob/5.0/composer.json).
1515

1616
## Working with bundles
1717

docs/api/graphql/graphql_custom_ft.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To do that, you need to replace `mapXXX` by the method it's in:
8080

8181
It's required for every implemented method, so that other mappers are called for the other field types.
8282

83-
For an example implementation, look at the [`RelationFieldDefinitionMapper`](https://github.com/ibexa/graphql/blob/main/src/lib/Schema/Domain/Content/Mapper/FieldDefinition/RelationFieldDefinitionMapper.php) class.
83+
For an example implementation, look at the [`RelationFieldDefinitionMapper`](https://github.com/ibexa/graphql/blob/5.0/src/lib/Schema/Domain/Content/Mapper/FieldDefinition/RelationFieldDefinitionMapper.php) class.
8484

8585
The value type depends on the field definition allowed content types setting:
8686

@@ -111,4 +111,4 @@ The following variables are available in the resolver's expression:
111111
- `location` is the content item's resolved location. For more information, see [Querying Locations](graphql_queries.md#querying-locations)
112112
- `item` is the content together with its location `\Ibexa\GraphQL\Value\Item`
113113

114-
`RelationFieldValueBuilder` or `SelectionFieldValueBuilder` can be used as examples.
114+
`RelationFieldValueBuilder` or `SelectionFieldValueBuilder` can be used as examples.

docs/api/php_api/php_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To create and modify repository values, use data structures, such as [`ContentSe
7171

7272
### Value info objects
7373

74-
Some complex value objects have an `Info` counterpart, for example [`ContentInfo`](https://github.com/ibexa/core/blob/main/src/contracts/Repository/Values/Content/ContentInfo.php) for [`Content`](https://github.com/ibexa/core/blob/main/src/contracts/Repository/Values/Content/Content.php).
74+
Some complex value objects have an `Info` counterpart, for example [`ContentInfo`](https://github.com/ibexa/core/blob/5.0/src/contracts/Repository/Values/Content/ContentInfo.php) for [`Content`](https://github.com/ibexa/core/blob/5.0/src/contracts/Repository/Values/Content/Content.php).
7575
These objects provide you with lower-level information.
7676
For instance, `ContentInfo` contains `currentVersionNo` or `remoteId`, while `Content` enables you to retrieve fields, content type, or previous versions.
7777

docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ActivityLog-ActivityLogServiceInterface.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
</div>
107107
</div>
108108
<div class="md-header__source">
109-
<a href="https://github.com/ibexa/documentation-developer/tree/master/docs/api/php_api" title="" class="source-github">
109+
<a href="https://github.com/ibexa/documentation-developer/tree/5.0/docs/api/php_api" title="" class="source-github">
110110
<div class="md-source__icon md-icon">
111111
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"></path></svg>
112112
</div>

0 commit comments

Comments
 (0)