Global navigation

   Documentation Center
   eZ Studio & eZ Platform
     User Manual
     Technical Manual
     Glossary
   eZ Publish 4.x / legacy

 
eZ Publish (5.x)

eZ Publish 5.x | For eZ Platform & eZ Studio topics see Technical manual and User manual, for eZ Publish 4.x and Legacy topics see eZ Publish legacy

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

A limitation to specify that only owner of content gets a certain access right.

IdentifierOwner
Value ClasseZ\Publish\API\Repository\Values\User\Limitation\OwnerLimitation
Type ClasseZ\Publish\Core\Limitation\OwnerLimitationType
Criterion usedeZ\Publish\API\Repository\Values\Content\Query\Criterion\UserMetadata( UserMetadata::OWNER )
Role Limitationno
Possible values
ValueUI valueDescription
1"self"

Only user which is owner gets access (see "Legacy compatibility notes" #2)

2"session"

Same as "self" (see "Legacy compatibility notes" #1)

Legacy compatibility notes:
  1. Owner("session") is deprecated and works exactly like "self" in Public API since it has no knowledge of user Sessions
  2. User is no longer auto assumed to be owner of himself and get access to edit him/herself when Owner limitation is used in Public API*

* 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:

Code Block
languagephp
$user = $userService->loadUser( $userId );
$contentMetadataUpdateStruct = $contentService->newContentMetadataUpdateStruct();
$contentMetadataUpdateStruct->ownerId = $user->id;
$contentService->updateContentMetadata( $user->getVersionInfo()->getContentInfo(), $contentMetadataUpdateStruct );