A limitation to specify that only owner of content gets a certain access right.
Identifier | Owner |
Value Class | eZ\Publish\API\Repository\Values\User\Limitation\OwnerLimitation |
Type Class | eZ\Publish\Core\Limitation\OwnerLimitationType |
Criterion used | eZ\Publish\API\Repository\Values\Content\Query\Criterion\UserMetadata( UserMetadata::OWNER ) |
Role Limitation | no |
Value | UI value | Description |
1 | "self" | Only user which is owner gets access (see "Legacy compatibility notes" #2) |
---|---|---|
2 | "session" | Same as "self" (see "Legacy compatibility notes" #1) |
* Workaround for Owner limitation on user object:
To make sure user gets access to himself when using Owner limitation across 4.x and 5.x, the solution is to change the user to be owner of himself.
This is accomplished using a privileged user to do the following API calls:
$user = $userService->loadUser( $userId ); $contentMetadataUpdateStruct = $contentService->newContentMetadataUpdateStruct(); $contentMetadataUpdateStruct->ownerId = $user->id; $contentService->updateContentMetadata( $user->getVersionInfo()->getContentInfo(), $contentMetadataUpdateStruct ); |