Skip to content

Commit e7e9f1a

Browse files
committed
Renamed ez_lock
1 parent 14a39ce commit e7e9f1a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

code_samples/api/public_php_api/src/Command/ObjectStateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
5151
$user = $this->userService->loadUserByLogin('admin');
5252
$this->permissionResolver->setCurrentUserReference($user);
5353

54-
$objectStateGroup = $this->objectStateService->loadObjectStateGroupByIdentifier('ez_lock');
54+
$objectStateGroup = $this->objectStateService->loadObjectStateGroupByIdentifier('ibexa_lock');
5555
$objectState = $this->objectStateService->loadObjectStateByIdentifier($objectStateGroup, 'locked');
5656

5757
$output->writeln($objectStateGroup->getName());

docs/api/rest_api/rest_api_reference/rest_api_reference.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11730,7 +11730,7 @@ <h6 class="heading text-gray border-bottom pb-2">Types</h6>
1173011730
&lt;ObjectStateGroupList media-type=&quot;application/vnd.ibexa.api.ObjectStateGroupList+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups&quot;&gt;
1173111731
&lt;ObjectStateGroup media-type=&quot;application/vnd.ibexa.api.ObjectStateGroup+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups/2&quot;&gt;
1173211732
&lt;id&gt;2&lt;/id&gt;
11733-
&lt;identifier&gt;ez_lock&lt;/identifier&gt;
11733+
&lt;identifier&gt;ibexa_lock&lt;/identifier&gt;
1173411734
&lt;defaultLanguageCode&gt;eng-GB&lt;/defaultLanguageCode&gt;
1173511735
&lt;languageCodes&gt;eng-GB&lt;/languageCodes&gt;
1173611736
&lt;ObjectStates media-type=&quot;application/vnd.ibexa.api.ObjectStateList+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups/2/objectstates&quot;/&gt;
@@ -11769,7 +11769,7 @@ <h6 class="heading text-gray border-bottom pb-2">Types</h6>
1176911769
&quot;_media-type&quot;: &quot;application/vnd.ibexa.api.ObjectStateGroup+json&quot;,
1177011770
&quot;_href&quot;: &quot;/api/ibexa/v2/content/objectstategroups/2&quot;,
1177111771
&quot;id&quot;: 2,
11772-
&quot;identifier&quot;: &quot;ez_lock&quot;,
11772+
&quot;identifier&quot;: &quot;ibexa_lock&quot;,
1177311773
&quot;defaultLanguageCode&quot;: &quot;eng-GB&quot;,
1177411774
&quot;languageCodes&quot;: &quot;eng-GB&quot;,
1177511775
&quot;ObjectStates&quot;: {
@@ -11861,7 +11861,7 @@ <h6 class="heading text-gray border-bottom pb-2">Types</h6>
1186111861
&lt;ObjectStateGroupList media-type=&quot;application/vnd.ibexa.api.ObjectStateGroupList+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups&quot;&gt;
1186211862
&lt;ObjectStateGroup media-type=&quot;application/vnd.ibexa.api.ObjectStateGroup+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups/2&quot;&gt;
1186311863
&lt;id&gt;2&lt;/id&gt;
11864-
&lt;identifier&gt;ez_lock&lt;/identifier&gt;
11864+
&lt;identifier&gt;ibexa_lock&lt;/identifier&gt;
1186511865
&lt;defaultLanguageCode&gt;eng-GB&lt;/defaultLanguageCode&gt;
1186611866
&lt;languageCodes&gt;eng-GB&lt;/languageCodes&gt;
1186711867
&lt;ObjectStates media-type=&quot;application/vnd.ibexa.api.ObjectStateList+xml&quot; href=&quot;/api/ibexa/v2/content/objectstategroups/2/objectstates&quot;/&gt;
@@ -11925,7 +11925,7 @@ <h6 class="heading text-gray border-bottom pb-2">Types</h6>
1192511925
&quot;_media-type&quot;: &quot;application/vnd.ibexa.api.ObjectStateGroup+json&quot;,
1192611926
&quot;_href&quot;: &quot;/api/ibexa/v2/content/objectstategroups/2&quot;,
1192711927
&quot;id&quot;: 2,
11928-
&quot;identifier&quot;: &quot;ez_lock&quot;,
11928+
&quot;identifier&quot;: &quot;ibexa_lock&quot;,
1192911929
&quot;defaultLanguageCode&quot;: &quot;eng-GB&quot;,
1193011930
&quot;languageCodes&quot;: &quot;eng-GB&quot;,
1193111931
&quot;ObjectStates&quot;: {

docs/content_management/data_migration/data_migration_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ For more information, see [creating your own Actions](create_data_migration_acti
7676
mode: Create
7777
``` yaml
7878
actions:
79-
- { action: assign_object_state, identifier: locked, groupIdentifier: ez_lock }
79+
- { action: assign_object_state, identifier: locked, groupIdentifier: ibexa_lock }
8080
- { action: assign_parent_location, value: 2 }
8181
- { action: hide }
8282
```

docs/search/aggregation_reference/objectstateterm_aggregation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The [ObjectStateTermAggregation](/api/php_api/php_api_reference/classes/Ibexa-Co
1515

1616
``` php
1717
$query = new Query();
18-
$query->aggregations[] = new Aggregation\Location\ObjectStateTermAggregation('object_state', 'ez_lock');
18+
$query->aggregations[] = new Aggregation\Location\ObjectStateTermAggregation('object_state', 'ibexa_lock');
1919
```
2020

2121
[[= include_file('docs/snippets/search_term_aggregation_settings.md') =]]

docs/search/criteria_reference/objectstateidentifier_criterion.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $query->query = new Criterion\ObjectStateIdentifier(['ready']);
2020
```
2121

2222
``` php
23-
$query->query = new Criterion\ObjectStateIdentifier(['not_locked'], 'ez_lock');
23+
$query->query = new Criterion\ObjectStateIdentifier(['not_locked'], 'ibexa_lock');
2424
```
2525

2626
### REST API
@@ -32,7 +32,7 @@ $query->query = new Criterion\ObjectStateIdentifier(['not_locked'], 'ez_lock');
3232
<Filter>
3333
<ObjectStateIdentifierCriterion>
3434
<value>not_locked</value>
35-
<target>ez_lock</target>
35+
<target>ibexa_lock</target>
3636
</ObjectStateIdentifierCriterion>
3737
</Filter>
3838
</Query>
@@ -46,7 +46,7 @@ $query->query = new Criterion\ObjectStateIdentifier(['not_locked'], 'ez_lock');
4646
"Filter": {
4747
"ObjectStateIdentifierCriterion": {
4848
"value": "not_locked",
49-
"target": "ez_lock"
49+
"target": "ibexa_lock"
5050
}
5151
}
5252
}

0 commit comments

Comments
 (0)