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
You can set the pagination limit for user settings under the `ibexa.system.<scope>.pagination_user`[configuration key](configuration.md#configuration-files):
Copy file name to clipboardExpand all lines: docs/administration/back_office/back_office_elements/importing_assets_from_bundle.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ To import CSS files only, use:
32
32
33
33
After you add new files, run `php bin/console cache:clear`.
34
34
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/4.6/src/bundle/Resources/encore/ibexa.config.js)
36
36
37
37
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:
After you add new files, run `php bin/console cache:clear`.
76
76
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/4.6/src/bundle/Resources/encore/ibexa.config.manager.js).
78
78
79
79
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:
Copy file name to clipboardExpand all lines: docs/administration/back_office/subitems_list.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ Optionally, Sub-items module can take a following list of props:
94
94
-**items**_{Array}_ - list of location's sub-items
95
95
-**limit**_{Number}_ - items limit count
96
96
-**offset**_{Number}_ - items limit offset
97
-
-**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:
97
+
-**labels**_{Object}_ - list of module labels, see [sub.items.module.js](https://github.com/ibexa/admin-ui/blob/4.6/src/bundle/ui-dev/src/modules/sub-items/sub.items.module.js) for details. Contains definitions for sub components:
98
98
-**subItems**_{Object}_ - list of sub-items module labels
99
99
-**tableView**_{Object}_ - list of table view component labels
100
100
-**tableViewItem**_{Object}_ - list of table item view component labels
Copy file name to clipboardExpand all lines: docs/api/graphql/graphql_custom_ft.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ To do that, you need to replace `mapXXX` by the method it's in:
86
86
87
87
It's required for every implemented method, so that other mappers are called for the other field types.
88
88
89
-
The [`RelationFieldDefinitionMapper`](https://github.com/ibexa/graphql/blob/main/src/lib/Schema/Domain/Content/Mapper/FieldDefinition/RelationFieldDefinitionMapper.php) example:
89
+
The [`RelationFieldDefinitionMapper`](https://github.com/ibexa/graphql/blob/4.6/src/lib/Schema/Domain/Content/Mapper/FieldDefinition/RelationFieldDefinitionMapper.php) example:
90
90
91
91
```php hl_lines="14"
92
92
class RelationFieldDefinitionMapper extends DecoratingFieldDefinitionMapper implements FieldDefinitionMapper
@@ -172,4 +172,4 @@ The following variables are available in the resolver's expression:
172
172
- `location`is the content item's resolved location. For more information, see [Querying Locations](graphql_queries.md#querying-locations)
173
173
- `item`is the content together with its location `\Ibexa\GraphQL\Value\Item`
174
174
175
-
`RelationFieldValueBuilder`or `SelectionFieldValueBuilder` can be used as examples.
175
+
`RelationFieldValueBuilder`or `SelectionFieldValueBuilder` can be used as examples.
Copy file name to clipboardExpand all lines: docs/api/php_api/php_api.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,11 +67,11 @@ Value objects come with their own properties, such as `$content->id` or `$locati
67
67
### Creating and updating objects
68
68
69
69
Value objects fetch data from the repository and are read-only.
70
-
To create and modify repository values, use data structures, such as [`ContentService::newContentCreateStruct()`](https://github.com/ibexa/core/blob/v4.6.6/src/contracts/Repository/ContentService.php#L572) or [`LocationService::newLocationUpdateStruct()`](https://github.com/ibexa/core/blob/v4.6.6/src/contracts/Repository/LocationService.php#L238).
70
+
To create and modify repository values, use data structures, such as [`ContentService::newContentCreateStruct()`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-ContentService.html#method_newContentCreateStruct) or [`LocationService::newLocationUpdateStruct()`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-LocationService.html#method_newLocationCreateStruct).
71
71
72
72
### Value info objects
73
73
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`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-ContentInfo.html) for [`Content`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Content.html).
75
75
These objects provide you with lower-level information.
76
76
For instance, `ContentInfo` contains `currentVersionNo` or `remoteId`, while `Content` enables you to retrieve fields, content type, or previous versions.
Copy file name to clipboardExpand all lines: docs/content_management/field_types/field_type_reference/richtextfield.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ The RichText format enriches [DocBook](https://docbook.org/) with the following
116
116
!!! note "Unsupported DocBook elements"
117
117
118
118
Some DocBook elements aren't supported by RichText.
119
-
Refer to [`ezpublish.rng`](https://github.com/ibexa/fieldtype-richtext/blob/main/src/bundle/Resources/richtext/schemas/docbook/ezpublish.rng#L137) for a full list.
119
+
Refer to [`ezpublish.rng`](https://github.com/ibexa/fieldtype-richtext/blob/4.6/src/bundle/Resources/richtext/schemas/docbook/ezpublish.rng#L137) for a full list.
0 commit comments