@@ 159-164 (lines=6) @@ | ||
156 | } |
|
157 | ||
158 | // handle allowable actions |
|
159 | if ($objectData->getAllowableActions() !== null) { |
|
160 | $this->allowableActions = $objectData->getAllowableActions(); |
|
161 | $this->extensions[(string) ExtensionLevel::cast( |
|
162 | ExtensionLevel::ALLOWABLE_ACTIONS |
|
163 | )] = $objectData->getAllowableActions()->getExtensions(); |
|
164 | } |
|
165 | ||
166 | // handle renditions |
|
167 | foreach ($objectData->getRenditions() as $rendition) { |
|
@@ 172-176 (lines=5) @@ | ||
169 | } |
|
170 | ||
171 | // handle ACL |
|
172 | if ($objectData->getAcl() !== null) { |
|
173 | $this->acl = $objectData->getAcl(); |
|
174 | $this->extensions[(string) ExtensionLevel::cast(ExtensionLevel::ACL)] = $objectData->getAcl( |
|
175 | )->getExtensions(); |
|
176 | } |
|
177 | ||
178 | // handle policies |
|
179 | if ($objectData->getPolicyIds() !== null) { |